Запись состояний служб в файл

$strPath = "c:\fso\dcm1.txt"
Get-Service | 
format-table name, status -autosize | 
Out-File -FilePath $strPath

Сравнение служб (текстовых файлов)

$strReference =  "c:\fso\dcm.txt"
$strDifference = "c:\fso\dcm1.txt"

Compare-Object `
-referenceobject $(get-content $strReference) `
-differenceobject $(get-content $strDifference)

Запись в файл остановленных служб

$strState = "stopped"
$strPath = "C:\FSO\StoppedServices.txt"
Get-WmiObject win32_service -Filter "state='$strState'" |
select-object name | 
Out-File -FilePath $strPath
0
Голосов пока нет

Оставить комментарий