Jump to content

Easy RunOnceEx.cmd


eagle00789

Do you want it to be easy to create RunOnceEx.cmd  

2,055 members have voted

  1. 1. Do you want it to be easy to create RunOnceEx.cmd

    • Yes
      1676
    • No
      33
    • What whould be the function?
      60
    • Maybe
      61


Recommended Posts


On the website, it now is possible to add your own programs to the database.

WARNING: please be sure to check if it isn't already in the database and also check the user added programs list. (that is the list of programs that i have to add to the main-program database)

Link to comment
Share on other sites

Hmm, thx for the prog, but it seemes that it has some problem in parsing multiple lines. For example if you try to open RunOnceEx.cmd from http://unattended.msfn.org/intermediate/me...s/runonceex.htm you will see that it makes an error on entries like

REG ADD %KEY%\010 /VE /D "Alcohol 120" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\alcohol\setup.exe /qn" /f
REG ADD %KEY%\010 /V 2 /D "REGEDIT /S %systemdrive%\install\alcohol\register.reg" /f

Link to comment
Share on other sites

Hmm, thx for the prog, but it seemes that it has some problem in parsing multiple lines. For example if you try to open RunOnceEx.cmd from http://unattended.msfn.org/intermediate/me...s/runonceex.htm you will see that it makes an error on entries like

REG ADD %KEY%\010 /VE /D "Alcohol 120" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\alcohol\setup.exe /qn" /f
REG ADD %KEY%\010 /V 2 /D "REGEDIT /S %systemdrive%\install\alcohol\register.reg" /f

Please make sure that u are using version 2.6.1.0 that is the only correct working version. (just checked it with the file from your link). so nothing is broken in that version......

Link to comment
Share on other sites

untitled13wx.gif

File which i open

cmdow @ /HID
@echo off

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing Applications" /f

REG ADD %KEY%\005 /VE /D "Adobe Reader 6" /f
REG ADD %KEY%\005 /V 1 /D "%systemdrive%\install\AdobeReader6\AR6.msi /qn" /f

REG ADD %KEY%\010 /VE /D "Alcohol 120" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\alcohol\setup.exe /qn" /f
REG ADD %KEY%\010 /V 2 /D "REGEDIT /S %systemdrive%\install\alcohol\register.reg" /f

REG ADD %KEY%\015 /VE /D "Diskeeper 8" /f
REG ADD %KEY%\015 /V 1 /D "%systemdrive%\install\DiskeeperPro_8.0.459.exe /s /v/qn" /f

REG ADD %KEY%\020 /VE /D "DU Meter 3" /f
REG ADD %KEY%\020 /V 1 /D "%systemdrive%\install\dumeter3.exe /VERYSILENT /SP-" /f

REG ADD %KEY%\025 /VE /D "IsoBuster 1.5" /f
REG ADD %KEY%\025 /V 1 /D "%systemdrive%\install\IsoBuster1.5.exe /VERYSILENT /SP-" /f
REG ADD %KEY%\025 /V 2 /D "taskkill /F /IM isobuster.exe" /f

REG ADD %KEY%\030 /VE /D "Kerio Personal Firewall 2.1.5" /f
REG ADD %KEY%\030 /V 1 /D "%systemdrive%\install\KPF\Setup.exe -s" /f

REG ADD %KEY%\035 /VE /D "MDAC 2.7 SP1 Hotfix" /f
REG ADD %KEY%\035 /V 1 /D "%systemdrive%\install\mdac\mdac.cmd" /f

REG ADD %KEY%\040 /VE /D "MSN Messenger 6.1" /f
REG ADD %KEY%\040 /V 1 /D "%systemdrive%\install\MSN_Messenger_6.1.0202.msi /qn" /f

REG ADD %KEY%\045 /VE /D "Nero Burning ROM 5.5" /f
REG ADD %KEY%\045 /V 1 /D "REGEDIT /S %systemdrive%\install\nero\register.reg" /f
REG ADD %KEY%\045 /V 2 /D "%systemdrive%\install\Nero\Nero551054.exe /silent /noreboot" /f

REG ADD %KEY%\050 /VE /D "Importing Registry Tweaks" /f
REG ADD %KEY%\050 /V 1 /D "REGEDIT /S %systemdrive%\install\regtweaks.reg" /f

REG ADD %KEY%\055 /VE /D "Cleaning Up and Rebooting" /f
REG ADD %KEY%\055 /V 1 /D "%systemdrive%\install\cleanup.cmd" /f

EXIT

And runonce cmd creator transofrm it in this mode if i save:

cmdow @ /HID
@Echo Off

FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\win51ip.SP2 SET CDROM=%%i:

SET PP=%cdrom%\Apps\

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing Applications" /f

REG ADD %KEY%\000 /VE /D "Adobe Reader 6" /f
REG ADD %KEY%\000 /V 1 /D "%PP%%systemdrive%\install\AdobeReader6\AR6.msi /qn" /f
REG ADD %KEY%\000 /V 2 /D "REGEDIT /S %systemdrive%\install\alcohol\register.reg" /f

REG ADD %KEY%\001 /VE /D "Diskeeper 8" /f
REG ADD %KEY%\001 /V 1 /D "%PP%%systemdrive%\install\DiskeeperPro_8.0.459.exe /s /v/qn" /f

REG ADD %KEY%\002 /VE /D "DU Meter 3" /f
REG ADD %KEY%\002 /V 1 /D "%PP%%systemdrive%\install\dumeter3.exe /VERYSILENT /SP-" /f
REG ADD %KEY%\002 /V 2 /D "taskkill /F /IM isobuster.exe" /f

REG ADD %KEY%\003 /VE /D "Kerio Personal Firewall 2.1.5" /f
REG ADD %KEY%\003 /V 1 /D "%PP%%systemdrive%\install\KPF\Setup.exe -s" /f

REG ADD %KEY%\004 /VE /D "MDAC 2.7 SP1 Hotfix" /f
REG ADD %KEY%\004 /V 1 /D "%PP%%systemdrive%\install\mdac\mdac.cmd" /f

REG ADD %KEY%\005 /VE /D "MSN Messenger 6.1" /f
REG ADD %KEY%\005 /V 1 /D "%PP%%systemdrive%\install\MSN_Messenger_6.1.0202.msi /qn" /f
REG ADD %KEY%\005 /V 2 /D "%systemdrive%\install\Nero\Nero551054.exe /silent /noreboot" /f

REG ADD %KEY%\006 /VE /D "Importing Registry Tweaks" /f
REG ADD %KEY%\006 /V 1 /D "%PP%REGEDIT /S %systemdrive%\install\regtweaks.reg" /f

REG ADD %KEY%\007 /VE /D "Cleaning Up and Rebooting" /f
REG ADD %KEY%\007 /V 1 /D "%PP%%systemdrive%\install\cleanup.cmd" /f

REG ADD %KEY%\008 /VE /D "" /f
REG ADD %KEY%\008 /V 1 /D "%PP%" /f

REG ADD %KEY%\009 /VE /D "" /f
REG ADD %KEY%\009 /V 1 /D "%PP%" /f

REG ADD %KEY%\010 /VE /D "" /f
REG ADD %KEY%\010 /V 1 /D "%PP%" /f

EXIT

Link to comment
Share on other sites

<snip>

File which i open

<snip>

And runonce cmd creator transofrm it in this mode if i save:

<snip>

Release Cliënt 2 has been released and is downloadable by clicking on the link in my signature and the choose Where to get? on the left ide.

Please report any bugs on my project website (see the second link in my signature)

Link to comment
Share on other sites

  • 3 weeks later...

[quote name='eagle00789' post='169980' date='Aug 17 2004, 10:00 PM']Thx, but i'm happy do create it. i have no use for it anymore, because i already switched to xplode (for wich i'm going to create an xml-writer program)[/quote]

Hey Eagle,

Any news on your xml-writer to work with xplode yet? :)

Link to comment
Share on other sites

if you have the latest RunOnceEx.cmd Creator, you can save as .xml file for XPLode. just choose save and then save as type is XPlode file
Only loading of an XPlode file is still not supported.
Also, i don't know yet if there are any major changes to the new file-layout with the newwest XPlode, because im still on an old version.
Link to comment
Share on other sites

This is an amazing program i love it!!
a suggestion....
can u make it so that you can just drag a runonceex.cmd into the program window and it loads it? i would find this very useful as im sure others would
thanks

EDIT: also just found out that copernic desktop search (copernicdesktopsearch.exe) installs silently with /s switch :)

Edited by eyeball
Link to comment
Share on other sites

  • 3 weeks later...
  • 3 weeks later...
Hello,

I dunno why, it doesn't seem to work with kazaa lite resurrection 0.7.6E

I mean, the /silent switch doesn't work, could you update your database with the new switch ?(which i don't know !!)

Thanks, yur program is Awesome :-)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...