The home page for the Channel9 Windows Click to read this topic5/18/2006 1:53:12 PM - 00011147BCAA96A8
PowerShell Wiki is Windows PowerShell (formerly code-named "MSH", "Monad")4/15/2008 5:03:34 AM - bonovox
WindowsPowerShellWiki
Also see the Windows Click to read this topic5/18/2006 1:53:12 PM - 00011147BCAA96A8
PowerShell page on TechNet Script Center
This script will archive IIS log files for you, if you're lucky.6/21/2005 7:43:08 PM - Eraserhead
ArchiveIISLogFiles
A script that will archive IIS Log files for you.
Modification of ArchiveIISLogFiles to create .zip files instead of .rar files.5/4/2007 4:01:14 PM - markdall
ArchiveIISLogFilesToZipVia7Zip
A modified version of the original script, using 7-zip to create zip files
Click to read this topic5/4/2007 2:55:22 PM - markdall
DaysTill
This script tells you the number of days until a specic day (such as a birthday, or holiday).
Example:
PS>daystill 12/25/2004
66
Trim-SparseText
Windows Click to read this topic5/18/2006 1:53:12 PM - 00011147BCAA96A8
PowerShell composition capabilities make some tasks that normally would take several lines of code in a scripting language into one-liners. Trim-SparseText is a good example; it's a simple filter that cleans up incoming input strings for easier parsing later. It removes all leading or trailing whitespace, and then only emits the text if it is longer than 0 length.
filter Trim-SparseText{$_ = $_.Trim();if($_){$_;} }
This contains two functions which you can use to control the color of text written to the console, as well as an example custom prompt that makes use of them.
A script that reads an RSS feed based on the command-line specified parameters. ReadRSS [URL to RSS Feed] [Max Results]8/8/2005 5:05:00 PM - gisenberg
ReadRSS
A script that takes a URL and maximum number of results and returns the titles of a given RSS 2.0 feed.
A simple example script for creating a connection to a SQL Database.8/8/2005 2:39:03 PM - gisenberg
SqlConnect
This is an example script that instantiates, opens, and closes a SqlConnection object within Windows Click to read this topic5/18/2006 1:53:12 PM - 00011147BCAA96A8
PowerShell.