ContributeMost Recent Contributions (feed)
- Test-Hash
- 2 days ago
-
Test md5/sha1/etc file hashes.
I’ve enhanced this script to make it easy to store the results in a csv file and then test them later. See Example 1.
(This one fixes a missing “m” in the previous scrip)
- Create datastore by LUN
- 2 days ago
-
Creates a VMFS datastore via powershell by specifying the target LUN ID
Modified from the original version at http://snipplr.com/view.php?codeview&id=48048
To run: New-DatastoreByLun “myESXHost” “SANB” 9 0 “Datastore01”
- Untitled
- 4 days ago
-
Count-CachedMode.ps1
Simple example using a hash to parse CAS Connect Logs
After using the get-CASConnectLogEntries.ps1 to collect the log information
This script runs thru those files and counts Cached vs ClassicCorrected typo
- Untitled
- 7 days ago
-
Get-CASConnectLogEntries.ps1
Get a subset of CAS RPC logs having OUTLOOK.EXE and CONNECT
- PowerShell Template
- 7 days ago
-
I created this function to generate a new PowerShell Script template. It will prompt for the name of the script you want to create (don’t need to add the .ps1 extension) and the email (don’t need to add email) then it will create the template in the C:\Scripts directory (Dir should already exist)
- Set-IPConfigv2
- 8 days ago
-
second version of set ip config thru WMI,
added batch option to skip multihomed nodes,
changed output for piping into logfile,
minor improvements in output
- ShowUI Weather Widget
- 9 days ago
-
This is a simple weather forecast widget that shows the current temperature and forecast. Don’t forget to change the
$woEIDto the right one for your location.
- Excel-LoadFile
- 9 days ago
-
Load an Excel document into an Excel COM object for processing as input. These functions can be modified to start reading the data at a specified row count. The data/headers do not need be on the first row.
Additionally, the headers can be queried based on the beginning row information, and can then be referenced by name, instead of number.
Also, the Excel-CloseFile will terminate all Excel processes running. This is to free the Excel input file from memory to allow for it to be moved/edited/touched by another process/function.
- Set-Wallpaper (CTP3)
- 10 days ago
-
Set-Wallpaper lets you set your windows desktop wallpaper. It requires PInvoke and I wrote it using PowerShell 2’s
Add-Type, although it could be done in v1 using the JIT code generation tricks Lee Holmes has mentioned in the past …- Updated for CTP3
- Made it run as a script instead of a function.
- Expand-ZipFile
- 10 days ago
-
Extracts the contents of a ZIP file to a folder
PowerShell Code Repository