< # .SYNOPSIS This script displays the NICs in a system and their physical address. .DESCRIPTION This script is a MSDN Sample recoded in PowerShell. The script first gets all the interfaces on the...
< # .SYNOPSIS This script strips out a port and protocol number from a URL .DESCRIPTION This script creates a regular expression reged then uses it to match against the URL to get the protocol and port...
< # .SYNOPSIS This script validates email addresses based on MSFT published Regular Expression. This is a re-write with PowerShell of an existing bit of MSDN sample code ...
< # .SYNOPSIS This script shows the build number of file version object. .DESCRIPTION This script is a re-implementation of an MSDN Sample script that uses System.Diagnostics.FileVersionInfo to get ...
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 script which shows the use of the CurrencyDecimalSeparator property of a numeric format info object. .DESCRIPTION This script displays...
< # .SYNOPSIS This script re-implements an MSDN Sample showing the CalendarAlgorithmType enumeration. .DESCRIPTION This script creates there calendars and displays algorithm...
Let’s face it – spelling misteaks suck. Whether in a blog post or in a PowerShell script. Doug Finke has written a nice article on this subject that shows how to spell your strings in your scripts . He even includes a script to do it! You can Download...
< # .SYNOPSIS This script creates a shortcut to Notepad on the Desktop .DESCRIPTION This script creates a Wscript.shell item, then creates a shortcut on the desktop to Notepad.exe. .NOTES File...
< # .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 gets and displays basic DNS Information about a host. .DESCRIPTION This script just gets and displays host details returnd by GetHostByName. .NOTES File Name : Get-ByName.ps1 ...
< # .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...