Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Creating a single .exe to customize install multiple programmes

Featured Replies

Hey guys,

I hope this is relevent.

I was wondering, I often end up installing the same programmes again and again on different computers, so, I was wondering, would it be possible to make one .exe file that encorporates various different .exes into one, but, more than that, would customize install them (since I usually customise my installs) - you know, not install all the parts, or install to non-default locations.

I've tried using Windows Installer Wrapper Wizard, which seems to be the way to go - but how do I make it unattended, without asking me questions about each program it installs?

Thanks a lot.

Edited by Doctor Trout


You will probably be best off just building a batch file that installs multiple programs in succession, utilizing switches as greatly as possible.

You may wanna check out the Application Installs section of the board, it deals with doing silent installs in batch files and more.

Or you can try a VBS script like this

Example Only

Dim Act, CT, Fso, Install
Set Act = CreateObject("Wscript.Shell")
Set Fso = CreateObject("Scripting.FileSystemObject")
Install = Array(Act.ExpandEnvironmentStrings("%Systemdrive%\SomeApp1.msi"),_
Act.ExpandEnvironmentStrings("%Systemdrive%\SomeApp2.exe"),_
Act.ExpandEnvironmentStrings("%Systemdrive%\SomeApp3.msi"),_
Act.ExpandEnvironmentStrings("%Systemdrive%\SomeApp4.exe"),_
Act.ExpandEnvironmentStrings("%Systemdrive%\Some App 5.exe"))
CT = 0
For Each strApp In Install
CT = CT + 1
If Fso.FileExists(strApp) Then
If CT = 1 Then
Act.Run(strApp & " Xname=Spad Xkey=XXXXX-XXXXX-XXXXX-XXXXX Xagent=0 Xlibrary=0 Xintex=1 Xmodernskin=1 Xaudio=1 Xvideo=0 Xvisual=1 Xextra=1 Xregopt=0 /qr"),1,True
Fso.DeleteFile(strApp)
End If
If CT = 2 Then : Act.Run(strApp & " /silent"),1,True : Fso.DeleteFile(strApp) : End If
If CT = 3 Then : Act.Run(strApp & " /quiet /noreboot"),1,True : Fso.DeleteFile(strApp) : End If
If CT = 4 Then : Act.Run(strApp & " /s /q"),1,True : Fso.DeleteFile(strApp) : End If
If CT = 5 Then : Act.Run(Chr(34) & strApp & " /s /q" & Chr(34)),1,True : Fso.DeleteFile(strApp) : End If
End If
Next

Edited by gunsmokingman

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.