Jump to content

[Video] How To make Silent Switch Installers


ricktendo

Recommended Posts

  • 3 months later...

Thank you very much !!!

I have a question : I'm a beginner and I wonder : How integrated a software who has needed keys registery of Windows?

with your Silent Maker ????

And after, How to made into the CD install of Windows XP ???

I don't know ....

Maybe, explain into your video part 4 ???? But I haven't find it !!!

I'm sorry to disturbe you, but I'm trying understand!!!

Waiting the reply, Thanks a lot for your Very God JOB !!!!!

And excuse me for my english, is not good ...

Thanks

Link to comment
Share on other sites

If you want to make a addon out of your silent switch for nLite its pretty easy:

- Create a new folder named svcpack and place your silent installer you made with this tuto into it

- Create a new text file, rename it Entries_whatever.ini (where whatever is you can put what you like example Entries_Firefox.ini)

- Copy & Paste the following into your Entries_*.ini and fill in the details

[general]
builddate=2009/10/05
description=Description of the program goes here.
language=English
title=Program Name
version=1.0.1
website=http://www.example.com

[EditFile]
SVCPACK.INF,SetupHotfixesToRun,AddProgram

[AddProgram]
NameOfInstaller.exe

- Now you can compress the Entreis_*.ini and the svcpack folder together into a addon that nLite will be able to read and integrate

Tip: you can download a already pachaged nlite addon so you can see how its done http://www.wincert.net/forum/index.php?/forum/105-svcpack-addons/

If you want to add reg entries you can compress a .reg file along with your regular installer (in the 7zip sfx) and use something like this in your config.txt (assuming your reg file is named NameOfReg.Reg)

;!@Install@!UTF-8!
RunProgram="Installer.exe /X"
RunProgram="regedit /s NameOfReg.Reg"
GUIMode="2"
;!@InstallEnd@!

After the sfx extracts and installs your program silently it will apply the .reg file afther the program finishes installing (read the .chm included in ssmaker for many more examples like this)

Link to comment
Share on other sites

  • 2 weeks later...

how to use a .iss in config.txt?

isn't iss is an extension for

inno setup ?

if i wasn't mistaken you need to use the Inno setup and compile the exe with it

and use /S to make it silent

Link to comment
Share on other sites

  • 1 month later...

hi rick! parts 2 & 3 rs links broken. could there be other dl sites other than rs?

orca link is broken too. tried looking for it in shark's page, but it's no longer there. only the link provided by Rigamortis works. thanks!

Edited by kiki burgh
Link to comment
Share on other sites

RunOnceEx config.txt example:

;!@Install@!UTF-8!
RunProgram="WindowsDefender.msi /qn TRANSFORMS=NoLaunch.mst /norestart"
AutoInstall="hidcon:reg add HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\windefender /v Install /d %%S\\WindowsDefender.exe /f"
GUIMode="2"
;!@InstallEnd@!

Rick in the new sfx there is a new variable called %%M it's for the Sfx name

so you can make it

;!@Install@!UTF-8!
RunProgram="WindowsDefender.msi /qn TRANSFORMS=NoLaunch.mst /norestart"
AutoInstall="hidcon:reg add HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\windefender /v Install /d %%S\\%%M /f"
GUIMode="2"
;!@InstallEnd@!

that since 1.3 Beta (Build 1095)

Link to comment
Share on other sites

RunOnceEx config.txt example:

;!@Install@!UTF-8!
RunProgram="WindowsDefender.msi /qn TRANSFORMS=NoLaunch.mst /norestart"
AutoInstall="hidcon:reg add HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\windefender /v Install /d %%S\\WindowsDefender.exe /f"
GUIMode="2"
;!@InstallEnd@!

Rick in the new sfx there is a new variable called %%M it's for the Sfx name

so you can make it

;!@Install@!UTF-8!
RunProgram="WindowsDefender.msi /qn TRANSFORMS=NoLaunch.mst /norestart"
AutoInstall="hidcon:reg add HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\RunOnceEx\\windefender /v Install /d %%S\\%%M /f"
GUIMode="2"
;!@InstallEnd@!

that since 1.3 Beta (Build 1095)

Nice, thanks

Link to comment
Share on other sites

  • 4 weeks later...
  • 3 weeks later...
  • 1 month later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...