Hey there! I (think) I have a problem. I wrote a RunOnceEx.cmd, but when I test it only the first line is added to the registry. How come? Why don't I see the other lines? This is what my file looks like: cmdow @ /HID@echo off
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "Applicatie Installatie" /f
REG ADD %KEY%\001 /VE /D "Adobe Reader 6" /fREG ADD %KEY%\001 /V 1 /D "%systemdrive%\install\Adobe\AdbeRdr60_enu_full.exe -p\"-s /v\"/qn\"\"" /f
REG ADD %KEY%\005 /VE /D "Daemon Tools" /fREG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\DaemonTools\dt346.exe /s" /f
REG ADD %KEY%\015 /VE /D "DirectX 9.0b" /fREG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\DirectX9b\DX9NTopk.exe" /f
REG ADD %KEY%\020 /VE /D "WinRAR 3.30" /fREG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\WinRAR\wrar330nl.exe" /f
REG ADD %KEY%\025 /VE /D "K-Lite Mega Codec Pack 1.01" /fREG ADD %KEY%\025 /V 1 /D "%systemdrive%\install\K-LiteCodecs\klmcodec101.exe /silent" /f
REG ADD %KEY%\030 /VE /D "MSN Messenger 6.1" /fREG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\MSNMessenger\MsnMsgs.msi /QB" /f
REG ADD %KEY%\040 /VE /D "Registry Tweaks" /fREG ADD %KEY%\040 /V 1 /D "REGEDIT /S %systemdrive%\install\regtweaks.reg" /fI also have some doubt about the \'s in the adobe line can any1 confirm or correct me? Thanks in advance....