Wednesday, 22 November 2017

how to build a inno setup installer run as administrator



[Setup]
PrivilegesRequired=admin


how to add Serial Key to inno setup wizard


how to add read me page to wizard


how to add agree and dis agree button to wizard page


how to create a desktop short cut

[Icons]
Name: {commondesktop}\{#MyAppName}; Filename: {app}\setup.exe; WorkingDir: {app}; IconFilename: {app}\images\setup.ico; Comment: "software";


how to create a installation log file in inno setup installer


how to build a installer which installed in program files in both 64 and 32 bit machines

[Setup]
DefaultDirName={code:GetProgramFiles}\{#MyAppName}

[code]
function GetProgramFiles(Param: string): string;
begin
  if IsWin64 then Result := ExpandConstant('{pf64}')
    else Result := ExpandConstant('{pf32}')
end;

how to build a 64 bit machine installer


tutorials about inno script studio 5.5.9


how to leave the important files when uninstalling software using innosetup


how to add icons to start menu in windows


how to add icon to the control panel programs


how to add a name below left bottom in wizard using innosetup


What are the software need for building installer


Friday, 20 October 2017

How to Run a .bat file using innosetup Installer


How to create shortcut too desktop using innosetup Installer


How to install MySQL using innosetup Installer


How to delete windows service using innosetup Installer


How to stop the window service using innosetup Installer

Assuming that in windows(windows 7 or Higher versions) operating system, we have created service or by default some application created a service.

Now we want to stop that service using Innosetup, The given below code to stop the service.

[Run]
Filename: {sys}\sc.exe; Parameters: "stop service_name" ; Flags: runhidden

This code should be place in RUN section of innosetup.

Example: Considered That you have installed Mysql and its working Good. Now you want to stop Mysql service by using innosetup. Considering service_name as mysql, The given below code to stop mysql

[Run]
Filename: {sys}\sc.exe; Parameters: "stop mysql" ; Flags: runhidden.





How to check java run time environment installed or not