How do I launch Windows\' RegEdit with certain path located, like \"HKEY_CURRENT_USER\\Software\\Microsoft\\VisualStudio\\8.0\", so I don\'t have to do the clic
HKEY_CURRENT_USER\\Software\\Microsoft\\VisualStudio\\8.0
Create a BAT file using clipboard.exe and regjump.exe to jump to the key in the clipboard:
clipboard.exe > "%~dp0clipdata.txt" set /p clipdata=input < "%~dp0clipdata.txt" regjump.exe %clipdata%
( %~dp0 means "the path to the BAT file" )