install creator needed

0 favourites
  • 9 posts
From the Asset Store
Game rank and league badge creator mega asset pack
  • Im looking for install creator but he should have option to make a autostart in windows ( game must run automaticaly when you log in desktop)

  • Download Inno Setup innosetup.com

    Use the 'Script Wizard' to generate your script,

    at the end when it asks you if you would like to compile it now choose no.

    For starting on login ;

    stackoverflow.com/questions/7490249/inno-setup-how-can-i-make-my-program-run-when-a-user-logs-in-to-windows

  • Noncentz705 Your second link teach how do autostart manually, right?

  • Yep<img src="smileys/smiley2.gif" border="0" align="middle" /> but I would suggest giving users a choice on whether or not to run the app on startup. What I've done here is opened components.iss in the examples folder and modified it slightly; I've highlighted any changes... hope it helps.

    [Setup]

    <font color="blue">PrivilegesRequired=admin</font>

    AppName=My Program

    AppVersion=1.5

    DefaultDirName={pf}\My Program

    DefaultGroupName=My Program

    UninstallDisplayIcon={app}\MyProg.exe

    OutputDir=userdocs:Inno Setup Examples Output

    [Types]

    Name: "full"; Description: "Full installation"

    Name: "compact"; Description: "Compact installation"

    Name: "custom"; Description: "Custom installation"; Flags: iscustom

    [Components]

    Name: "program"; Description: "Program Files"; Types: full compact custom; Flags: fixed

    Name: <font color="blue">"autorun"</font>; Description: "Help File"; Types: full

    Name: "readme"; Description: "Readme File"; Types: full

    Name: "readme\en"; Description: "English"; Flags: exclusive

    Name: "readme\de"; Description: "German"; Flags: exclusive

    [Files]

    Source: "MyProg.exe"; DestDir: "{app}"; Components: program

    Source: "MyProg.chm"; DestDir: "{app}"; Components: <font color="blue">program</font>

    Source: "Readme.txt"; DestDir: "{app}"; Components: readme\en; Flags: isreadme

    Source: "Readme-German.txt"; DestName: "Liesmich.txt"; DestDir: "{app}"; Components: readme\de; Flags: isreadme

    [Icons]

    Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"

    [Registry]<font color="blue">

    Root: HKCU; Subkey: "SOFTWARE\Microsoft\Windows\CurrentVersion\Run"; ValueType: string; ValueName: "MyProg"; ValueData: """{app}\MyProg.exe"""; Components: autorun; Flags: uninsdeletevalue</font>

  • Noncentz705 this app must startup :) i try now this creator hope it hepls :)

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • I believe Innosetup is what Scirra use to package Construct2... it's a great free tool for simple packaging and should meet your requirements.

    My company provides application packaging services primarily to large corporates using the Flexera toolsets but if anyone here needs a hand or anything whipped up were happy to help :)

  • liaeb hi, do you know about videotutorials how create install package with autostart ?

  • As mentioned before, it's not a good idea to force the autostart of a game.

    If I were to play a game that would do that, I guess I would uninstall it the minute I notice it/wouldn't care to install it in the first place if it is notified (as it should be).

    Also, google's search function is your friend.

  • I wouldn't argue the requirement without knowing it :) for example this could be for installation on a kiosk system.

    In regards to your auto start question, to a degree noncentz705 has already answered it although my only consideration would be in that the auto start registry information is for HKCU (current user) of which depending upon the install context may not be the intended user hive. HKLM will ensure it's initiated for all users of the system but again you'll need to consider how the machine is actually used.

    Why exactly is it you want this start on login option?!

Jump to:
Active Users
There are 1 visitors browsing this topic (0 users and 1 guests)