Category

Windows

Micro$oft Windows

368 articles in this category

Windows Waitfor Command

March 22, 2013 2 min read

I recently discovered a command I didn't know about (actually 2 commands). I never knew about waitfor command! Man, this would have been useful in some of my…

Disable Address Bar in IE8

March 21, 2013 1 min read

Working on some thinstations with XP/IE8 today and needed to implement removal of Address/NavBar and could not find it in the GPO.  Came across someone who created the…

Office Configuration Analyzer Tool

March 21, 2013 2 min read

In March, Microsoft released OffCAT which is the Office Configuration Analyzer Tool. With OffCAT, you can take the following actions to help you detect possible problems with your…

Defrag SQL MDF and LDF on Server

March 21, 2013 2 min read

I wrote this script to defrag all the found MDF and LDF files on a server that I've been testing on.  It uses Sysinternal's Contig tool which is…

Microsoft Office Removal Tool

March 20, 2013 1 min read

There are Microsoft FixIts available to remove Microsoft Office Suites available at the Microsoft Support KB article:  http://support.microsoft.com/kb/928218

How to add a Static Route in Windows

March 15, 2013 1 min read

You can easily add a static route from the command line in Windows by entering the following. route add 10.0.0.0 mask 255.0.0.0 192.168.0.1 metric 2 To make this…

Windows Update error 8024402C

March 8, 2013 1 min read

Got this error recently on a Windows 7 32bit system while trying to do updates.  Previously, Automatic Updates were enabled and it ended up in a Installing 3…

Determine if Windows Update is Using WSUS

March 8, 2013 1 min read

Is my computer being updated by a WSUS server?  Here's a quick way to determine if your computer is using WSUS or not to provide Windows Updates to…

LDAP Filter to Exclude Disabled User Accounts

March 8, 2013 1 min read

I have been working on a Perl script using NET::LDAP to query against and Active Directory system and update an email application and I needed to have it…

Find File Duplicates with PowerShell

March 7, 2013 2 min read

I've recently been tasked with finding duplicate files across multiple shares on a network. I've looked at a few different free options out there that can do this…

Find Computer's Serial Number via Command Line

March 6, 2013 1 min read

Here are a few methods to retrieve the computer's serial number from the command line. Using WMIC wmic csproduct get IdentifyingNumber /format:list wmic bios get SerialNumber /format:list Using…