PDA

View Full Version : Auto Answer? (All)



rwatson626
04-27-2004, 09:13 AM
Can I del a registry value and have it auto answer yes so I can put it in a login script. Thanks

it looks like this now:

REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run]
"Track-It! Workstation Manager Service Monitor"=-

dtriplet
04-28-2004, 08:06 AM
There are two ways to go:
1) Add a '/s' to your registry import command
Example: "regedit /s foo.reg" will silently import foo.reg to the registry

2) Download the command-line registry tool by Microsoft either from MS or from the registry downloads section of this site. Using this tool, you can directly edit the registry from scripts without the need for registry files.

Dan