Search found 456 matches

by Leo
Tue Sep 26, 2023 4:48 am
Forum: General Discussions
Topic: Installer File Icon
Replies: 3
Views: 1711

Re: Installer File Icon

Please send this icon file to our email (click Help / Support).
by Leo
Mon Sep 25, 2023 3:58 am
Forum: General Discussions
Topic: Installer File Icon
Replies: 3
Views: 1711

Re: Installer File Icon

Have you specified the icon in the Icon File field (page General / Output)?
by Leo
Tue Jul 25, 2023 1:55 am
Forum: General Discussions
Topic: User Information / Custom Components / Update Check
Replies: 1
Views: 2225

Re: User Information / Custom Components / Update Check

Hello, 1. Query a password is supported only during installation. The password/serial number provided by the user is stored in the variable <QueryKey> . You can save it in the Registry by adding this variable as a registry data. 2. You can do this by using the Components feature: https://www.actuali...
by Leo
Tue Jul 18, 2023 3:14 am
Forum: Comments, Feedback
Topic: Final File Size Bigger After Upgrade
Replies: 2
Views: 4533

Re: Final File Size Bigger After Upgrade

1. Make sure that the setup output folder (see page General / Output) is not the same or a part of the Source Folder (page Installation / Files and Folders). 2. Select the menu "Project / Check for duplicate files", as duplicate files may have been added to the project using the buttons &q...
by Leo
Sat Apr 15, 2023 4:03 am
Forum: Bug Reports
Topic: Template Editor Issues
Replies: 1
Views: 9317

Re: Template Editor Issues

Make sure your are running the Pro+ edition, and the option "Use Custom Settings" is enabled.
by Leo
Fri Mar 31, 2023 5:17 am
Forum: General Discussions
Topic: Run simple powershell script
Replies: 3
Views: 11701

Re: Run simple powershell script

Thank you for this information.
by Leo
Wed Mar 29, 2023 4:09 am
Forum: General Discussions
Topic: Run simple powershell script
Replies: 3
Views: 11701

Re: Run simple powershell script

Try this:

Code: Select all

File: <SystemDir>\cmd.exe
Parameters: /C powershell.exe "<InstallDir>\script.ps1"
by Leo
Mon Mar 06, 2023 4:02 am
Forum: General Discussions
Topic: Cleaning powershell script and timing
Replies: 2
Views: 2661

Re: Cleaning powershell script and timing

Hi, here are some recommendations: 1. make sure that the executing PowerShell scripts is not restricted on your computer 2. Try to launch the command as administrator 3. Try to put quotes to the paths: Parameters: /C powershell.exe "<SetupTempDir>\cleaningl.ps1" "<InstallDir>" Re...
by Leo
Wed Feb 01, 2023 2:38 am
Forum: General Discussions
Topic: Have Uninstaller remove a directory made by my app
Replies: 2
Views: 2990

Re: Have Uninstaller remove a directory made by my app

Add a command on the System /Commands:

Code: Select all

File: 		<SystemDir>\cmd.exe
Parameters: 	/C rmdir /S /Q "<AppData>\<AppName>"
Launch on OS: 	Any
Show: 		Hide
Timing: 	After UnInstallation