|
Answer» Hi Guys,
I want to puckup the values of registry key i.e. [HKEY_LOCAL_MACHINE\SOFTWARE\Clients\Contacts\Address Book\] with a name=path abd the value of it is C:\LOG;
Here i am trying to collect the above path(C:\LOG) availble in batch file & want to use it as input to other command.
Note: I have Microsoft Windows 2000 [VERSION 5.00.2195]
Can any one help in this case me in this case...
Code: [Select]REG query "hklm\software\clients\contacts\address book" /V Path
You will get back 3 chunks of DATA: Name, Type and Value. You can use the for command to parse them.
Check out reg query /? from the command LINE for details.
Good luck.
|