With many number of scripts, PowerShell presents plenty scope for administrators to modify per their own requires. The scripts range from easy one line commands, to extraordinary scripts with managed output and command line arguments to suit professionals belonging to different skill levels. Administrators looking for a command line shell for interactive scripting will locate PowerShell both exciting and helpful.

The main characteristics of Windows PowerShell are:

• A plethora of many applications and utilities in conditions of system administration

• Extra features of syntax and arrangement management

• A capacity to go common data management system like system for storing certificates and registry

• Instinctive scripting languages that are utilized by IT professionals for administration works.

If user installs Window Power Shell on Vista PC, it will show remarkable features:

• Type ‘get-command’ quickly to know 129 Windows Powershell cmdlets and type PS> get-service to benefit all services.

• To benefit all services that begins with “w” and then also gets all linked services, type: PS> get-service w* | format-list DisplayName, DependentServices.

• Windows PowerShell has benefit named ‘whatif’ to allow user know the result of command earlier to implementing the command. You need to type is: PS> stop-service w3* -whatif

• PowerShell permits testing as one can begin and end transcripts of all commands. This aspect makes it simple to check commands and save them for use in a script and to advantage, type PS> Start-Transcript -Path c:\demo\dfoshow.txt and PS> Stop-Transcript

• Windows PowerShell is intended to work with objects which make accessing .COM and .NET framework from command line simple. For simple command line access – type PS> $spVoice = new-object -com "SAPI.spvoice" and PS> $spVoice.Speak

• There are instructions presented to do some minor tasks like playing a song in Windows Media Player. PowerShell ease doing basic calculations from command line. PowerShell can also be utilized as a calendar calculator.