How to add publisher for setup
When we create a install program and we run it under windows 7 or vista , we see a Unknown for publisher in User Account control info , how we can change it ? ...
When we create a install program and we run it under windows 7 or vista , we see a Unknown for publisher in User Account control info , how we can change it ? ...
Hi I want to verify my installer , I have used this source to sign my installer : "C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\signtool.exe" sign /a /f "M:\cert\MyPFX.pfx" /t "http://timestamp.verisign.com/scripts/timstamp.dll" /p UFMPassped "M:\Setup.exe" It signed and timestamped without any error , but when I want to veri...
Hi , I Want to website with ShellExec: ShellExec('open', 'http://www.domain.com/test.htm' + ErrorCode, '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode); ErrorCode is int , Compiler say Type Mismatch , How can I solve This Problem ? ...
Hi, Through code, is there is any way to know whether an installation succeeded or failed?. I need to revert database updates incase the installation failed. Regards, Manju ...
Why my bitmap is not full screen size? BitmapImage1 := TBitmapImage.Create(Page); Its somehow made smaller by INNO ? ...
My setupper gives the ERROR access denied dialog when overwriting one DLL fails, its locked&in use sometimes. what is recommended procedure for doing this.. Can I somehow make INNO to compare if its even necessary to overwrite this DLL (size match?) ...
Inno wizard size seem to change between Win7 and XP I have a bitmap loaded on screen, but it does not fit to XP? Also I am trying to paint to specific place on picture (x,y) but the position changes between XP and Win7. I am using ScaleX() and Scaley() what options do I have? how to force scaling bitmap properly or how to detect wind...
how to detect in which country / region installer is running (offline) ...
Hello, I am have an installer running for a shareware program that has a time limit. The installer saves an obscure key in the windows registry with the install date, and I do not want this key to be removed when uninstalling, so that the user cannot simply uninstall and reinstall the program in order to circumvent the time limit. I ha...
I there any way to force user to connect to internet , during installation ? ...
inno wizard page size differs between XP and Win7, its 100pix narrow in xp is there exact knownledge how this works? Should I have the different backgound images for xp and 7, the strech feature makes BMP image look bad ...
I am using Inno Setup for the first time. When I start the program I am presented with a blank script page. Is scripting the only way you can create a setup package? Is there anything else? ...
I'm trying to use the RegSetKeySecurity() function of Windows API, but the pSecurityDescriptor parameter is a pointer. What is "pointer" (PVOID) data type equivalence in Inno Setup? Thanks in advance ...
Im using inno setup 5.3 latest to package my vb.net application. Im setting Environment variables during installation to the windows system. It needs a reboot of the system to implement the changes made in the Environment variables. How do i prompt the user to reboot the system so as to implement changes ( as done in many applications). ...
how to make check box that allow user to run application after installation . ...
I'm using Inno Setup with two components: one for 32-bit machines and one for 64-bit. These will run on XP/Vista/Win7. [Components] Name: Bin/32; Description: 32-bit; Types: full; Flags: dontinheritcheck Name: Bin/64; Description: 64-bit; Types: full; Flags: dontinheritcheck Currently: Both Components are ticked by default when runn...
I'm working on an installer using Inno, and I need to choose between two applications the installer should run based on the user's selection of components and/or tasks. The Logic flow should work like this: Component 1 -> application A Component 1 with Task 1 -> application B Component 2 -> application B Component 3 -> ...
I recently compiled a vb6 application with inno setup that when i install, works fine on winxp when i tried it on vista, i got error message i noticed it was a dll registration problem, so i try to register the dll manually to see if it corrects the problem. when i tried that, i got this error is there anyway i can correct the prob...
WSLK requires that the unins000.exe, generated by Inno, is signed. The only way I devised to do that is by unpacking the installer, signing and then repacking it again. Isn't there an easier way? I have found an Inno Unpacker, but I'm not sure about how to repack it. ...
Hello, is it possible to start a Inno Setup, that waits until the child process has finished? The current systems default behaviour is that the setup starts the "real" setup in temporary folder and goes further in command line. My aim is that the parent process should wait until the child finishes to read out the return code in errorlev...