Sign in
|
Join PowerShell.com!
|
Help
Home
PowerTips
Ask the Experts
Forums
Webcasts
Blogs
eBookV2
Script Library
Twitter Grid
Featured Posts
Dreaming in PowerShell
Don Jones
Code MarkUp Tool
Directory
August 2010 - Thomas Lee's PowerShell Scripts
Share
|
Recent Posts
Show-DnsConfiguration.ps1
Show-NetworkInterfaces2.ps1
Show-NetworkInterfaces.ps1
Get-ProcessesAsExcel.ps1
Test-FileOpen
Archives
April 2012 (3)
February 2012 (2)
January 2012 (2)
December 2011 (3)
November 2011 (12)
October 2011 (6)
September 2011 (9)
June 2011 (1)
March 2011 (1)
February 2011 (1)
January 2011 (1)
December 2010 (3)
October 2010 (5)
September 2010 (11)
August 2010 (14)
July 2010 (9)
June 2010 (9)
May 2010 (9)
April 2010 (1)
March 2010 (10)
February 2010 (2)
January 2010 (1)
December 2009 (3)
November 2009 (1)
October 2009 (7)
September 2009 (2)
August 2009 (7)
July 2009 (4)
June 2009 (6)
May 2009 (7)
April 2009 (3)
March 2009 (6)
February 2009 (6)
January 2009 (24)
December 2008 (23)
November 2008 (14)
Tags
ADSI
Code
COM
formatting
HNetCfg.FwMgr
Power
PowerShell
PowerShell script
PowerShell Scripts
PowerShell V2
Script
scripts
StdRegProv
System.DateTime
System.Diagnostics.FileVersionInfo
System.Globalization
System.Globalization.CultureInfo
system.net.ipaddress
System.Net.NetworkInformation
System.Security.Cryptography
System.TimeZoneInfo
System.XML.XMLDocument
win32_computersystem
wmi
xml
View more
Sort by:
Most Recent
|
Most Viewed
|
Most Commented
Get-Cultures.ps1
< # .SYNOPSIS This script displays information of cultures on a system. .DESCRIPTION This script reimplements an MSDN script using PowerShell. It first gets the cultures then displays them .NOTES File Name : Get-Cultures.ps1 Author ...
Published
Tue, Aug 31 2010 2:17 PM
by
PowerShell Scripts Blog
Get-Time.ps1
< # .SYNOPSIS This script converts time to different time zones. .DESCRIPTION This script re-implements an MSDN sample using PowerShell .NOTES File Name : Get-Time.ps1 Author : Thomas Lee - tfl @psp .co.uk Requires ...
Published
Sun, Aug 29 2010 5:44 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Code
,
System.TimeZoneInfo
,
ConvertTimeToUtc
,
System.TimeZonfInfo
Get-TimeZoneInfoInfo
< # .SYNOPSIS This script displays/Uses TimeZoneInfo properties .DESCRIPTION This script displays the use of all the TimeZoneInfo Properties. .NOTES File Name : Get-TimeZoneInfoInfo.ps1 Author : Thomas Lee - tfl @psp .co.uk ...
Published
Sat, Aug 28 2010 7:23 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
Code
,
System.TimeZoneInfo
Get-NoDstTimeZones
< # .SYNOPSIS This script displays those time zones that do NOT support daylight savings time. .DESCRIPTION This script uses .NET to get the time zones defined on a system then displays those that do not suport daylight savings time. .NOTES File Name ...
Published
Wed, Aug 25 2010 9:44 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell
,
scripts
,
Script
,
Code
,
System.TimeZoneInfo
,
SupportsDaylightSavingTime
Get-BrokenHardware.ps1
< # .SYNOPSIS This script gets a list of non-working hardware using WMI. .DESCRIPTION This script re-implements another TechNet Scripting Gallery script that was written in VB (see http://tinyurl.com/y4hmtbr). This script first uses WMI to get system...
Published
Tue, Aug 17 2010 8:26 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
scripts
,
wmi
,
win32_computersystem
,
Win32_PNPEntity
,
Win32_ComputerSystemProduct
Get-Sha1HashFile.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 space added. The file I picked is a large text file I keep in c:\foo for uses...
Published
Mon, Aug 16 2010 6:48 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
Code
,
System.Security.Cryptography
,
System.Security.Cryptography.Sha1CryptoServiceProvider
Get-Sha1Hash.ps1
< # .SYNOPSIS This script uses the SHA1 Crypto Provider to hash a string .DESCRIPTION This script creates 2 strings, and a SHA1 Crypto Provider. The script then hashes the strings and displays the results. .NOTES File Name : Get-Sha1Hash.ps1 ...
Published
Fri, Aug 13 2010 1:35 PM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
System.Security.Cryptography
,
System.Security.Cryptography.Sha1CryptoServiceProvider
,
System.Security.Cryptography.Sha1CryptoServiceProvider. GetHash
Get-DnsRegisteredServers.ps1
< # .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. all the computers that have used the DNS server to register!). The ...
Published
Thu, Aug 12 2010 6:39 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
wmi
,
Script
,
Code
,
dns
,
MicrosoftDNS_PTRType
,
MicrosoftDNS
Get-EncryptedAesString.ps1
< # .SYNOPSIS This script encrypts then decrypts a string using AES .DESCRIPTION This script re-implements an MSDN sample that first encrypts a string then decrypts it. The crypto is done using AES. Running this script multiple times will result in differently...
Published
Wed, Aug 11 2010 10:28 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell
,
scripts
,
System.Security.Cryptography
,
System.Security.Cryptography.AesCryptoServiceProvider
Convert-Date.ps1
< # .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 Universal, UTC, Pacific and 'local' time. .NOTES ...
Published
Tue, Aug 10 2010 10:31 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
Code
,
ConvertTime
,
System.TimeZoneInfo
Divide-BigInteger.ps1
< # .SYNOPSIS This script divides big integers using .NET Framework. .DESCRIPTION This script reimplements an MSDN Sample script using powershell. The script creates a dividor and an arry of dividends, then performs division operations several ways. .NOTES ...
Published
Mon, Aug 09 2010 10:52 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
scripts
,
Code
,
System.Numerics
,
System.Numerics.BigInteger
,
scripts. System.Numerics.BigInteger
Get-MultiplyBigInteger.ps1
< # .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 catches the error and then used BigInteger.Multiply to multiply the...
Published
Wed, Aug 04 2010 4:04 PM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
PowerShell V2
,
Script
,
Code
,
System.Numerics
,
System.Numerics.BigInteger
Get-ConvertedTime.ps1
< # .SYNOPSIS This script converts time using ConvertTime method. .DESCRIPTION This script re-implements an MSDN sample. .NOTES File Name : Get-ConvertedTime.ps1 Author : Thomas Lee - tfl @psp .co.uk Requires ...
Published
Mon, Aug 02 2010 6:34 AM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
System.DateTime
,
ConvertTime
Get-BigIntegerProperties.ps1
< # .SYNOPSIS This script displays dynamic properties of a BigInteger .DESCRIPTION This script demonstates the properties on an instance of BigInteger .NOTES File Name : Get-BigIntegerProperties.ps1 Author : Thomas Lee - tfl @psp .co.uk ...
Published
Sun, Aug 01 2010 1:09 PM
by
PowerShell Scripts Blog
Filed under:
PowerShell Scripts
,
PowerShell
,
Script
,
BigInteger
,
.Net 4.0
,
System.Numerics
Copyright 2011 PowerShell.com. All rights reserved.