Guy recommends :
Free Solarwinds
VM Console

Solarwinds VM Console Free Download

Find out which of your VMs are a waste of space and which VMs need more resources.



Windows PowerShell's Syntax

Introduction to PowerShell's Syntax

The fact that you almost don't need this page is a testament to the intuitive nature of PowerShell.  Yet for those who wish to save time fumbling with the PowerShell syntax, it may pay to have a refresher of these rules of scripting grammar.

Windows PowerShell Syntax Topics

 ♣

Case Insensitive

PowerShell is fundamentally case insensitive.  Every object and every cmdlet is case insensitive.  Set-Location performs exactly the same action as set-location.  However, where your data has case sensitive values, there are PowerShell operators to deal with 'case'.  For example, -gt means greater than, -match means contains a particular string value.  Now you can force these and similar operators to be case sensitive by prefixing with a 'c'.  -cmatch, or -cgt mean that the comparison will be case sensitive.

Comma and Semi-colon

For many years a bad attitude to syntax hindered me.  My breakthrough was realizing that punctuation marks are there to aid the readers' understanding; my mistake was thinking syntax rules were designed by my English teacher as a way of finding new ways to tell me off.

With PowerShell's syntax the comma is frequently used to separate items on a list.  Whereas the semi-colon is to split separate ideas.  Let us study this example:

Clear-host
$i=0
$Log = Get-EventLog -list
ForEach ($Item in $Log) {
"{0,-30} {1,-20} {2,13}" -f `
$Item.Log, $Item.OverflowAction, $Item.MaximumKilobytes
}

Note 1: Each $Item is separated by a comma.  No sign of the semi-colon, yet.

Note 2: The comma is also used so separate items in an array {0,-30}

Suppose we want to count the number of eventlogs.  Let us introduce a variable $i

Clear-host
$i=0
$Log = Get-EventLog -list
ForEach ($Item in $Log) {
"{0,-30} {1,-20} {2,13}" -f `
$Item.Log, $Item.OverflowAction, $Item.MaximumKilobytes; $i++
}
"There are $i eventlogs"

Note 1: The counter variable, $i++ is new element, which is not connected to the list; time for a semi-colon before the counter variable.

= Equals and ! Not equal

The equals sign (=) behaves just as expected.  As usual, '=' tests for equivalence, or sets a variable to be equal to a certain value.  The equals sign has a counterpart ! (Exclamation mark) meaning, 'not equal'.  You may also employ -not instead of !  I just include these two basic operators, '=' and ! for completeness.

Hyphen -dash -minus

Some people call this symbol (-) minus, others a refer to this sign as a dash, I mostly call it a hyphen.  Let me be clear, this character maps to ASCII 45, to see the character, hold down ALT key, type 45 on numeric keypad, now let go of ALT key.

PowerShell uses this - symbol for two purposes.  Firstly, to join verb-Noun pairs, for example out-File guy.txt.  Secondly, this minus sign is also used for parameters, modifiers, or filters such as -list; as in Get-Eventlog -list.  The trap I fall into is to put a space between the minus and the modifier.  get  -eventlog is clearly wrong, because there is a space between get and -. The correct format is, Get-Eventlog, with no space.

Guy Recommends: WMI Monitor and It's Free!Solarwinds Free WMI Monitor

Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft operating systems.  Fortunately, Solarwinds have created a Free WMI Monitor so that you can discover these gems of performance information, and thus improve your PowerShell scripts.  Take the guess work out of which WMI counters to use when scripting the operating system, Active Directory or Exchange Server.

Download your free copy of WMI Monitor

Pipeline, the Pipe Symbol | (Sometimes looks like ¦)

The ability to pipe the output of one command, so that it becomes the input of the second command is PowerShell's signature tune.  Thus it is important to be clear about this | symbol.

When typed in notepad, the pipeline symbol looks like this: | but when typed in the Microsoft Shell it looks like ¦.  On my keyboard the key I am using this symbol is next to the z, however I have seen keyboards where the pipeline key is next to numeric 1 on the top row.  Once you find, then type the key, you get a pipe symbol (|).

To be crystal clear this pipeline symbol corresponds to ASCII 124.  N.B this not ASCI 0166.  Test by holding down the Alt key and typing the number (124 or 0166) on the numeric pad, then letting go of the Alt key.

In PowerShell syntax the pipeline symbol (|) has three roles. 

  1. Think of the pipeline as a method for joining two commands. 
    Get-Eventlog system | Format-List
    You could even have two pipelines in one statement.
  2. PowerShell deploys Pipeline to introduce a 'Where' clause.
    Get-Eventlog security |where {$_.Eventid -eq "540"}
  3. Pipeline is similar to 'more' in DOS  
    Get-Eventlog system | more ...
    See more about $_.

PowerShell's Brackets

PowerShell's brackets surprised me.  Each type has a specific role, the wrong bracket will cause an otherwise sound command, to fail miserably.  The message is clear, you have to understand your brackets.  Each of these (), {} or [] has a different purpose.  After a while, PowerShell's syntax becomes your friend in producing error-free code.  For instance, if you need a script block, always associate the task with the {Braces style of bracket}.

1) () Parenthesis or Curved brackets are used for required options in the foreach loop

Example: $disk= WmiObject Win32_LogicalDisk
"Drive Letter Size GB "
foreach ($drive in $disk ) {"Drive = " + $drive.Name}

2) {} Braces or 'curly' brackets are required for block expressions within a command, for instance, the 'where' or 'where-object' command.

Example: Get-Service | where {$_.status -eq "stopped" }

3) [] Square brackets are used for optional elements, for example, to filter services beginning with 's':

Example: Get-Service [s]*

I have also found square brackets are needed for math functions such as [int]value

Example: [int]TotalProcessorTime

4) >  and >> work as with DOS and cmd, they output the results of your commands not to screen, but to a text file.  The double chevron >> appends, the single > will overwrite any existing data in the file.

Conclusion, the type of bracket really matters, therefore always double check before you select {} () or [].  See more about PowerShell's brackets.

®

Double and Single Quotes

As with brackets, the type of quotation mark is highly significant in PowerShell syntax.  Here is an example to illustrate the differences between single quotes and double quotes in PowerShell

$Bill = 57
$Tax = 7
$Total = $Bill + $Tax

"My total is $Total"

Using the double quotes illustrates PowerShell's intelligence, it realizes that $Total is variable holding the value 64, thus the output is:
My total is 64

However, if we substitute single quotes: 'My total is $Total', we get a different, literal answer: My total is $Total.  PowerShell assumed that for a reason best known to us, we did not want it to use the math representation.

+ Plus as a Concatenator

When I wanted to join text and numbers, I spent time looking for PowerShell's concatenator.  Silly me, all I need is the simple + plus sign.  This is because in PowerShell + joins text strings as well as its traditional job of adding numbers.  For example:
"My total is  " + $Total

Achieve Word-wrap with Backtick` Backtick key in PowerShell

While word-wrap is neither essential, nor strictly speaking a syntactic element, it makes scripts easier to read.  The problem with most scripting languages, including PowerShell, is that an end-of-line means end of command. 

A new line, means a new command.

Thus we need a special symbol to control word-wrap.  PowerShell employs the backtick `.  I have seen this same character referred to as a grave.  A sure way of typing this key is to hold down the Alt key.  Now type 0096 on the numeric pad, let go of the Alt key.

PowerShell's Switch Command

In VBScript one of my favourite techniques was Select Case, here in PowerShell the equivalent technique is called 'Switch'.  Here is an example.   Guess the outcome?

$Choice = 2
switch ($Choice)
{
1 {"First Choice"}
2 {"Second Choice"}
3 {"Third Choice"}
}

The answer is determined by the value of $Choice, in this instance 2, therefore the result would be 2 "Second Choice"

Guy Recommends:  A Free Trial of the Network Performance Monitor (NPM)Review of Orion NPM v10

Solarwinds' Orion performance monitor will help you discover what's happening on your network.  This utility will also guide you through troubleshooting; the dashboard will indicate whether the root cause is a broken link, faulty equipment or resource overload.

Perhaps the NPM's best feature is the way it suggests solutions to network problems.  Its second best feature is the ability to monitor the health of individual VMWare virtual machines.  If you are interested in troubleshooting, and creating network maps, then I recommend that you take advantage of Solarwinds' offer.

Download a free trial of the Network Performance Monitor.

PowerShell's Operators

Operator

Definition of PowerShell Syntax

# # The hash key is for comments
+ Add
- Subtract
* Multiply 
/ Divide
% Modulus (Some call it Modulo) - Means remainder 17 % 5 = 2 Remainder
= equal
-not logical not equal
! logical not equal
-band binary and
-bor binary or 
-bnot binary not
-replace Replace (e.g.  "abcde" -replace "b","B") (case insensitive)
-ireplace Case-insensitive replace (e.g.  "abcde" -ireplace "B","3")
-creplace Case-sensitive replace (e.g.  "abcde" -creplace "B","3")
-and AND (e.g. ($a -ge 5 -AND $a -le 15) )
-or OR  (e.g. ($a -eq "A" -OR $a -eq "B") )
-is IS type (e.g. $a -is [int] )
-isnot IS not type (e.g. $a -isnot [int] )
-as convert to type (e.g. 1 -as [string] treats 1 as a string )
.. Range operator (e.g.  foreach ($i in 1..10) {$i }  )
& call operator (e.g. $a = "Get-ChildItem" &$a executes Get-ChildItem)
. (dot followed by space) call operator (e.g. $a = "Get-ChildItem" . $a executes Get-ChildItem in the current scope)
. .Period or .full stop for an objects properties
$CompSys.TotalPhysicalMemory
-F Format operator (e.g. foreach ($p in Get-Process) { "{0,-15} has {1,6} handles" -F  $p.processname,$p.Handlecount } )

Guy Recommends:  Solarwinds' Free Bulk Import ToolFree Download of Solarwinds  Bulk Import Tool

Import users from a spreadsheet.  Just provide a list of the users with their fields in the top row, and save as .csv file.  Then launch this FREE utility and match your fields with AD's attributes, click to import the users.  Optionally, you can provide the name of the OU where the new accounts will be born.

There are also two bonus tools in this free download, and all 3 have been approved by Microsoft:

  1. Bulk-import new users into Active Directory.
  2. Seek and zap unwanted user accounts.
  3. Find inactive computers.

Download your FREE bulk import tool.

PowerShell's Conditional or Comparison Operators

Operator

Definition of PowerShell Syntax

-lt Less than
-le Less than or equal to
-gt Greater than
-ge Greater than or equal to
-eq Equal to
-ne Not Equal to
-contains Determine elements in a group.
This always returns Boolean $True or $False.
-notcontains Determine excluded elements in a group
This always returns Boolean $True or $False.
-like Like - uses wildcards for pattern matching
-notlike Not Like - uses wildcards for pattern matching
-match Match - uses regular expressions for pattern matching
-notmatch Not Match - uses regular expressions for pattern matching
  Bitwise
-band Bitwise AND
-bor Bitwise OR
-is Is of Type
-isnot Is not of Type
  Other PowerShell Operators
if(condition) If condition (See more on PowerShell's If)
elseIf(condition) ElseIF
else(condition) Else
> Redirect, for example, output to text file
Example   .\cmdlet > stuff.txt
>> Same as Redirect except it appends to an existing file

Summary of Windows PowerShell Syntax

Every language must have its grammar rules.  However, with PowerShell syntax the rules for brackets, quotation marks and commas, all seem logical, straightforward and above all, consistent.

If you like this page then please share it with your friends

 


See more PowerShell examples for syntax constructions

PowerShell Tutorials  • Syntax  • Pipeline  • Quotes  • New-Item  • Remove-Item  • ItemProperty

Select-String  • -replace string  • Group-Object  • Sort-Object 

Windows PowerShell cmdlets   • Windows PowerShell

Please email me if you have a better example script. Also please report any factual mistakes, grammatical errors or broken links, I will be happy to correct the fault.

Download my ebook:Getting Started with PowerShell
Getting Started with PowerShell - only $9.25

You get 36 topics organized into these 3 sections:
   1) Getting Started
   2) Real-life tasks
   3) Examples of Syntax.

In addition to the ebook, you get a PDF version of this  Introduction to PowerShell ebook  It runs to 120 pages of A4.

 *


Custom Search

Guy Recommends: WMI Monitor and It's Free!Solarwinds WMI Monitor

Windows Management Instrumentation (WMI) is one of the hidden treasures of Microsoft operating systems.

Fortunately, Solarwinds have created the Free WMI Monitor so that you can actually see and understand these gems of performance information.  Take the guess work out of which WMI counters to use for applications like Microsoft Active Directory, SQL or Exchange Server.

Download your free copy of WMI Monitor

 

Home Copyright © 1999-2012 Computer Performance LTD All rights reserved

Please report a broken link, or an error.