Categories: ProgrammingTechnology

Optimizing/Building Your Baseline Win XP Virtual PC Image

I am getting ready to check out all the neat tools in Scott Hanselman’s 2007 Ultimate Developer and Power Users Tool List for Windows. It’s a nice and comprehensive list of tools that covers just about all the tools a developer or power user may ever need. There are quite a few tools I have not used before.

Since I don’t necessarily want to install all of these tools to my everyday Windows installation, I am preparing a baseline Virtual PC image to install these tools into. My experience with Windows has taught me to try to keep it as clean as possible.

I found a great guide to optimize your baseline Windows XP virtual image from Dan’s Archive. It took about 30 minutes for me to go through the guide to build my optimized XP image (that’s not counting the time needed to install Windows XP Pro). If anyone is listening out there, I think this would be a good candidate for another “tool”.

With by baseline image ready, now I can make a backup copy of it and install away!! I feel like a kid at Christmas. Notepad2, Notepad++, Lutz Reflector, SlickRun, FireBug, ZoomIt, WinSnap, CodeRush, Refactor, FolderShare… so many new toys to play with, so little time.

Chinh Do

I occasionally blog about programming (.NET, Node.js, Java, PowerShell, React, Angular, JavaScript, etc), gadgets, etc. Follow me on Twitter for tips on those same topics. You can also find me on GitHub. See About for more info.

View Comments

  • More information about windows trouble shooting boot problems, system performance and system slow working and other problems etc..

  • It works with SQL Server 2008 and SQL Server 2008 R2. I just added this to the original post as well. SQL Server 2008 and SQL Server 2008 R2 are two drffeient releases of SQL Server.

Recent Posts

How to switch to a different Kubernetes context or namespace?

To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…

2 years ago

How to ssh into Kubernetes pod

kubectl exec -it <podname> -- sh To get a list of running pods in the…

2 years ago

How to Create a Soft Symbolic Link (symlink) in Unix/Linux

# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…

3 years ago

How to Configure Git Username and Email Address

git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…

3 years ago

Getting the Last Monday for Any Month with TypeScript/JavaScript

TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…

5 years ago

How to View Raw SMTP Email Headers in Outlook

I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…

5 years ago