-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbatch.rc
More file actions
32 lines (29 loc) · 804 Bytes
/
Copy pathbatch.rc
File metadata and controls
32 lines (29 loc) · 804 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
28
29
30
31
32
#define IDR_BIN 1234
#include "windows.h"
#include "winuser.h"
// Change the version from here
#define VERSION 1,0,0,0
#define VERSION_STR "1.0.0.0"
id ICON icon.ico
IDR_BIN BATCH encrypted-batch
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION
PRODUCTVERSION VERSION
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904E4"
BEGIN
// Replace the values here with the correct ones
VALUE "CompanyName", "SarKaa"
VALUE "FileDescription", "C app converted from batch"
VALUE "ProductVersion", VERSION_STR
VALUE "FileVersion", VERSION_STR
VALUE "InternalName", "batch-to-c"
VALUE "OriginalFilename", "batch-to-c.exe"
VALUE "ProductName", "batch-to-c"
END
END
END