Technorati Tags: PowerShell , Formatting , ToString() , script , code < # .SYNOPSIS Shows formatting of leading Zeros .DESCRIPTION This script, a re-implementation of an MSDN Sample, creates several numbers...
< # .SYNOPSIS This script opens a word document using PowerShell .DESCRIPTION This script re-implments a simple MSDN script to open a word document using VBA. IT Pros using PowerShell might...
< # .SYNOPSIS This script re-implements an MSDN Sample showing the CalendarAlgorithmType enumeration. .DESCRIPTION This script creates there calendars and displays algorithm...
< # .SYNOPSIS This script checks whether a parameter is an IPv6 or IPv4 Loopback Address .DESCRIPTION This script checks to see if the passsed string is a loopback address and if so, displays details. .NOTES ...
< # .SYNOPSIS This script deletes a file from an FTP Server .DESCRIPTION This script is a rewrite of an MSDN Sample .NOTES File Name : Remove-FtpFile.ps1 Author ...
< # .SYNOPSIS This script Uploads a text file to an FTP Server using PowerShell. .DESCRIPTION This script first creates an FTP 'web' request to upload a file. Then the source file is read from...
< # .SYNOPSIS This script encodes and decodes an HTML String .DESCRIPTION This script used .NOTES File Name : Show-HtmlCoding.ps1 Author : Thomas...
< # .SYNOPSIS This script creates the DNS entries needed for a Lync 2010 SE deployment. .DESCRIPTION This script creates a couple of wrapper functions to create DNS A and SRV records, then calls those functions...
< # .SYNOPSIS This script displays/Uses TimeZoneInfo properties .DESCRIPTION This script displays the use of all the TimeZoneInfo Properties. .NOTES File Name : Get-TimeZoneInfoInfo.ps1 ...
< # .SYNOPSIS This script uses the SHA1 Crypto Provider to hash a file .DESCRIPTION This script uses SHA1 Cryptoprovider to hash a file and print the hash. A second hash is created of the same file, but with a...
< # .SYNOPSIS This script gets the reverse lookup zone from a DNS Server and displays all the systems registered .DESCRIPTION This script first gets the reverse lookup zone from a DNS Server (i.e. ...
< # .SYNOPSIS This script manipulates a time using TimeZone info methods. .DESCRIPTION This script reimplements an MSDN sample using PowerShell. The script first creates a DateTime object then it converts it to...
< # .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 demonstrates the Assembly.GetType method. .DESCRIPTION This script creates an int32, then calls into .NET to find the assembly that the int32 class comes from. The assembly ...