enlighten Posted March 29, 2010 Posted March 29, 2010 (edited) To make my question fully understandable to you i attach an image demonstration.Please see this:Well i developed my software,after finishing installing i want to show a window like in the image(from Bitcomet 1.19).But that software is built on NSIS and mine on INNO. So my requirement:1.Show this window after installation but before finishing.2.Writing custom message like: "Support Us".3.Showing check box with two option: --[]Set Home page as:.... --[]No,Thanksso when [b]NO[/b] is selected a part of task will not execute.4.Showing [my soft name] like [Bitcomet 1.19] at the lower left corner.Wish you understand.And please, wish u be a help. Edited March 29, 2010 by enlighten
cluberti Posted March 29, 2010 Posted March 29, 2010 Moved. Please try to put your topics in the right place the first time - this has nothing to do with Unattended Windows directly.
MHz Posted April 2, 2010 Posted April 2, 2010 An ordered response to your list of questions.The Task window displays after installation but before finishing.The banner (top graphic) can display a custom message like: "Support Us". Try making one with GIMP. Idea: Edit a copy of the default banner located in the Inno Setup installation directory.The Task window can show checkbox(es)Example Inno Setup script below:[Setup]; basic safe options for testAppName=A_Test_Of_My_AppnameAppVerName=A_Test_Of_My_Appname 1.0CreateAppDir=false[Registry]; this next item depends on the condition of the checkbox assigned to the task "task_name"Root: HKCU; SubKey: Software\a_test_key; ValueType: string; ValueName: key-value; ValueData: data-value; Flags: uninsdeletekeyifempty uninsdeletevalue; Tasks: task_name[Tasks]; assign a task named "task_name"Name: task_name; Description: "Create a test registry key at ""HKCU\Software\a_test_key"""; Flags: uncheckedSeems nice for a NSIS setup.ISTool is a good GUI to use for Inno Setup scripts which may help you.
Willem4444 Posted April 13, 2010 Posted April 13, 2010 An ordered response to your list of questions.The Task window displays after installation but before finishing.The banner (top graphic) can display a custom message like: "Support Us". Try making one with GIMP. Idea: Edit a copy of the default banner located in the Inno Setup installation directory.The Task window can show checkbox(es)Example Inno Setup script below:[Setup]; basic safe options for testAppName=A_Test_Of_My_AppnameAppVerName=A_Test_Of_My_Appname 1.0CreateAppDir=false[Registry]; this next item depends on the condition of the checkbox assigned to the task "task_name"Root: HKCU; SubKey: Software\a_test_key; ValueType: string; ValueName: key-value; ValueData: data-value; Flags: uninsdeletekeyifempty uninsdeletevalue; Tasks: task_name[Tasks]; assign a task named "task_name"Name: task_name; Description: "Create a test registry key at ""HKCU\Software\a_test_key"""; Flags: uncheckedSeems nice for a NSIS setup.ISTool is a good GUI to use for Inno Setup scripts which may help you. I Would Say Inno Setup is the Best installation packager i have tried yet.. It works esay and its sumple.I have Created an Inno Setup Portable App;ication that you can use without installing any Inno setup Software you can run it from any removable drive and use is here is i picture what is consist of.It has got1.INNOSETUP PACKAHER BUILDER.(iNNO sETUP INSTALLATION sETUP)2.SWITCHES EXAMPLES3.MY INNO SETUP EXTENSION 34.INNO SCRIPT BUILDER5.INNOSETUP FORM DESIGNER6.ISTOOL7.SETUPBUILDER 6 DEVELOPER.iF YOU HAVE ANYTHING TO ADD JUST DROP ME I MAIL AT WILLEMKC@HOTMAIL.COMhttp://cid-f0ef201d3f90ee6a.skydrive.live.com/browse.aspx/.Public?uc=2iF YOU WONT THE TOOL I CREATED IS ON MY SKYDRIVE2.
MHz Posted April 14, 2010 Posted April 14, 2010 I have Created an Inno Setup Portable App;ication that you can use without installing any Inno setup Software you can run it from any removable drive and use is here is i picture what is consist of.It looks interesting. Thanks for sharing with us.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now