- Nokia's new N97 vs. the iPhone
- 10 Microsoft research projects
- Hard to get justice in MySpace case
- Smartphone smackdown: Storm vs. iPhone
- Apple removes antivirus support page
This book is our July selection for Microsoft Subnet's book giveaway and author guest blog. Check out the author's one-month guest blog. Enter to win one of free copies of the book of the month. Visit the Microsoft Subnet home page for more giveaways, blogs, opinions, news.
What Is Windows PowerShell?
Downloading and Installing PowerShell Community Extensions
Testing the WPS Extensions
Downloading and Installing the PowerShellPlus
Testing the WPS IDE
This chapter introduces Windows PowerShell and helps you set up your environment. In addition, the chapter provides a few easy examples that demonstrate how to use PowerShell.
Windows PowerShell (WPS) is a new .NET-based environment for console-based system administration and scripting on Windows platforms. It includes the following key features:
A set of commands called commandlets
Access to all system and application objects provided by Component Object Model (COM) libraries, the .NET Framework, and Windows Management Instrumentation (WMI)
Robust interaction between commandlets through pipelining based on typed objects
A common navigation paradigm for different hierarchical or flat information stores (e.g., file system, registry, certificates, Active Directory, environment variables)
An easy-to-learn, but powerful scripting language with weak and strong variable typing
A security model that prevents the execution of unwanted scripts
Tracing and debugging capabilities
The ability to host WPS in any application
This book includes syntax and examples for these features, except the last one, which is an advanced topic that requires in-depth knowledge of a .NET language such as C#, C++/CLI, or Visual Basic .NET.
The DOS-like command-line window survived many Windows versions in almost unchanged form. With WPS, Microsoft now provides a successor that does not just compete with UNIX shells, it surpasses them in robustness and elegance. WPS could be called an adaptation of the concept of UNIX shells on Windows using the .NET Framework, with connections to WMI.
Active Scripting with Windows Script Host (WSH, pronounced "wish") is much too complex for many administrators because it presupposes much knowledge about object-oriented programming and COM. The many exceptions and inconsistencies in COM make WSH and the associated component libraries hard to learn.
Even during the development of Windows Server 2003, Microsoft admitted that they had asked UNIX administrators how they administer their operating system. The short-term result was a large number of additional command-line tools included in Windows Server 2003. However, the long-term goal was to replace the DOS-like command-line window of Windows with a new, much more powerful shell.
Upon the release of the Microsoft .NET Framework in 2002, many people were expecting a "WSH.NET." However, Microsoft stopped the development of a new WSH for the .NET Framework because it foresaw that using .NET-based programming languages such as C# and Visual Basic .NET would require administrators to know even more about object-oriented software development.
Microsoft recognized the popularity of and satisfaction with UNIX shells and decided to merge the pipelining concept of UNIX shells with the .NET Framework. The goal was to develop a new shell that was simple to use but nearly as robust as a .NET program. The result: WPS.
In the first beta version, the new shell was presented under the code name Monad at the Professional Developer Conference (PDC) in October 2003 in Los Angeles. After the intermediate names Microsoft Shell (MSH) and Microsoft Command Shell, the shell received its final name, PowerShell, in May 2006. The final version of WPS 1.0 was released on November 11, 2006 at TechEd Europe 2006.
Note - The main architect of WPS 1.0 was Jeffrey Snover. He is always willing to discuss his "baby" and answer questions. At large international Microsoft conferences, such as the Professional Developer Conference (PDC) and TechEd, you can easily find him; he is the only person at the Microsoft booths wearing a tie.
If you need a reason to use WPS, here it comes. Just consider the following solution for one common administrative task in both the old WSH and the new WPS.
An inventory script for software is to be provided that will read the installed MSI packages using WMI. The script will get the information from several computers and summarize the results in a CSV file (softwareinventory.csv). The names (or IP addresses) of the computers to be queried are read from a TXT file (computers.txt).
The solution with WSH (Listing 1.1) requires 90 lines of code (including comments and parameterizing). In WPS, you can do the same thing in just 13 lines (Listing 1.2). If you do not want to include comments and parameterizing, you need just one line (Listing 1.3).
Listing 1.1 Software Inventory Solution 1: WSH
Option Explicit ' --- Settings Const InputFileName = "computers.txt" Const OutputFileName = "softwareinventory.csv" Const Query = "SELECT * FROM Win32_Product where notVendor like '%Microsoft%'" Dim objFSO ' Filesystem Object Dim objTX ' Textfile object Dim i ' Counter Dim Computer ' Current Computer Name Dim InputFilePath ' Path for InputFile Dim OutputFilePath ' Path of OutputFile ' --- Create objects Set objFSO = CreateObject("Scripting.FileSystemObject") ' --- Get paths InputFilePath = GetCurrentPath & "\" & InputFileName OutputFilePath = GetCurrentPath & "\" & OutputFileName ' --- Create headlines Print "Computer" & ";" & _ "Name" & ";" & _ "Description" & ";" & _ "Identifying Number" & ";" & _ "Install Date" & ";" & _ "Install Directory" & ";" & _ "State" & ";" & _ "SKU Number" & ";" & _ "Vendor" & ";" & _ "Version" ' --- Read computer list Set objTX = objFSO.OpenTextFile(InputFilePath) ' --- Loop over all computers Do While Not objTX.AtEndOfStream Computer = objTX.ReadLine i = i + 1 WScript.Echo "=== Computer #" & i & ": " & Computer GetInventory Computer Loop ' --- Close Input File objTX.Close ' === Get Software inventory for one computer Sub GetInventory(Computer) Dim objProducts Dim objProduct Dim objWMIService ' --- Access WMI Set objWMIService = GetObject("winmgmts:" &_ "{impersonationLevel=impersonate}!\\" & Computer &_ "\root\cimv2") ' --- Execeute WQL query Set objProducts = objWMIService.ExecQuery(Query) ' --- Loop For Each objProduct In objProducts Print _ Computer & ";" & _ objProduct.Name & ";" & _ objProduct.Description & ";" & _ objProduct.IdentifyingNumber & ";" & _ objProduct.InstallDate & ";" & _ objProduct.InstallLocation & ";" & _ objProduct.InstallState & ";" & _ objProduct.SKUNumber & ";" & _ objProduct.Vendor & ";" & _ objProduct.Version Next End Sub ' === Print Sub Print(s) Dim objTextFile Set objTextFile = objFSO.OpenTextFile(OutputFilePath, 8, True) objTextFile.WriteLine s objTextFile.Close End Sub ' === Get Path to this script Function GetCurrentPath GetCurrentPath = objFSO.GetFile (WScript.ScriptFullName).ParentFolder End Function
Listing 1.2 Software Inventory Solution 2: WPS
# Settings $InputFileName = "computers.txt" $OutputFileName = "softwareinventory.csv" $Query = "SELECT * FROM Win32_Product where notVendor like '%Microsoft%'" # Read computer list $Computers = Get-Content $InputFileName # Loop over all computers and read WMI information $Software = $Computers | foreach { get-wmiobject -query $Query - computername $_ } # Export to CSV $Software | select Name, Description, IdentifyingNumber, InstallDate,
InstallLocation, InstallState, SKUNumber, Vendor, Version |
export-csv $OutputFileName -notypeinformation
Listing 1.3 Software Inventory Solution 3: WPS Pipeline Command
Get-Content "computers.txt" | Foreach {Get-WmiObject -computername
$_ -query "SELECT * FROM Win32_Product where not
Vendor like '%Microsoft%'" } | Export-Csv "Softwareinventory.csv"
–notypeinformation
Comment