Advertisement
Guest User

Untitled

a guest
Apr 16th, 2020
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.03 KB | None | 0 0
  1. ; Script generated by the Inno Setup Script Wizard.
  2. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
  3.  
  4. #define MyAppName "PrinterInformationRunService"
  5. #define MyAppVersion "1.0"
  6. #define MyAppPublisher "GS App"
  7. #define MyAppURL ""
  8.  
  9. [Setup]
  10. ; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
  11. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
  12. AppId={{121FC870-177F-421D-AA5B-DC50D9493D68}
  13. AppName={#MyAppName}
  14. AppVersion={#MyAppVersion}
  15. ;AppVerName={#MyAppName} {#MyAppVersion}
  16. AppPublisher={#MyAppPublisher}
  17. AppPublisherURL={#MyAppURL}
  18. AppSupportURL={#MyAppURL}
  19. AppUpdatesURL={#MyAppURL}
  20. DefaultDirName={src}
  21. DefaultGroupName={#MyAppName}
  22. DisableProgramGroupPage=yes
  23. ; Uncomment the following line to run in non administrative install mode (install for current user only.)
  24. ;PrivilegesRequired=lowest
  25. OutputDir=C:\Users\Programowanie\Desktop\ZLECENIA NA DRUKARKI\PrinterInformationRunSvc
  26. OutputBaseFilename=PrinterInformationRunSetup
  27. Compression=lzma
  28. SolidCompression=yes
  29. WizardStyle=modern
  30.  
  31. [Files]
  32. Source: "C:\Users\Programowanie\Desktop\DRUKARKI\PrinterInformationRunSvc\PrinterInformationRunSvc\bin\Release\PrinterInformationRunSvc.exe"; DestDir: "{src}"; Flags: ignoreversion
  33. Source: "C:\Users\Programowanie\Desktop\DRUKARKI\PrinterInformationRunSvc\PrinterInformationRunSvc\bin\Release\PrinterInformationRunSvc.exe.config"; DestDir: "{src}"; Flags: ignoreversion
  34.  
  35. [UninstallDelete]
  36.  
  37. [run]
  38. Filename: {sys}\sc.exe; Parameters: "create PrinterInformationRunSvc start= demand binPath= ""{src}\PrinterInformationRunSvc.exe""" ; Flags: runhidden waituntilterminated
  39. Filename: {sys}\sc.exe; Parameters: "start PrinterInformationRunSvc" ; Flags: runhidden waituntilterminated
  40.  
  41. [UninstallRun]
  42. Filename: {sys}\sc.exe; Parameters: "stop PrinterInformationRunSvc" ; Flags: runhidden waituntilterminated
  43. Filename: {sys}\sc.exe; Parameters: "delete PrinterInformationRunSvc" ; Flags: runhidden waituntilterminated
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement