codeblue Posted March 22, 2004 Posted March 22, 2004 Just switched from Main Batch to RunOnceEx. All is hunky dorie except Sun Java. This is what i have:REG ADD %KEY%\050 /VE /D "Sun Java VM 1.4.2" /fREG ADD %KEY%\050 /V 1 /D "\"%SYSTEM%\Software\SunJava\j2re-1_4_2_03-windows-i586-p.exe\" /s /v "/qn ADDLOCAL=jrecore IEXPLORER=1"Can someone tell me why it isn't working?
nartac Posted March 22, 2004 Posted March 22, 2004 here is mine and it works just fine:REG ADD %KEY%\065 /VE /D "Sun Java 1.4.2" /fREG ADD %KEY%\065 /V 1 /D "%CDROM%\applications\SunJava\j2re-1_4_2_03-windows-i586-p.exe /s /v/qn" /fyou also don't have that /f at the end
codeblue Posted March 22, 2004 Author Posted March 22, 2004 The /f just allows the reg entry to overwrite entries all ready thier. Put it in but it still didn't work.
Alanoll Posted March 22, 2004 Posted March 22, 2004 if %System% doesn't have any spaces in it, then you don't need quotes around %SYSTEM%\Software\SunJava\j2re-1_4_2_03-windows-i586-p.exeyou also forgot to escape the embedded quotes by /qn and end it with a quote.Fix line:REG ADD %KEY%\050 /V 1 /D "\"%SYSTEM%\Software\SunJava\j2re-1_4_2_03-windows-i586-p.exe\" /s /v \"/qn ADDLOCAL=jrecore IEXPLORER=1\""
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now