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.

7-zip self extracting setup not installing to path

Featured Replies

Hey guys

 

Been reading this thread and I think I am doing it all correctly with double \\ and after executing my extracter it keeps saying it cannot find the install path so its not extracting to the location I am specifying in the config.txt file:

 

;!@Install@!UTF-8!
Title="PaperCut & Printer Installer"
InstallPath="C:\\Program Files (x86)\\PaperCut Installer"
BeginPrompt="Do you want to install the Papercut & Printer Installer?"
ExecuteFile="C:\\Program Files (x86)\\PaperCut Installer\\PrinterVBS.vbs"
;!@InstallEnd@!

 

Anyone able to help please?

 

  • 1 month later...

Note that:
InstallPath =     %ProgramFiles% <== equivalent to "C:\Program Files" in 32 bit and "C:\Program Files (x86)" in 64 bit
InstallPath = x86:%ProgramFiles% <== equivalent to "C:\Program Files" in 32 bit
InstallPath = x64:%ProgramW6432% <== equivalent to "C:\Program Files" in 64 bit

Also:
x86: will only execute on 32bit
x64: will only execute on 64bit
%%T variable is equal to the InstallPath

So you could try:

1 - If you choose to use "C:\Program Files" in 32 bit and "C:\Program Files (x86)" in 64 bit:

;!@Install@!UTF-8!
GUIMode="2"
Title="PaperCut & Printer Installer"
InstallPath="%ProgramFiles%\\PaperCut Installer"
BeginPrompt="Do you want to install the Papercut & Printer Installer?"
RunProgram="cscript %%T\\PrinterVBS.vbs"
;!@InstallEnd@!

2 - Or, If you choose to use "C:\Program Files" in 32 bit and also "C:\Program Files" in 64 bit:

;!@Install@!UTF-8!
GUIMode="2"
Title="PaperCut & Printer Installer"
InstallPath="x64:%ProgramW6432%\\PaperCut Installer"
InstallPath="x86:%ProgramFiles%\\PaperCut Installer"
BeginPrompt="Do you want to install the Papercut & Printer Installer?"
RunProgram="cscript %%T\\PrinterVBS.vbs"
;!@InstallEnd@!

Try and check if it works

Edited by SunLion

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.