Rajat
Joined: 28 Mar 2004 Posts: 1717
|
Posted: Sun Apr 25, 2004 10:20 am Post subject: Registry Scout |
|
|
You think going anywhere in registry is easy? think again! try a key like this one:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2\{43020c52-f4b3-11d7-96e1-806d6172696f}
beleive me ...there r worse!!
now try it with this:
| Code: | InputBox, path, Registry, Enter Registry Path
ifwinnotexist, Registry Editor,, Run, %windir%\Regedit
ifequal,path,, exit
StringReplace, path, path, HKLM, HKEY_LOCAL_MACHINE
StringReplace, path, path, HKCU, HKEY_CURRENT_USER
StringReplace, path, path, HKU, HKEY_USERS
StringReplace, path, path, HKCC, HKEY_CURRENT_CONFIG
StringReplace, path, path, \\, \, A
StringReplace, path, path, {, +[, A
StringReplace, path, path, }, +], A
winactivate, Registry Editor
winwaitactive, Registry Editor
send, {home}
Loop, Parse, path, \
{
send, {right}
sleep, 200
send, %A_LoopField%
}
|
_________________
 |
|