ContributeMost Recent Contributions (feed)
- egg_timer
- 2 hours ago
-
A script I submitted for Event 10 of the Scripting games. Displays a simple Windows Form that counts down three minutes. It makes a good example for using Windows forms.
- SnapReminder
- 44 hours ago
-
Remind the users of their snapshots – for use in VMware, see this post for more details: http://www.virtu-al.net/2009/06/22/powercli-snapreminder/
- LibrarySqlBackup
- 3 days ago
-
Standalone script adapted from SQL Server Powershell Extensions (sqlpsx) http://sqlpsx.codeplex.com. Defines SQL Server backup and restore functions.
- Format-TablePlus
- 3 days ago
-
This is a wrapper function for Format-Table that adds a
-Widthparameter, and a-PadEndparameter (without which it trims the end of every line of output. Set -PadEnd to get the original Format-Table behavior of adding needless whitespace on the end of every line of output.
- Colorize Subversion SVN
- 3 days ago
-
Colorize STAT, UPDATE and DIFF (without params) commands output for Subversion (svn) and Mercurial (hg).
Here’s a PowerShell functions that you can use to make those numerous commands you run every day via the PowerShell CLI a little easier to read by adding colors.
Autodetect for svn or hg.
Update autodetect to work with psdrives that are a UNC path. Also now works with repositorys in the root directory of drive.
Added $args to each function so you can do things like sd -r2 -rtip -U0
- Get-DirSize
- 3 days ago
-
A v2.0 function to recursively get the sizes of all subdirectories under a root path.
- vProfiles
- 3 days ago
-
vProfiles V1.1 By Alan Renouf http://virtu-al.net, copies vSwitches and PortGroups from one host to another.
- Prevent-Screensaver
- 5 days ago
-
Simulate user activity to prevent desktop lock or screensaver for specified period of time
- TabExpansion for V2CTP3
- 6 days ago
-
The most needless, useless and worthless Tabexpansion for powershell.exe(v2.0CTP3) in PoshCode.
Update:- Parameter name (and command alias) expansion with Ctrl+E
<br> Get-ChildItem -Filter *.txt -Recurse | Where-Object { $_.LastWriteTime -lt “2009/5” } | Select-String powershell -Exclude OEM<tab> Get-ChildItem -Filter *.txt -Recurse | Where-Object { $_.LastWriteTime -lt “2009/5” } | Select-String powershell -Encoding OEM<tab> Get-ChildItem -Filter *.txt -Recurse | Where-Object { $_.LastWriteTime -lt “2009/5” } | Select-String powershell -ErrorAction OEM<tab><tab>...
- TabExpansion
- 6 days ago
-
The most needless, useless and worthless Tabexpansion for powershell.exe(v1.0) in PoshCode.
Please dot souce this script file to use.
Update:.- WMI Namespaces expansion for Get-WmiObject
- WMI Classes expansion which is corresponding to WMI Namespace (*)
(*) it needs to remove old $PSHOME\WMIClasses.txt if it exists.
PowerShell Code Repository