Subversion Repositories stackman

Rev

Go to most recent revision | View as "text/x-msdos-batch" | Blame | Last modification | View Log | RSS feed

  1. @echo off
  2.  
  3. REM (Keine Delphi Compilierung)
  4.  
  5. SET NAME=ViaThinkSoft Stack Manager 5.1
  6. SET URL=http://www.viathinksoft.de/
  7. SET EXE=StackMan.exe
  8.  
  9. echo Unterzeichne %EXE%...
  10.  
  11. signtool sign -d "%NAME%" -du "%URL%" -a -t "http://timestamp.verisign.com/scripts/timstamp.dll" -r "ViaThinkSoft Root Certificate Signing Authority" -i "ViaThinkSoft Intermediate Code Signing Certificate Authority" "%EXE%"
  12.  
  13. echo Compiliere Setup...
  14.  
  15. "C:\Programme\Inno Setup 5\iscc.exe" /Q "StackMan.iss"
  16.  
  17. echo Unterzeichne Setup...
  18.  
  19. SET EXE=Output\setup.exe
  20.  
  21. signtool sign -d "%NAME%" -du "%URL%" -a -t "http://timestamp.verisign.com/scripts/timstamp.dll" -r "ViaThinkSoft Root Certificate Signing Authority" -i "ViaThinkSoft Intermediate Code Signing Certificate Authority" "%EXE%"
  22.  
  23. echo Fertig!
  24.  
  25. pause.
  26. cls
  27. exit
  28.