Jump to content

RunOnceEx Registry Key in Windows Vista


Recommended Posts

Since there is very little to none information on the web regarding this topic, here are my findings:

How do i get the nice GUI on Vista during app install?

Fact: RunOnceEx key has be removed from Vista Registry

Workaround: Create the Key manually !

1. In W.S.I.M. insert a new Synchronous command in Pass 4 and point to your batch file (which can be either on your network share or locally) which will create the RunOnceEx key and add all the applications to be installed under that key.

post-197971-1252443067_thumb.jpg

2. Here's a sample of the code which will create the RunOnceEx key and add all apps in the registry:

@ ECHO OFF

REG ADD HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RunOnceEx

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

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



REG ADD %KEY%\005 /VE /D "Mapping Network Drive" /f
REG ADD %KEY%\005 /V 1 /D "NET USE Z: \\myserver\mysharename password /USER:mydomain\domainuser" /f

REG ADD %KEY%\010 /VE /D "Installing Microsoft Office 2007" /f
REG ADD %KEY%\010 /V 1 /D "\\myserver\myshare\Apps\Office07\setup.exe /adminfile Unattended.MSP" /f
REG ADD %KEY%\010 /V 2 /D "\\myserver\myshare\Apps\Capicom\CAPICOM-KB931906-v2102.exe /Q:A /R:N" /f

restart -r

EXIT

3. Add another synchronous command in Pass 7 to AutoLogon as Administrator and this will produce:

post-197971-1252443350_thumb.jpg

That's all!

Edited by engert100
Link to comment
Share on other sites


In a .cmd file

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "RunOnceEx - Testing Applications" /f
REG ADD %KEY% /v Flags /t REG_DWORD /d "20" /f

REG ADD %KEY%\1003 /VE /D "FileZilla 3.x.x" /f
REG ADD %KEY%\1003 /V 101 /D "CMD /C Start /Wait G:\APPS\FileZilla\Filezilla_autoit.exe" /f
REG ADD %KEY%\1003 /V 102 /D "CMD /C XCOPY \"G:\APPS\FileZilla\*.xml\" \"%USERPROFILE%\AppData\Roaming\FileZilla\" /I /H /R /Y" /f

REG ADD %KEY%\1014 /VE /D "WinRAR 3.90 X64" /f
REG ADD %KEY%\1014 /V 101 /D "CMD /C Start /Wait G:\APPS\Winrar_x64\winrar-x64-390.exe /s" /f
REG ADD %KEY%\1014 /V 102 /D "REGEDIT /S G:\APPS\Winrar_x64\Winrar_x641.reg" /f

rundll32.exe iernonce.dll,RunOnceExProcess
EXIT

Working in Vista 64 bit and in Windows Seven :whistle:

Link to comment
Share on other sites

you can put your runonce.cmd lines in the setupcomplete.cmd

so you would still be doing

REG ADD %REGKEY% (with REGKEY being pointed at runonceex)

the cute window is the titles you set, just the same.

Edited by iamtheky
Link to comment
Share on other sites

you can put your runonce.cmd lines in the setupcomplete.cmd

so you would still be doing

REG ADD %REGKEY% (with REGKEY being pointed at runonceex)

the cute window is the titles you set, just the same.

I see. So instead of adding the command line on Step 4 in W.S.I.M. you can add it in setupcomplete.cmd.

Either way works i guess.

My whole point with this thread was the RunOnceEx key which is removed from Vista.

This sucks because runonceEx is really nice in my opinion and there is very little info online about this topic.

I didn't know about setupcomple.cmd though, so thank you about that. I'll keep it in mind.

Link to comment
Share on other sites

The thing is that MS broke the iernonce.dll for a little while and also quit including the key by default. I copied a iernonce.dll from XP and used it quite awhile with same methods. My example above say's its alive and well in Vista SP2 64 bit and I have used it in Win Seven also.

I use both setupcomplete.cmd and FirstLogonCommands with Vista and Seven with no problems.

Am working on a ver of my app will better handle 64 bit right now.

Link to comment
Share on other sites

  • 10 months later...

How did you get the background colour to change when it autologged on and started to process the RunOnceEx reg key?

Mine is black.

Cheers

Neil

Since there is very little to none information on the web regarding this topic, here are my findings:

How do i get the nice GUI on Vista during app install?

Fact: RunOnceEx key has be removed from Vista Registry

Workaround: Create the Key manually !

1. In W.S.I.M. insert a new Synchronous command in Pass 4 and point to your batch file (which can be either on your network share or locally) which will create the RunOnceEx key and add all the applications to be installed under that key.

post-197971-1252443067_thumb.jpg

2. Here's a sample of the code which will create the RunOnceEx key and add all apps in the registry:

@ ECHO OFF

REG ADD HKLM\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RunOnceEx

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

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



REG ADD %KEY%\005 /VE /D "Mapping Network Drive" /f
REG ADD %KEY%\005 /V 1 /D "NET USE Z: \\myserver\mysharename password /USER:mydomain\domainuser" /f

REG ADD %KEY%\010 /VE /D "Installing Microsoft Office 2007" /f
REG ADD %KEY%\010 /V 1 /D "\\myserver\myshare\Apps\Office07\setup.exe /adminfile Unattended.MSP" /f
REG ADD %KEY%\010 /V 2 /D "\\myserver\myshare\Apps\Capicom\CAPICOM-KB931906-v2102.exe /Q:A /R:N" /f

restart -r

EXIT

3. Add another synchronous command in Pass 7 to AutoLogon as Administrator and this will produce:

post-197971-1252443350_thumb.jpg

That's all!

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...