Windows PowerShell

From Wikipedia, the free encyclopedia

Jump to: navigation, search
Windows PowerShell

Screenshot of a sample PowerShell session
Developed by Microsoft Corporation
Initial release November 14, 2006
Latest release 1.0 / 2006-11-14; 874 days ago
Preview release 2.0 CTP3 / 2008-12-23; 104 days ago
Operating system Windows XP
Windows Server 2003
Windows Vista
Windows Server 2008
Windows 7
Platform x86, x86-64 and Itanium
Available in Multilingual
Development status Active
Type Operating system shell
License MS-EULA
Website Windows PowerShell
PowerShell Scripting Language
Paradigm Multi-paradigm: imperative, pipeline, object-oriented, functional, reflective
Appeared in 2006
Designed by Jeffrey Snover, Bruce Payette (et al.)
Developer Microsoft Corporation
Typing discipline strong, safe, implicit, dynamic
Major implementations Windows PowerShell, Pash[1]
Influenced by C#, DCL, ksh, Perl, Ruby/LISP, CL, SQL, COMMAND.COM/ cmd.exe,[2] Tcl[3]
OS Cross-platform[1]

Windows PowerShell is an extensible command-line shell and associated scripting language from Microsoft. It was released in 2006 and is currently available for Windows XP SP2/SP3, Windows Server 2003, Windows Vista and is included in Windows Server 2008 as an optional feature. Windows PowerShell is included in Windows 7 (beta) by default and it can't be uninstalled.

Windows PowerShell integrates with the Microsoft .NET Framework and provides an environment to perform administrative tasks by execution of cmdlets (pronounced commandlets) which are specialized .NET classes implementing a particular operation, scripts which are composition of cmdlets along with imperative logic, executables which are standalone applications, or by instantiating regular .NET classes.[4][5] These work by accessing data in different data stores, like the filesystem or registry, which are made available to the PowerShell runtime via Windows PowerShell providers.

Windows PowerShell also provides a hosting mechanism with which the Windows PowerShell runtime can be embedded inside other applications, which can then leverage Windows PowerShell functionality to implement certain operations, including those exposed via the graphical interface. This capability has been utilized by Microsoft Exchange Server 2007[4][6] to expose its management functionality as PowerShell cmdlets and providers and implement the graphical management tools as PowerShell hosts which invoke the necessary cmdlets. Other Microsoft applications including Microsoft SQL Server 2008[7] also expose their management interface via PowerShell cmdlets. In the future, graphical interface-based management applications on Windows will be layered on top of Windows PowerShell.

Windows PowerShell includes its own extensive, console-based help, reminiscent of man pages in Unix shells. The help topics include help for cmdlets, providers, and concepts in PowerShell. To see the help, use the Get-Help cmdlet. Online help for Windows PowerShell is updated weekly in the TechNet Library.

Contents

[edit] Background

Every released version of Microsoft DOS and Microsoft Windows for personal computers has featured a command-line interface tool. These are COMMAND.COM (in installations relying on MS-DOS, including Windows 9x) and cmd.exe (in Windows NT-based installations). These are regular command line interpreters which include only a handful of basic commands. For other purposes, a separate console application needs to be provided, to be invoked from these shells. They also include a scripting language (batch files) which can be used to automate various tasks. However, they cannot be used to automate all facets of GUI functionality, in part because command-line equivalents of operations exposed via the graphical interface are limited, and the scripting language is elementary, preventing the creation of complex scripts by composing available functionality. In Windows Server 2003, the situation was improved,[8] but scripting support was still considered unsatisfactory.

Microsoft attempted to address some of these shortcomings by introducing the Windows Script Host in 1998 with Windows 98, and its command-line based host: cscript.exe . It integrates with the Active Script engine and allows scripts to be written in compatible languages, such as JScript and VBScript, leveraging the APIs exposed by applications via COM. However, it has its own deficiencies, as well. It is not integrated with the shell, its documentation is not very accessible, and it quickly gained a reputation as a system vulnerability vector after several high-profile computer viruses exploited weaknesses in its security provisions. Different versions of Windows provided various special-purpose command line interpreters (such as netsh and WMIC) with their own command sets. None of them were integrated with the command shell, nor were they interoperable.

By 2003 Microsoft had started to develop a new shell called Monad (aka Microsoft Shell or MSH). Monad was to be a new extensible command shell with a fresh design which would be capable of automating a full range of core administrative tasks. Microsoft published the first Monad public beta release on June 17, 2005, Beta 2 on September 11, 2005 and Beta 3 on January 10, 2006. They announced on April 25, 2006 that Monad was renamed to Windows PowerShell, positioning it as a significant part of their management technology offerings.[9] Release Candidate 1 of PowerShell was released at the same time. Release Candidate 2 of PowerShell was released September 26, 2006 and released to web (RTW) on November 14, 2006. PowerShell for Vista was released on January 30, 2007.[10] A CTP release of Windows PowerShell v2.0 has been made available since November 6, 2007.[11]

[edit] Overview

[edit] PowerShell 1.0

The commands Windows PowerShell executes may be in the form of 'cmdlets', which are specialized .NET classes designed expressly to expose a functionality via PowerShell, PowerShell scripts (*.ps1) or regular executables. If a command is an executable file, PowerShell launches it in a separate process; if it is a cmdlet, it is executed in the PowerShell process. PowerShell also provides an interactive command line interface wherein the commands can be entered and their output displayed. The user interface, based on the Win32 console, offers customizable tab completion but lacks syntax highlighting. PowerShell also enables the creation of aliases for cmdlets, which are textually translated by PowerShell into invocations of the original commands. Powershell also supports both named and positional parameters for commands. In executing a cmdlet, the job of binding the parameter value to the parameter is done by PowerShell itself, but for external executables, parameters are passed via the argv (or equivalent) variable array to be parsed by the executable.

Another concept used by PowerShell is that of a pipeline. Like Unix pipelines, PowerShell pipelines are used to compose complex commands, allowing the output of one command to be passed as input to another. A pipeline is set up by piping the output of one command (or pipeline) to another command, using the | operator. But unlike its Unix counterpart, the PowerShell pipeline is an object pipeline; that is, the data passed between cmdlets are fully typed objects, rather than byte streams. When data is piped as objects, the elements they encapsulate retain their structure and types across cmdlets, without the need for any serialization or explicit parsing of the stream, as would be the need if only byte streams were shared. An object can also encapsulate certain functions that work on the contained data. These also become available to the recipient command for use.[12][13] For the last cmdlet in a pipeline, PowerShell automatically pipes its output object to the Write-Host cmdlet, which creates a formatted text representation of its data, writing it to the screen.[14][15]

Because all PowerShell objects are .NET objects, they share a .ToString() method, which retrieves the text representation of the data in an object. Windows PowerShell uses this method to convert an object to text. In addition, it also allows formatting definitions to be specified, so the text representation of objects may be customized by choosing which data elements to display, and how. However, in order to maintain backwards compatibility, if an external executable is used in a pipeline, it receives a text stream representing the object, and does not integrate with the PowerShell type system.

The PowerShell Extended Type System (ETS) is based on the .NET type system, but with certain extensions. For example, it enables the creation of different views of objects by exposing only a subset of the data fields, properties, and methods, as well as specifying custom formatting and sorting behavior. These views are mapped to the original object using an XML-based language.[16]

[edit] Cmdlets

Cmdlets are specialized commands in the PowerShell environment that implement specific functions. These are the native commands in the PowerShell stack. Cmdlets follow a <verb>-<noun> naming pattern, such as Get-ChildItem, helping to make them (according to Microsoft) self-descriptive.[17] Cmdlets output their results as objects, or collections thereof (including arrays), and can optionally receive input in that form, making them suitable for use as recipients in a pipeline. But while PowerShell allows arrays and other collections of objects to be written to the pipeline, cmdlets always process objects individually. For collections of objects, PowerShell invokes the cmdlet on each object in the collection, in sequence.[17]

Cmdlets are specialized .NET classes, which the PowerShell runtime instantiates and invokes when they are run. Cmdlets derive either from Cmdlet or from PSCmdlet, the latter being used when the cmdlet needs to interact with the PowerShell runtime.[17] These base classes specify certain methods - BeginProcessing(), ProcessRecord() and EndProcessing() - one of which the cmdlet's implementation overrides to provide the functionality. Whenever a cmdlet is run, these methods are invoked by PowerShell in sequence, with ProcessRecord() being called if it receives pipeline input.[18] If a collection of objects are piped, the method is invoked for each object in the collection. The class implementing the Cmdlet must have one .NET attribute - CmdletAttribute - which specifies the verb and the noun that make up the name of the cmdlet. Common verbs are provided as an enum.

If a cmdlet receives either pipeline input or command-line parameter input, there must be a corresponding property in the class, with a mutator implementation. PowerShell invokes the mutator with the parameter value or pipeline input, which is saved by the mutator implementation in class variables. These values are then referred to by the methods which implement the functionality. Properties that map to command-line parameters are marked by ParameterAttribute[19] and are set before the call to BeginProcessing(). Those which map to pipeline input are also flanked by ParameterAttribute, but with the ValueFromPipeline attribute parameter set.[20]

The implementation of these cmdlet classes can refer to any .NET API and may be in any .NET language. In addition, PowerShell makes certain APIs available, such as WriteObject(), which is used to access PowerShell-specific functionality, such as writing resultant objects to the pipeline. Cmdlets can use .NET data access APIs directly or use the PowerShell infrastructure of PowerShell Providers, which make data stores addressable using unique paths. Data stores are exposed using drive letters, and hierarchies within them, addressed as directories. Windows PowerShell ships with providers for the file system, registry, the certificate store, as well as the namespaces for command aliases, variables, and functions.[21] Windows PowerShell also includes various cmdlets for managing various Windows systems, including the file system, or using Windows Management Instrumentation to control Windows components. Other applications can register cmdlets with PowerShell, thus allowing it to manage them, and if they enclose any datastore (such as databases), they can add specific providers as well.

[edit] Scripting

Windows PowerShell includes a dynamically typed scripting language which can implement complex operations using cmdlets imperatively. The scripting language supports variables, functions, branching (if-then-else), loops (while, do, for, and foreach), structured error/exception handling and closures/lambda expressions, as well as integration with .NET. Variables in PowerShell scripts have names that start with $; they can be assigned any value, including the output of cmdlets. While the language is untyped, internally the variables are stored with their types, which can be either primitive types or objects. Strings can be enclosed either in single quotes or in double quotes; in the former case, variables will be expanded even if they are inside the quotation marks. According to the variable syntax, if the path to a file is enclosed in braces preceded by a dollar sign (as in ${C:\foo.txt}), it refers to the contents of the file. If it is used as an L-value, anything assigned to it will be written to the file. When used as an R-value, it will be read from the file. If an object is assigned, it is serialized before storing it.

Object members can be accessed using . notation, as in C# syntax. PowerShell provides special variables, such as $args, which is an array of all the command line arguments passed to a function from the command line, and $_, which refers to the current object in the pipeline.[22] PowerShell also provides arrays and associative arrays. The PowerShell scripting language also evaluates arithmetic expressions entered on the command line immediately, and it parses common abbreviations, such as GB, MB, and KB.

Using the function keyword, PowerShell provides for the creation of functions, which can take parameters. It provides two syntaxes for invoking a function:

  1. <function> <param1> <param2> …': In this case, the function need not define the parameters it accepts; the parameters will be passed as an array accessible from inside the function via the $args array.[23]
  2. <function>(<param1>, <param2>): In this case, the function declaration must specify the parameters it accepts, and their types. The parameters passed will be bound to the parameter variables when the function is called.[24]

PowerShell allows any .NET methods to be called by providing their namespaces enclosed in brackets ([]), and then using a pair of colons (::) to indicate the static method.[25] For example, [System.Console]::WriteLine("PowerShell") Objects are created using the New-Object cmdlet. Calling methods of .NET objects is accomplished by using the regular . notation.[25]

For error handling, PowerShell provides a .NET-based exception handling mechanism. In case of errors, objects containing information about the error (Exception object) are thrown, which are caught using the trap keyword. However, the action-or-error is configurable; in case of an error PowerShell can be configured to silently resume execution, without trapping the exception.[26]

Scripts written using PowerShell can be made to persist across sessions in a .ps1 file. Later, either the entire script or individual functions in the script can be used. Scripts and functions are used analogously with cmdlets, in that they can be used as commands in pipelines, and parameters can be bound to them. Pipeline objects can be passed between functions, scripts, and cmdlets seamlessly. However, script execution is disabled by default and must be enabled explicitly.[27] PowerShell scripts can be signed to verify their integrity, and are subject to .NET Code Access Security.

The PowerShell scripting language supports binary prefix notation similar to the scientific notation supported by many programming languages in the C-family.

[edit] Hosting

Another use of PowerShell is being embedded in a management application, which then uses the PowerShell runtime to implement the management functionality. For this, PowerShell provides a managed hosting API. Via the APIs, the application can instantiate a runspace (one instantiation of the PowerShell runtime), which runs in the application's process and is exposed as a Runspace object.[4] The state of the runspace is encased in a SessionState object. When the runspace is created, the Windows PowerShell runtime initializes the instantiation, including initializing the providers and enumerating the cmdlets, and updates the SessionState object accordingly. The Runspace then must be opened for either synchronous processing or asynchronous processing. After that it can be used to execute commands.

To execute a command, a pipeline (represented by a Pipeline object) must be created and associated with the runspace. The pipeline object is then populated with the cmdlets that make up the pipeline. For sequential operations (as in a PowerShell script), a Pipeline object is created for each statement and nested inside another Pipeline object.[4] When a pipeline is created, Windows PowerShell invokes the pipeline processor, which resolves the cmdlets into their respective assemblies (the command processor) and adds a reference to them to the pipeline, and associates them with an InputPipe, Outputpipe and ErrorOutputPipe objects, to represent the connection with the pipeline. The types are verified and parameters bound using reflection.[4] Once the pipeline is set up, the host calls the Invoke() method to run the commands, or its asynchronous equivalent - InvokeAsync(). If the pipeline has the Write-Host cmdlet at the end of the pipeline, it writes the result onto the console screen. If not, the results are handed over to the host, which might either apply further processing or display it itself.

The hosting APIs are used by Microsoft Exchange Server 2007 to provide its management GUI. Each operation exposed in the GUI is mapped to a sequence of PowerShell commands (or pipelines). The host creates the pipeline and executes them. In fact, the interactive PowerShell console itself is a PowerShell host, which interprets the scripts entered at command line and creates the necessary Pipeline objects and invokes them.

[edit] PowerShell 2.0

Graphical Windows PowerShell, with multiple open RunSpaces in the Windows PowerShell 2.0 CTP2

Microsoft is working on the next version of PowerShell and has made several CTP releases of the same publicly available. The most recent CTP, CTP3, was issued in late 2008[28]. Windows PowerShell 2.0 is installed by default on Windows Server 2008 R2 and Windows 7[29]. PowerShell V2 includes changes to the scripting language and hosting API, in addition to including more than 240 new cmdlets.[30][31]

A non-exhaustive list of the new features included in PowerShell V2 is:[32][33]

  • PowerShell Remoting: Using WS-Management, PowerShell 2.0 allows scripts and cmdlets to be invoked on a remote machine or a large set of remote machines.
  • Background Jobs: Also called a PSJob, it allows a command sequence (script) or pipeline to be invoked asynchronously. Jobs can be run on the local machine or on multiple remote machines. A PSJob cannot include interactive cmdlets.
  • Transactions: Enable cmdlet and provider developers to perform transacted operations. PowerShell 2.0 includes transaction cmdlets for starting, committing, and rolling back a PSTransaction as well as features to manage and direct the transaction to the participating cmdlet and provider operations. The PowerShell Registry provider supports transactions.
  • ScriptCmdlets: These are cmdlets written using the PowerShell scripting language.
  • SteppablePipelines: This allows the user to control when the BeginProcessing(), ProcessRecord() and EndProcessing() functions of a cmdlet are called.
  • Modules: This allows script developers and administrators to organize and partition PowerShell scripts in self-contained, reusable units. Code from a module executes in its own self-contained context and does not affect the state outside of the module. Modules can define a restricted runspace environment by using a script. They have a persistent state as well as public and private members.
  • Data Language: A domain-specific subset of the PowerShell scripting language, that allows data definitions to be decoupled from the scripts and allow localized string resources to be imported into the script at runtime (Script Internationalization).
  • Script Debugging: It allows breakpoints to be set in a PowerShell script or function. Breakpoints can be set on lines, line & columns, commands and read or write access of variables. It includes a set of cmdlets to control the breakpoints via script.
  • Eventing: This feature allows listening, forwarding, and acting on management and system events. Eventing allows PowerShell Hosts to be notified about state changes to their managed entities. It also enables PowerShell scripts to subscribe to ObjectEvents, PSEvents, and WmiEvents and process them synchronously and asynchronously.
  • Windows PowerShell Integrated Scripting Environment: PowerShell 2.0 includes a GUI-based PowerShell host (formerly known as Graphical Windows PowerShell) that provides integrated debugger, syntax highlighting, tab completion and up to 8 PowerShell unicode-enabled consoles (Runspaces) in a tabbed UI, as well as to run only the selected parts in a script.
  • Network File Transfer: Native support for prioritized, throttled, and asynchronous transfer of files between machines using the Background Intelligent Transfer Service (BITS).[34]
  • New Cmdlets: Including Out-GridView, which displays tabular data in the WPF GridView object.
  • New Operators: -Split, -Join, and Splatting (@) operators.
  • Exception Handling with Try-Catch-Finally: Unlike other .NET languages, this allows multiple exception types for a single catch block.
  • Nestable Here-Strings: PowerShell Here-Strings have been improved and can now nest.[35]
  • New APIs: The new APIs range from handing more control over the PowerShell parser and runtime to the host, to creating and managing collection of Runspaces (RunspacePools) as well as the ability to create Restricted Runspaces which only allow a configured subset of PowerShell to be invoked. The new APIs also support participation in a Windows PowerShell managed transaction.

[edit] Cmdlets

The following table contains a selection of the more than 129 Cmdlets that ship with PowerShell as well as the equivalent commands in other command line interpreters.

Windows PowerShell
(Cmdlet)
Windows PowerShell
(Alias)
cmd.exe / COMMAND.COM
(MS-DOS, Windows, OS/2, etc.)
Bash
(Unix, BSD, Linux, Mac OS X etc.)
Description
Get-Location gl, pwd cd pwd Display the current directory
Set-Location sl, cd, chdir cd, chdir cd Change the current directory
Clear-Host cls, clear cls clear Clear the screen[36]
Copy-Item cpi, copy, cp copy cp Copy one or several files / a whole directory tree
Get-Help help, man help man Help on commands
Remove-Item ri, del, erase, rmdir, rd, rm del, erase, rmdir, rd rm, rmdir Delete a file / a directory
Rename-Item rni, ren ren, rename mv Rename a file / a directory
Move-Item mi, move, mv move mv Move a file / a directory to a new location
Get-ChildItem gci, dir, ls dir ls List all files / directories in the (current) directory
Write-Output echo, write echo echo Print strings, variables etc. to standard output
Pop-Location popd popd popd Change the current directory to the directory most recently pushed onto the stack
Push-Location pushd pushd pushd Push the current directory onto the stack
Set-Variable sv, set set set Set the value of a variable / create a variable
Get-Content gc, type, cat type cat Get the content of a file
Select-String findstr grep Print lines matching a pattern
Get-Process gps, ps tlist,[37] tasklist[38] ps List all currently running processes
Stop-Process spps, kill kill,[37] taskkill[38] kill Stop a running process
Tee-Object tee n/a tee Pipe input to a file or variable, then pass the input along the pipeline

[edit] Reception

Public reception of Windows PowerShell 1.0 has been positive.

eWeek judged Windows PowerShell to be #7 of the top 10 best products Microsoft has ever shipped.[39]

Dr. Dobb's Journal concludes:

For administrators, PowerShell provides efficient, powerful access to key indicators of the operating system. […] For developers, PowerShell is helpful in SQL scripting or developing DLLs. The concepts and cmdlets of PowerShell offer new ways to work with old information. […] PowerShell is flexible, extensible, and easily integrated.[40]

The popular IT magazine Computerworld states:

Windows has never enjoyed the powerful shell scripting environments that its Unix rivals have long included. That's changed now with the inclusion of PowerShell […] in Windows Server 2008 and a passel of other Microsoft server products as well. Finally, Windows has a classy, robust and powerful solution that can access just about every part of the operating system.[41]

The SANS Technology Institute affirms:

Unlike the CMD shell's meager batch language, PowerShell's scripting language supports a large variety of flow-control elements, type casting, functions, full-featured arrays, object reference variables, default variables in flow-control blocks, regular expressions, and other constructs often associated only with UNIX shells like bash and ksh. At first glance, the PowerShell language looks somewhat similar to Perl or C#, but it's not even half as difficult to learn.[42]

In his Windows Server 2008 review technology reporter and editor of the popular SuperSite for Windows Paul Thurrott states:

PowerShell is a complex but technically impressive environment, with support for discoverable .NET-based objects, properties, and methods. It provides all of the power of UNIX command line environments with none of the inconsistencies.[43]

According to Microsoft, PowerShell has had almost a million downloads in its first six months.[44] There is also a growing list of products that are shipping with PowerShell support.

[edit] Examples

Examples are provided first using the long-form canonical syntax and then using more terse UNIX-like and DOS-like aliases that are set up in the default configuration. Examples that could harm a system include the -whatif parameter to prevent them from actually executing

  • Stop all processes that begin with the letter "p":
 PS> get-process p* | stop-process -whatif
 PS> ps p* | kill -whatif
  • Find the processes that use more than 1000 MB of memory and kill them:
 PS> get-process | where-object { $_.WS -gt 1000MB } | stop-process -whatif
 PS> ps | ? { $_.WS -gt 1000MB } | kill -whatif
  • Calculate the number of bytes in the files in a directory:
 PS> get-childitem | measure-object -property length -sum
 PS> ls  | measure-object -p length -s
 PS> dir | measure-object -p length -s
  • Determine whether a specific process is no longer running:
 PS> $processToWatch = get-process notepad
 PS> $processToWatch.WaitForExit()
 PS> $p = ps notepad
 PS> $p.WaitForExit()
  • Change the case of a string from lower to upper:
 PS> "hello, world!".ToUpper()
  • Insert the string "ABC" after the first character in the word "string" to have the result "sABCtring":
 PS> "string".Insert(1, "ABC")
  • Download a specific RSS feed and show the titles of the 8 most recent entries:
PS> $rssUrl = "http://blogs.msdn.com/powershell/rss.aspx"
PS> $blog = [xml](new-object System.Net.WebClient).DownloadString($rssUrl)
PS> $blog.rss.channel.item | select title -first 8
  • Sets $UserProfile to the value of the UserProfile environment variable
 PS> $UserProfile = $env:UserProfile

[edit] File extensions

  • PS1 – Windows PowerShell shell script
  • PS1XML – Windows PowerShell format and type definitions
  • PSC1 – Windows PowerShell console file
  • PSD1 – Windows PowerShell data file
  • PSM1 – Windows PowerShell module file (for Version 2)

[edit] Application support

[edit] SnapIns and Hosts

Application Version Cmdlets Provider Management GUI
Exchange Server 2007 402 Yes Yes
Windows Server 2008 Yes Yes No
Microsoft SQL Server 2008 Yes Yes No
System Center Operations Manager 2007 74 Yes No
System Center Virtual Machine Manager 2007 Yes Yes Yes
System Center Data Protection Manager 2007 Yes No No
Windows Compute Cluster Server 2007 Yes Yes No
Microsoft Transporter Suite for Lotus Domino[45] 08.02.0012 47 No No
Microsoft PowerTools for Open XML[46] 1.0 33 No No
IBM WebSphere MQ[47] 6.0.2.2 44 No No
Quest Management Shell for Active Directory[48] 1.1 40 No No
Special Operations Software Specops Command[49] 1.0 Yes No Yes
VMware Infrastructure Toolkit[50] 1.5 157 No No
Internet Information Services[51] 7.0 54 Yes No
Ensim Unify Enterprise Edition[52] 1.6 Yes No Yes

[edit] Other

  • Sense/Net 6.0 A currently beta open source implementation of a .NET based Enterprise Content Management System accessible from PowerShell, information availbale from the Sense/Net development blog

[edit] See also

[edit] References

  1. ^ a b igor.moochnick - Pash
  2. ^ Jsnover @ Wikipedia: Generational list of programming languages
  3. ^ Windows PowerShell : PowerShell and WPF: WTF
  4. ^ a b c d e "How Windows PowerShell works". MSDN. http://msdn2.microsoft.com/en-us/library/ms714658.aspx. Retrieved on 2007-11-27. 
  5. ^ "Extend Windows PowerShell With Custom Commands". MSDN. http://msdn.microsoft.com/msdnmag/issues/07/12/PowerShell/default.aspx. Retrieved on 2007-11-27. 
  6. ^ "Exchange 2007: Get used to the command line". Tech Republic. http://articles.techrepublic.com.com/5100-10878_11-6147304.html. Retrieved on 2007-11-28. 
  7. ^ "SQL Server Support for PowerShell!". http://blogs.msdn.com/powershell/archive/2007/11/13/sql-server-support-for-powershell.aspx. Retrieved on 2007-11-28. 
  8. ^ Dragan, Richard V. (April 23, 2003). "Windows Server 2003 Delivers Improvements All Around". PC Magazine. http://www.pcmag.com/article2/0,2704,1040410,00.asp. Retrieved on 2007-11-02. "A standout feature here is that virtually all admin utilities now work from the command line (and most are available through telnet)." 
  9. ^ Snover, Jeffrey (April 25, 2006). "Windows PowerShell (Monad) Has Arrived". Windows PowerShell team blog. MSDN. http://blogs.msdn.com/powershell/archive/2006/04/25/583344.aspx. Retrieved on 2006-04-26. 
  10. ^ Snover, Jeffrey (November 15, 2006). "Windows PowerShell : Windows PowerShell & Windows Vista". Windows PowerShell team blog. MSDN. http://blogs.msdn.com/powershell/archive/2006/11/15/windows-powershell-windows-vista.aspx. Retrieved on 2007-01-26. 
  11. ^ Hansen, Kenneth (November 6, 2007). "The Community Technology Preview (CTP) of Windows PowerShell 2.0". Windows PowerShell team blog. MSDN. http://blogs.msdn.com/powershell/archive/2007/11/06/the-community-technology-preview-ctp-of-windows-powershell-2-0.aspx. Retrieved on 2007-11-06. 
  12. ^ "Rethinking the Pipeline". http://www.microsoft.com/technet/technetmag/issues/2007/07/PowerShell/default.aspx. Retrieved on 2007-11-28. 
  13. ^ "Windows PowerShell Object Concepts". http://msdn2.microsoft.com/en-us/library/aa347685.aspx. Retrieved on 2007-11-28. 
  14. ^ "How PowerShell Formatting and Outputting REALLY works". http://blogs.msdn.com/powershell/archive/2006/04/30/586973.aspx. Retrieved on 2007-11-28. 
  15. ^ "More - How does PowerShell formatting really work?". http://blogs.msdn.com/powershell/archive/2006/06/21/641738.aspx. Retrieved on 2007-11-28. 
  16. ^ "Windows PowerShell Extended Type System". http://msdn2.microsoft.com/en-us/library/ms714419.aspx. Retrieved on 2007-11-28. 
  17. ^ a b c "Windows PowerShell Cmdlets". http://msdn2.microsoft.com/en-us/library/ms714395.aspx. Retrieved on 2007-11-28. 
  18. ^ "Creating Your First Cmdlet". http://msdn2.microsoft.com/en-us/library/ms714622.aspx. Retrieved on 2007-11-28. 
  19. ^ "Adding parameters That Process Command Line Input". http://msdn2.microsoft.com/en-us/library/ms714663.aspx. Retrieved on 2007-11-28. 
  20. ^ "Adding parameters That Process Pipeline Input". http://msdn2.microsoft.com/en-us/library/ms714597.aspx. Retrieved on 2007-11-28. 
  21. ^ "Windows PowerShell Providers". http://msdn2.microsoft.com/en-us/library/ms714460.aspx. Retrieved on 2007-11-28. 
  22. ^ "Introduction to Windows PowerShell's Variables". http://www.computerperformance.co.uk/powershell/powershell_variables.htm. Retrieved on 2007-11-28. 
  23. ^ "Functions in PowerShell". http://mspowershell.blogspot.com/2006/11/functions-in-powershell.html. Retrieved on 2007-11-28. 
  24. ^ "Calling a Function with Parameters". http://weblogs.asp.net/soever/archive/2006/11/29/powershell-calling-a-function-with-parameters.aspx. Retrieved on 2007-11-28. 
  25. ^ a b "Lightweight Testing with Windows PowerShell". http://msdn.microsoft.com/msdnmag/issues/07/05/TestRun/default.aspx. Retrieved on 2007-11-28. 
  26. ^ "Trap [Exception] { “In PowerShell” }". http://huddledmasses.org/trap-exception-in-powershell. Retrieved on 2007-11-28. 
  27. ^ "Running Windows PowerShell Scripts". http://www.microsoft.com/technet/scriptcenter/topics/winpsh/manual/run.mspx. Retrieved on 2007-11-28. 
  28. ^ "Windows PowerShell V2 Community Technology Preview 3 (CTP3)". http://www.microsoft.com/downloads/details.aspx?familyid=C913AEAB-D7B4-4BB1-A958-EE6D7FE307BC&displaylang=en. 
  29. ^ http://blogs.msdn.com/powershell/archive/2008/10/28/powershell-will-be-installed-by-default-on-windows-server-08-r2-ws08r2-and-windows-7-w7.aspx
  30. ^ http://blogs.msdn.com/powershell/archive/2008/10/29/574-reasons-why-we-are-so-proud-and-optimistic-about-w7-and-ws08r2.aspx
  31. ^ http://channel9.msdn.com/pdc2008/ES24/
  32. ^ "What's New in CTP of PowerShell 2.0". http://blogs.msdn.com/powershell/archive/2007/11/06/what-s-new-in-ctp-of-powershell-2-0.aspx. Retrieved on 2007-11-28. 
  33. ^ "Windows PowerShell V2 Community Technology Preview 2 (CTP2) - releaseNotes". http://www.microsoft.com/downloads/details.aspx?FamilyId=7C8051C2-9BFC-4C81-859D-0864979FA403&displaylang=en. Retrieved on 2008-05-05. 
  34. ^ http://blogs.msdn.com/powershell/archive/2008/10/14/gogrid-snap-in-managing-cloud-services-with-powershell.aspx
  35. ^ http://blogs.msdn.com/powershell/archive/2008/10/18/emit-xml.aspx
  36. ^ Clear-Host is implemented as a predefined PowerShell function.
  37. ^ a b Available in Windows NT4, Windows 98 Resource Kit, Windows 2000 Support Tools
  38. ^ a b Available in Windows XP Professional Edition and later
  39. ^ Page 9 - The Best and Worst Microsoft Products - Security
  40. ^ Windows PowerShell
  41. ^ PowerShell Tips and Tricks
  42. ^ What is Windows PowerShell?
  43. ^ Windows Server 2008 Review
  44. ^ PowerShell Hits a Million Downloads in the First Six Months
  45. ^ "Microsoft Transporter Suite for Lotus Domino". http://www.microsoft.com/downloads/details.aspx?familyid=35fc4205-792b-4306-8e4b-0de9cce72172&displaylang=en. Retrieved on 2008-03-07. 
  46. ^ "PowerTools for Open XML". http://www.codeplex.com/PowerTools. Retrieved on 2008-06-20. 
  47. ^ "MO74: WebSphere MQ - Windows Powershell Library". http://www-1.ibm.com/support/docview.wss?rs=171&uid=swg24017698. Retrieved on 2007-12-05. 
  48. ^ "PowerShell Commands for Active Directory by Quest Software". http://www.quest.com/powershell/activeroles-server.aspx. Retrieved on 2008-07-02. 
  49. ^ "PowerShell Remoting through Group Policy". http://www.specopssoft.com/powershell/. Retrieved on 2007-12-07. 
  50. ^ "VMware Infrastructure Toolkit for Windows". http://www.vmware.com/sdk/vitk_win/. Retrieved on 2008-10-10. 
  51. ^ "Windows PowerShell : IIS7 PowerShell Provider Tech Preview 2". http://blogs.msdn.com/powershell/archive/2008/07/03/iis7-powershell-provider-tech-preview-2.aspx. Retrieved on 2008-07-03. 
  52. ^ "Exchange Manager for 2003 and 2007". http://www.ensim.com/products/ensim_unify/unify_enterprise_edition/Microsoft_Exchange_Management.html. Retrieved on 2008-04-23. 
  53. ^ http://support.sapien.com/bulletins/activexposh.pdf

[edit] Books

[edit] External links

[edit] 3rd-party tools

[edit] PowerShell providers

Personal tools