溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用Powershell 統(tǒng)計Widnows打印服務(wù)器用戶打印數(shù)量

發(fā)布時間:2020-07-05 11:16:35 來源:網(wǎng)絡(luò) 閱讀:1004 作者:raincity 欄目:系統(tǒng)運維

公司的管理需求就是查看哪個員工打印的情況,解決方案:

第一,到Windows那臺打印服務(wù)器,把打印日志啟動。操作方法就是,打開Event Viewer,然后導(dǎo)航到Applications and Services Logs\Microsoft\windows\Print Service\Optional

在這個上面點右鍵,選擇Enabled Log


使用Powershell 統(tǒng)計Widnows打印服務(wù)器用戶打印數(shù)量


以上方法也可以通過Powershell語句來實現(xiàn)。


Get-WinEvent -ListLog Microsoft-Windows-PrintService/Operational -OutVariable PrinterLog |

Select-Object -Property LogName, IsClassicLog, IsEnabled

 

$PrinterLog.set_IsEnabled($true)

 

$PrinterLog.SaveChanges()

 

Get-WinEvent -ListLog Microsoft-Windows-PrintService/Operational -OutVariable PrinterLog |

Select-Object -Property LogName, IsClassicLog, IsEnabled


使用Powershell 統(tǒng)計Widnows打印服務(wù)器用戶打印數(shù)量

先運行第一條命令,發(fā)現(xiàn)那個屬性值未被啟用,然后通過命令強制啟用,再檢查一下。



以下通過這個命令就能一下子得到答案。

Get-WinEvent -FilterHashTable @{LogName="Microsoft-Windows-PrintService/Operational"; ID=307; StartTime=(Get-Date).AddDays(-1)} |
Format-Table -Property TimeCreated,
                        @{label='UserName';expression={$_.properties[2].value}},
                        @{label='ComputerName';expression={$_.properties[3].value}},
                        @{label='PrinterName';expression={$_.properties[4].value}},
                        @{label='PrintSize';expression={$_.properties[6].value}},
                        @{label='Pages';expression={$_.properties[7].value}}




向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI