< # .SYNOPSIS This script displays details of a UmAlQura Calendar in PowerShell .DESCRIPTION This script shows the various aspects of this calendar including key properties, fields and selected methods. ...
< # .SYNOPSIS This script re-implements this MSDN Sample of multiplying a big integer. .DESCRIPTION This script first tries and fails to multiple a pair of large integers. The script...
< # .SYNOPSIS This script creates a file, then reads it and displays the output. .DESCRIPTION This script implements the MSDN sample for this page. It first creates a file (assuming the file does not already exist...
< # .SYNOPSIS This script displays service details .DESCRIPTION This script first enumerates all the service controllers (ie services) running on the local system. For each service, we look into WMI and ...
< # .SYNOPSIS This script uses XMLWriter to write an XML Element .DESCRIPTION This script creates and uses and XML writer to write an XML Element .NOTES File Name : Write...
< # .SYNOPSIS This script uses XMLWriter to write XML .DESCRIPTION This script creates and XML writer and writes some basic XML. .NOTES File Name : Write-XML.ps1 ...
< # .SYNOPSIS This script creates and starts a Process using .NET .DESCRIPTION This script Creates a process object and sets the executable to notepad. The script then starts the process...
< # .SYNOPSIS This script restarts the DNS Service on a Remote System .DESCRIPTION This script uses WMI to reach out and restart the DNS DNS service on a remote machine. in my home environment, ...
I've stumbled upon blog post that talks about accessing remote registry, collecting "Automatic Update" configuration info and creating custom object to hold that data for further processing/formatting. The author has used Add-Member cmdlet to add quite a bunch of NoteProperties to the custom...
< # .SYNOPSIS This script displays the size of a folder .DESCRIPTION This script is a rewrite of an MSDN sample. It uses System.IO namespace to determine the size of a folder and...
< # .SYNOPSIS This script demonstrates the use of System.Environment .DESCRIPTION This script Uses a variety of the members of System.Environment and is a re-write of a MSDN Sample Script .NOTES ...
< # .SYNOPSIS This script demonstrates the confirmance level enum. .DESCRIPTION This script displays the values form the conformancelevel enum and checks it against a value. .NOTES ...
< # .SYNOPSIS This script gets and displays the cookies returned from a site. .DESCRIPTION This script calls System.Net.WebRequest to get a page. in the response there may be cookies returned which this script...
<# .SYNOPSIS Demonstrates string formatting using Powershell .DESCRIPTION This script formats 2 numbers in a variety of ways, also formats an enum . An adaptation of the C# sample in the...