Windows junction creator and reparse point viewer

To Display reparse point information:
	Junction.exe [-s] [-q] <file or directory>
	-q     Don't print error messages (quiet)
	-s     Recurse subdirectories
To Create or delete a NTFS junction point:
	Junction.exe [-d] <junction directory> [<junction target>]
	-d     Delete the specified junction
	example: junction d:\link c:\winnt
 
How to delete ALL junction points that are in Vista/7 installations?

If you are reinstalling Vista/7 and want to save C:\Users folder
but delete the undeletable (by windows explorer) junction points.
Make sure you rename your Users folder later to OldUsers so windows
can be installed in new folder.

Open Command Prompt
Now copy the following line and Right click Paste in the Command Prompt

for /f "tokens=* delims=" %x in ('dir "C:\Users" /b /a:l /s') do "%TEMP%\HBCD\Junction.exe" -d "%x"