Questions tagged [install-forge]

6 questions
1
vote
0 answers

How to use InstallForge environment variables to set registry values

I would like to use %IF_INSTALLPATH% to set a Registry value with InstallForge, but it doesn't resolve the variable. So the registry value created is "%IF_INSTALLPATH%\bin" instead of "C:\MyApp\bin". How can I use %IF_INSTALLPATH% in setting a…
Bungles
  • 1,969
  • 2
  • 25
  • 54
0
votes
0 answers

File Permission InstallForge

I have written a Python program, this must change the contents of a file for a function. This also works so far, but I have now converted this with Auto-py-to-exe into a folder, and also the required file is inserted. When I open this exe file,…
Tom J
  • 1
  • 1
0
votes
0 answers

Permission error writing to config file after installing python application using InstallForge

I packed a python applications for Windows with PyInstaller and InstallForge and installed in the program directory. Besides the exe file there is also a config file in the application directory. When I run the the application from the exe created…
Mazze
  • 383
  • 3
  • 13
0
votes
1 answer

How to add a directory to path with InstallForge

I am trying to publish my application using InstallForge, but as it is a command line app, I want to add its install directory to PATH. I already tried using setx, but it didn't work. I already googled it, but with no helpful results.
BlackBird
  • 23
  • 5
0
votes
0 answers

Why installers made with Installforge/InnoSetup are showing false positive?

I made an application in python and converted it to exe using Pyinstaller which is tested clean. I tried making an installer for the exe using both installforge and inno setup but it shows a false positive message for B!ml type virus like Wacatac…
Akascape
  • 219
  • 2
  • 11
0
votes
0 answers

How can i make installer which install python?

I made a simple selenium script. I want make installer for this script which will install python3.9 on PC. I use InstallForge where I can call commands in cmd. I thought that exist command wchich install python but I didn't found it. How can i make…