-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathglobals.bat
More file actions
29 lines (20 loc) · 818 Bytes
/
globals.bat
File metadata and controls
29 lines (20 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
set PATH=%JP_MyToolsDir%;%JP_ToolsDir%;%PATH%
rem --------------- common -----------------
set AppName=ShellExec
set AppVer=1.0
set AppDate=2022.08.06
set AppFullName=%AppName% %AppVer%
set AppName_=ShellExec
set AppExe=ShellExec.exe
set AppUrl=https://www.pazera-software.com/products/shellexec/
set README=README.txt
::set ArchiveSrc=%AppFullName%_Project.7z
rem ----------------- Windows 32 bit ---------------------
set AppExe32Compiled=ShellExec.32.exe
set PortableFileZip32=%AppName_%_win32.zip
set CreatePortableZip32=7z a -tzip -mx=9 %PortableFileZip32% %AppExe% %README%
rem ----------------- Windows 64 bit ---------------------
set AppExe64Compiled=ShellExec.64.exe
set PortableFileZip64=%AppName_%_win64.zip
set CreatePortableZip64=7z a -tzip -mx=9 %PortableFileZip64% %AppExe% %README%