You are on page 1of 1

Powershell

=============================================
get-command -verb out
gcm -noun *service*
gcm *service* -commandtype cmdlet
get-service | convertto-html | out-file services.html
get-process | Export-Clixml c:\baseline.xml
compare-object -referenceobject (import-clixml c:\baseline.xml) -differenceobjec
t (get-process) -property name
=============================================
get-module -listavailable
import-module grouppolicy "as an example"
get-command -module grouppolicy
set-executionpolicy remotesigned
get-pssnapin -registered
add-pssnapin

You might also like