Friday, September 26, 2008

Using netsh for IP config import/export

2 lines only:

netsh -c interface dump > filename

netsh -f filename

Ref: http://www.alibutt.com/?p=250

Some more about netsh to read at http://www.builderau.com.au/program/windows/print.htm?TYPE=story&AT=339272916-339024644t-320000994c

Friday, August 29, 2008

Saturday, August 2, 2008

How to check physical memory

1. winmsd.exe

2. pstat.exe (from resource kit)

3. memory.exe (http://www.savilltech.com/download/memory.zip)

From windowsitpro.com

Wednesday, April 16, 2008

Enable Java assertion

Just a soft reminder in case I want to use Java assertion. Given a class Cls:

> java -ea:Cls Cls

The comment will execute Cls which assertion enabled.

Thursday, April 10, 2008

Remove system folder in windows explorer

Some program will create a system folder which could be viewed in your windows explorer. Sometimes when uninstalling the program, they cannot remove the system folder for you. To remove it, find those system folder are in:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
\CurrentVersion\Explorer\MyComputer\NameSpace\

References are from technospot

Monday, March 17, 2008

IE progress bar keeps loading

Solution and discussion found in:

http://support.microsoft.com/default.aspx?scid=kb;en-us;Q320731

http://dangermoose.blogspot.com/2006/01/why-status-bar-keeps-loading-in.html

Sync multiple git repo at once

Use the following command in Linux will do the job:  ls -d RepoNames* | xargs -I{} git -C {} pull