Slide 3
Slide 3 text
POWERSHELL BENEFITS?
• Can run interactively (it’s a shell like in *nix)
• Persistent command history searching via Ctrl r
• But leaves a trace with persistent profile
• Lots of 3rd party scripts available
• But check they aren’t malicious, either accidentally or deliberately
• Tab completion of commands, arguments and parameters
• Huge number of cmdlets
• Get-Command to search commands
• Get-Help to get per cmdlet help with examples
• Get-Member to see properties and methods
• Many 3rd party modules available, e.g. VMware, Citrix
• Repeatable – same s**t, different cmdlet
• Aliases to make typing quicker (but don’t use in scripts)
• Easy to export to CSV, XML, JSON for reporting/sharing/comparing (& import)