QUOTE (zakum @ Aug 4 2006, 02:44 PM)

I have been testing a new unattended in Virtual machine and I cannot get Epson printcd to work.
Here is my command line
REG ADD %KEY%\004 /VE /D "PrintCD" /f
REG ADD %KEY%\004 /V 1 /D "%PP%PRINTCD\SETUP.exe /s /sms setup.iss" /f
If I test it using a dos window on my pc it installs silently.
Is there anything wrong with my command?
Actually to run it as a RunOnceEx you will need to change it to this:
CODE
REG ADD %KEY%\004 /VE /D "PrintCD" /f
REG ADD %KEY%\004 /V 1 /D "SETUP.exe -s -f2\"%systemroot%\Printcd.log\""
reason being is when it is merged into the registry it stops importing at that first quote I believe (not really sure if that is what happens though, just a guess

).