HTTPCopy is a FREE standalone executable that allows you to directly copy a web file or web page locally. Rather than going to a website and download content manually, you can automate this using the HTTPCopy utility. Below you see an example I am personally using to download the Maxmind GeoLiteCity database I use for [...]
Running within an SCCM 2007 Tasksequence or not?
I’ve been working on a batch script that runs as part of an SCCM 2007 TaskSequence or simply as a regular program. Because there were different conditions whether I run the script as part of a TaskSequence or just as a program and did not want to create two separate scripts I needed a way [...]
ToolTip: Boxcutter – A Command line screenshot utility
Boxcutter is a simple command line-driven screenshot program for Microsoft Windows. Below you find a short script I wrote that will take a screenshot of the full screen every 20 seconds until 100 screenshots are saved. One usage scenario (I plan to use) is where you are running an OS installation within a Virtual Machine [...]
The GatherNetworkinfo.vbs Script
I recently read the whitepaper“Using Windows Script Host and COM to Hack Windows” that is mentioning the GatherNetworkinfo.vbs script I hadn’t paid attention to yet. The gathernetworkinfo.vbs script comes by default with every Windows 7 installation and is located within the C:\Windows\System32\ folder. The script does collect various networking information about the Windows 7 system [...]
Retrieve Windows Boot Time Script
Here’s a small batch script to get the Windows 7 Boot time shown in milliseconds. @echo off FOR /F "Tokens=4" %%a IN (‘%windir%\system32\wevtutil.exe qe Microsoft-Windows-Diagnostics-Performance/Operational /rd:true /f:Text /c:1 /q:"*[System[(EventID = 100)]]" /e:Events ^| FIND "Duration"’) DO SET BTIME=%%a ECHO Boot Time is : %BTIME% Inspiration for this script came from the article Monitor System Startup [...]
Extract Path with spaces from Registry value
I’ve been browsing through the Microsoft TechNet Forums to see whether I can learn something new or maybe give someone a helping hand. Now before I am going to show the solution I gave someone, let me first tell you this. It was just before having diner that I read the question and already thought [...]
Mute Windows System Volume
I came across a forum post where someone asked how to programmatically mute the Windows System volume. So this is what I have found: NirCmd NirCmd from NirSoft is a small command-line utility that contains many smart functions like muting and unmuting the system volume. To mute the system volume, simply run the following command [...]
Automated Microsoft Security Essentials Installation
For all those that frequently setup test machines and get tired of manually installing the Microsoft Security Essentials 2.0, here’s a straight forward batch file (even a regular user could use) that does the following: Downloads the Microsoft Security Essential 2.0 (x86) installation source file Installs Microsoft Security Essentials 2.0 Downloads and updates the virus [...]
ToolTip: SMB BranchCache deployment Diagnosis script
Just found this SMB BranchCache deployment diagnosis script on MSDN Code Gallery. The Test-SMBBranchCache script is used to find common SMB BranchCache misconfiguration issues. It allows a user to verify the SMB BranchCache server or client configuration. When run on a server, it can test the state of a BranchCache-enabled network share. When run on [...]
Windows XP Mode Deployment Sample Scripts
if you have watched the Windows XP Mode IT Pro Deployment Video, you might be interested in the scripts they’ve used to automatically install XP Mode and create virtual machines. You can download them from here

