Search found 462 matches

by Leo
Sat Apr 24, 2010 2:07 pm
Forum: General Discussions
Topic: How to add a desktop shortcut icon
Replies: 2
Views: 10235

Re: How to add a desktop shortcut icon

Go to the "System-Shortcuts" page, clik the "Add" button and type the following:

Code: Select all

Target File: select a file
Shortcut Destination: <Desktop>
Icon File (optional): Click Browse button and select an icon file.
by Leo
Fri Apr 09, 2010 3:04 pm
Forum: General Discussions
Topic: 64 bit installations
Replies: 1
Views: 8608

Re: 64 bit installations

Yes, Actual Installer supports 64-bit versions of Windows.
by Leo
Fri Apr 02, 2010 5:05 am
Forum: General Discussions
Topic: Signing (authenticode) the setup file
Replies: 3
Views: 14473

Re: Signing (authenticode) the setup file

Yes, you can sign a setup file created in Actual Installer with "SignTool.exe".

Please visit the following link for more details:
http://msdn.microsoft.com/en-us/library ... .100).aspx
by Leo
Thu Apr 01, 2010 5:26 pm
Forum: General Discussions
Topic: Does auto update work?
Replies: 2
Views: 10204

Re: Does auto update work?

Actual Updater supports silent mode. In this mode, the updater will automatically check for updates and prompt the user to download it, if available.
To use this silent mode you need to launch Actual Updater from your application with parameter /S:

Code: Select all

Updater.exe /s
by Leo
Sat Mar 20, 2010 1:36 pm
Forum: General Discussions
Topic: How to let Windows know the location of the driver file?
Replies: 3
Views: 12465

Re: How to let Windows know the location of the driver file?

Unfortunately, Actual Installer doesn't have this feature to install drivers.
But you can write an app to install your driver and then add the command to launch this app after installation.
by Leo
Sat Mar 20, 2010 12:24 pm
Forum: General Discussions
Topic: How to let Windows know the location of the driver file?
Replies: 3
Views: 12465

Re: How to let Windows know the location of the driver file?

In which folder you have installed driver files?
by Leo
Mon Mar 08, 2010 4:01 pm
Forum: General Discussions
Topic: Adding icon to taskbar not working in Windows 7
Replies: 2
Views: 11195

Re: Adding icon to taskbar not working in Windows 7

Windows 7 does not support this "Pin to Taskba" feature if the file name contains the following words:
install
setup
uninstall


So you just need to rename the Actual Installer shortcut to: e.g. Actual Inst and then pin it to the taskbar.
by Leo
Thu Feb 25, 2010 5:49 am
Forum: General Discussions
Topic: Uninstall Issue
Replies: 1
Views: 9140

Re: Uninstall Issue

There are two solutions:
1. Just select the "Force Uninstall" option on the "Installation-Uninstallation" tab.
2. Using the command you have specified, but with a little change:
Parameter: /C rd /s /q "<InstallDir>"
by Leo
Fri Feb 12, 2010 5:35 pm
Forum: General Discussions
Topic: How to create an empty folder
Replies: 2
Views: 14470

Re: How to create an empty folder

To create an empty folder you just need to add the following command on the System/Commands tab:

Code: Select all

Command: <SystemDir>\cmd.exe
Parameters: /C mkdir "<InstallDir>\New Folder"
Show: Normal
Timing: After Installation
by Leo
Fri Jan 29, 2010 4:09 am
Forum: General Discussions
Topic: Adding directory to Windows Path
Replies: 1
Views: 9261

Re: Adding directory to Windows Path

Yes, use the following path for File Destination:

Code: Select all

<WindowsDir>\My Dir
To view all installer variables click here.