mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
59 lines
2.0 KiB
Batchfile
59 lines
2.0 KiB
Batchfile
@ECHO OFF
|
|
SET outd=%~p1
|
|
|
|
::Copy CHANGELOG.txt, HACKING.txt, LICENSE.txt, README.txt and kprocesshacker.sys
|
|
COPY "%outd%\..\..\..\CHANGELOG.txt" "%outd%\" /V
|
|
COPY "%outd%\..\..\..\HACKING.txt" "%outd%\" /V
|
|
COPY "%outd%\..\..\..\LICENSE.txt" "%outd%\" /V
|
|
COPY "%outd%\..\..\..\README.txt" "%outd%\" /V
|
|
COPY "%outd%\..\..\..\KProcessHacker\i386\kprocesshacker.sys" "%outd%\" /V
|
|
|
|
::Clear older files
|
|
DEL "%outd%\ProcessHacker.exe.config" /Q >nul 2>&1
|
|
DEL "%outd%\processhacker-*-setup.exe" /Q >nul 2>&1
|
|
DEL "%outd%\ProcessHacker_in.exe" /Q >nul 2>&1
|
|
|
|
::Check if ILMerge is present in the default installation location
|
|
IF EXIST "%PROGRAMFILES%\Microsoft\ILMerge\ILMerge.exe" (
|
|
SET ILMergePath=%PROGRAMFILES%\Microsoft\ILMerge\ILMerge.exe && GOTO ILMerge
|
|
) ELSE (
|
|
GOTO SearchILMergeInPATH
|
|
)
|
|
|
|
:SearchILMergeInPATH
|
|
::Check if ILMerge is present in PATH
|
|
ilmerge >nul 2>&1
|
|
IF %errorlevel%==9009 (
|
|
ECHO ILMerge NOT FOUND && GOTO END
|
|
) ELSE (
|
|
GOTO ILMergeInPATH
|
|
)
|
|
|
|
:ILMergeInPath
|
|
REN "%outd%\ProcessHacker.exe" ProcessHacker_in.exe
|
|
ilmerge /t:winexe /out:"%outd%\ProcessHacker.exe" "%outd%\ProcessHacker_in.exe" "%outd%\Aga.Controls.dll"
|
|
DEL "%outd%\ProcessHacker_in.exe" /Q >nul 2>&1
|
|
DEL "%outd%\Aga.Controls.dll" /Q >nul 2>&1
|
|
GOTO Installer
|
|
|
|
:ILMerge
|
|
rename "%outd%\ProcessHacker.exe" ProcessHacker_in.exe
|
|
"%ILMergePath%" /t:winexe /out:"%outd%\ProcessHacker.exe" "%outd%\ProcessHacker_in.exe" "%outd%\Aga.Controls.dll"
|
|
DEL "%outd%\ProcessHacker_in.exe" /Q >nul 2>&1
|
|
DEL "%outd%\Aga.Controls.dll" /Q >nul 2>&1
|
|
GOTO Installer
|
|
|
|
:Installer
|
|
::Set the path of Inno Setup and compile setup
|
|
FOR /f "tokens=3 skip=3 delims= " %%i in (
|
|
'reg query "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Inno Setup 5_is1" /v "Inno Setup: App Path"'
|
|
) DO (
|
|
SET InnoSetupPath=%%i
|
|
)
|
|
|
|
"%InnoSetupPath%iscc.exe" /Q /O"%outd%\..\..\bin\Release" "%outd%\..\..\Build\Installer\Process_Hacker_installer.iss"
|
|
GOTO END
|
|
|
|
:END
|
|
::Clean up the .pdb files
|
|
DEL "%outd%\*.pdb" /Q >nul 2>&1 |