Quantcast
Channel: Indigo Rose Software Forums - Forums
Viewing all 2105 articles
Browse latest View live

Silent Install - AppFolder problem

$
0
0
Folks, please help me solve this problem. My standard install works correctly. My silent install is checking the existence of setupvars.ini file, but not acting on %AppFolder%. The Setup Log does not mention it.

For this example, all my files are in the C:\ folder

install.bat:
myproginstall.exe /S:"setupvars.ini"

setupvars.ini: (ASCII file, not UTF-8 etc.)
[SetupValues]
%AppFolder% = C:\zzz (a new folder)

Set up log:
[06/23/2015 06:56:56] Success Setup started: C:\myproginstall.exe
[06/23/2015 06:56:56] Notice Setup engine version: 9.3.1.0
[06/23/2015 06:56:56] Notice Product: myprog, version 3.90.2
[06/23/2015 06:56:56] Success Language set: Primary = 9, Secondary = 1
[06/23/2015 06:56:56] Success Verify archive integrity
[06/23/2015 06:56:56] Skipped Date expiration check
[06/23/2015 06:56:56] Skipped Uses expiration check
[06/23/2015 06:56:56] Success System requirements check
[06/23/2015 06:56:56] Success Include script: _SUF70_Global_Functions.lua
[06/23/2015 06:56:56] Notice Start project event: Global Functions
[06/23/2015 06:56:56] Success Run project event: Global Functions
[06/23/2015 06:56:56] Notice Start project event: On Startup
[06/23/2015 06:56:56] Success Run project event: On Startup
[06/23/2015 06:56:56] Notice Start project event: On Pre Install
[06/23/2015 06:56:56] Success Run project event: On Pre Install
[06/23/2015 06:56:56] Success Free space check on drive: C:\
[06/23/2015 06:56:56] Success Set uninstall data folder: C:\wrong\myprog-uninstall
....

the uninstall is specified to be in %AppFolder% and so the uninstall data folder should be: C:\zzz\myprog-uninstall

C:\zzz is not created during the setup.

Any suggestions?

uninstall dll

$
0
0
Is there a way to excluse "lua5.1.dll" from an uninstall?

reg entry on Windows 7 64-bit

$
0
0
Why are the values for the registry entries in Windows 7 not registered?

here's an example:
Registry.SetValue (HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\MultiKey\\Dumps\\00007 50A", "Seed3", "c84a" REG_DWORD);

c84a = 0 >>> Why is the entry 0 ???

Setting Firewall by Registry

$
0
0
How can I get this to work?
I'm trying to replace "Data" in |App=Data| in the below code with no luck.

Code:

Data = SessionVar.Expand("%AppFolder%\\Setup.exe");

Registry.SetValue(HKEY_LOCAL_MACHINE,"SYSTEM\\ControlSet001\\Services\\SharedAccess\\Parameters\\FirewallPolicy\\FirewallRules","{91F7E1FE-37CF-4C24-8FA9-55380C8DC1CE}","v2.24|Action=Allow|Active=TRUE|Dir=In|Protocol=6|Profile=Private|Profile=Public|App=Data|Name=Setup.exe|",REG_SZ);

batch command

$
0
0
Allow the possibility a batch command in Setup Factory integrate and run ????
(on or off the test mode in Windows 7/8):huh

Are Multi-Part ZIP files handled by ZIP Plugin (zip.extract)?

$
0
0
I have a project which is downloading (using HTTP) around 40 ZIP files of about 100Mb each.

The ZIP files are a multi-part archive.

The "zip.extract" function does not seem to like the format of these files (created with 7-Zip).

Should the "zip.extract" function be able to handle multi-part ZIP archives?

Adding an editable grid

$
0
0
Is it possible to add a grid like this to a "custom screen"?
Attachment 12785
The text cells would need to be editable; the "delete" buttons (shown in the last column) would need to be clickable.

Thanks,
Eliezer
Attached Images

Setup Factory 9.2 64 bit

$
0
0
I've got a 32 bit setup made by Setup factory 9.2 and those works fine. Now i gotten the 64 bit version builded for the same software and found out that the %AppUserProfile% variable is empte in the 64 bit?
The same code in 32 bit works just fine.

Can anyone help me?


Windows public folder

$
0
0
How would I go about creating a folder inside the common/public documents folder of a user using setup factory 9?

system reboot

$
0
0
to the system to restart there are system reboot.

what command in place system reboot I can for Windows 8.1 to use to restart in the setting range for unsigned driver in Windows 8.1 to come ??

Keyboard navigation of installs

$
0
0
Hi all, I know this is a long shot, but for some reasons there are some systems I need to run our installer on that don't have a mouse.

The only part of the setup wizards you can access without a mouse are the wizard buttons. This means you can't do things like select which components to install

I tried adding an ampersand to the label used above the control that selects the components, and that allowed me to select the checklist control, but space bar doesn't uncheck/check the checkboxes either, and the ampersand is visible as well instead of becoming an underline as per normal UI.

What are my chances of getting this addressed? Is there any workaround?

Thanks

Adrien

password request!

$
0
0
@ Together,
I can with one command (b) passed a password?

prerequisite:

a) data packet (setup = daten.exe) was provided with a password
b) Setup (setup.exe) to the password contained in a) and handed over when you run!

I hope that the Google translation has translated of course!

Kaspersky AV detects irsetup.exe as PDM:Trojan.Win32.Generic.

$
0
0
like the title says.

This is for SF9.5, we deployed our first installer based on this version of SF yesterday.

You may want to contact Kaspersky Labs about it.

Adrien

Needing the updater for V6

$
0
0
Sorry I know this is not the correct place for this but all the other groups are closed. I recently moved my build server and need to update V6.0.0.4 to V6.0.1.4 but the automatic updater is not working. Can someone please point me to an offline installer for this update please.

I am unable to raise a support ticket as the registered email address is long since retired.

Silent Unistall using INI file for systems variables

$
0
0
Hi,

I am using Setup Factory 9.5 to create my setup. I would like to use the silent uninstall command line to pass in users options as follows:
"C:\...\Uninstall.exe" "/U:C:\...\uninstall.xml" "/S:C:\...\UnistallOptions.ini"
The UnistallOptions.ini contains the following:
[UninstallValues]
%Delete_All_Settings%=1
In the uninstall Actions - On Post Uninstall I have added:
Code:

if _SilentInstall == true then
        deleteSettings = SessionVar.Get("%Delete_All_Settings%");
        SetupData.WriteToLogFile( "deleteSettings = " .. deleteSettings .. "\r\n" );
        if deleteSettings == "1" then
                deleteSettings = true;
        else
                deleteSettings = false;
        end
end

But deleteSettings always = 0. It appears the specified ini file is ignored or I am using the wrong method to get the entry.

What am I doing wrong?

Thanks,
Adrian.

Win 7, Win 8.1 and Win10 loses uninstall Icons

$
0
0
Hello,

my Application installer was created with Setup-Factory-9.
But since I use Setup-factory-9 i have always the same problem with my uninstall-icon under windows. The problem is, that windows loses the uninstall icon/app and I can only uninstall my application with an Cleaner/Uninstaller like "SlimCleaner" or other.

With Win 7 windows loses only sometimes the icon/app, but with win 8.1 and win 10. The icon is direct after installation available, but some minutes later its gone, where ever.

Is this problem known and is there a solution for that. The result of this problem is, that the Uninstaller cannot be used.

I hope anyone can help, because I looked for a long time for a solution.

Thanks in advance.

Windows compatibility mode

$
0
0
Is there a way in Setup Factory to test to see if the user is running your setup in windows compatibility mode?

Security - Password - Windows 10 64-Bit

$
0
0
Hello there,
I have a setup provided with a password and have the problem do not enter a password under Windows 10 64-bit professional and thus the installation can not complete that the end user!

SP9 - Read of umlauts not correct

$
0
0
Hello,

in my installer (created with SP9) are editField vor e.g. firstname and lastname.
Butt if somebody write umlauts in the textfield, this will not read correct from the installer. After installation i write this values of the textfield into a textfile and there are the values also wrong.

I have looked in this forum and there a many threads for that, but i didn't found a solution for that.

Is there are any way to read umlauts correct?

Thanks in advance

Please insert Disk # Message

$
0
0
I'm working with some very large data (10+GB) which spans multiple discs. Because we sign the installer we split the data up into 1GB parts, spread over the discs.

When the installer finishes one disc it asks to look for disk #X, but it's actually looking for file #X.

Is there anyway to change this message to just say "Insert next disk." I know there is a way to change the language XML file, but this isn't ideal.

Any ideas?
Viewing all 2105 articles
Browse latest View live