How can I create a batch file to add these keys at startup?
I am trying to create a batch file that will install these reg keys without needing a confirmation each time. Basically I want them to run silently, but it's not a big deal if the batch is seen installing, just that no user interaction is needed. Here's what I have:
Create a .BAT file and put the following code in there:
regedit C:\batch\dispensing.reg /s
regedit C:\batch\Clinic.reg /s
regedit C:\batch\Beulah.reg /s
regedit C:\batch\Eclaims.reg /s
regedit C:\batch\Hospital.reg /s
regedit C:\batch\Timecared.reg /s
regedit C:\batch\Workstation.reg /s
AxFactor
ASKER
I did try "-s" but on a tut I found it told me to input it as "[-s]" and it didn't seem to work. When I just ran that script it would still ask for confirmation and it would install the key, but a follow up error would occure saying "cannot install -s" or something to that extent.
http://support.microsoft.com/kb/82821