forked from MSEndpointMgr/IntuneWin32AppPackager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.json
41 lines (41 loc) · 1.32 KB
/
App.json
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
33
34
35
36
37
38
39
40
41
{
"PackageInformation": {
"SetupType": "MSI \\ EXE",
"SetupFile": "Setup.exe",
"SourceFolder": "Source",
"OutputFolder": "Package",
"IconFile": "Icon.png"
},
"Information": {
"DisplayName": "AppName 1.0.0",
"Description": "Installs AppName 1.0.0",
"Publisher": "AppVendor",
"Notes": "AppNote"
},
"Program": {
"InstallCommand": "<-- Only required when SetupType is set as EXE -->",
"UninstallCommand": "<-- Only required when SetupType is set as EXE -->",
"InstallExperience": "system \\ user",
"DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow"
},
"RequirementRule": {
"MinimumRequiredOperatingSystem": "1809",
"Architecture": "All \\ x64 \\ x86"
},
"CustomRequirementRule": [
],
"DetectionRule": [
{
"Type": "Registry",
"DetectionMethod": "VersionComparison",
"KeyPath": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\123",
"ValueName": "DisplayVersion",
"Operator": "greaterThanOrEqual",
"Value": "1.0.0",
"Check32BitOn64System": "false"
}
],
"TenantInformation": {
"ID": "f8a9903e-111f-4bab-9980-4ab7dc637d43"
}
}