Difference between revisions of "Power Shell"

Jump to navigation Jump to search
m (→‎MySQL: Added Syntax Highlighting and updated Query function)
m (Re-orged first few sections into "Getting Started")
Line 1: Line 1:
== Useful Sites ==
== Getting Started ==
Subject specific useful links are listed in the sections below
=== Useful Sites ===
Subject specific useful links are listed in the sections below, the following provide links to installers and general documentation
* [http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx Windows PowerShell V1]
* [http://www.microsoft.com/windowsserver2003/technologies/management/powershell/download.mspx Windows PowerShell V1]
* [http://support.microsoft.com/kb/968929 Windows PowerShell V2]
* [http://support.microsoft.com/kb/968929 Windows PowerShell V2]
Line 6: Line 7:
* http://technet.microsoft.com/en-us/library/bb978526.aspx - TechNet!
* http://technet.microsoft.com/en-us/library/bb978526.aspx - TechNet!


== Installed Version ==
=== Installed Version ===
To check the main installed version use the following command...
To check the main installed version use the following command...
<source lang="powershell"> get-host | select version </source>.
<source lang="powershell"> get-host | select version </source>.
Line 21: Line 22:
|}
|}
For more info on release version acronyms, see [http://en.wikipedia.org/wiki/Software_release_life_cycle Software Release Life Cycle]
For more info on release version acronyms, see [http://en.wikipedia.org/wiki/Software_release_life_cycle Software Release Life Cycle]
=== Help Commands ===
<source lang="powershell">Get-Help <cmd></source>
Provides help for CmdLets, use wildcards to broaden results.
<source lang="powershell"><object> <nowiki>|<nowiki> Get-Member</source>
Provides information about an object


== Variables ==
== Variables ==