Skip to content

Commit

Permalink
Update docs about AllowAvailableUninstall
Browse files Browse the repository at this point in the history
Signed-off-by: kenchan0130 <[email protected]>
  • Loading branch information
Tadayuki Onishi committed Jun 12, 2024
1 parent 1e2603e commit c589fea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion docs/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ Here's an example `App.json` for Adobe Acrobat Reader DC:
"InstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Install.ps1",
"UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet",
"InstallExperience": "system",
"DeviceRestartBehavior": "suppress"
"DeviceRestartBehavior": "suppress",
"AllowAvailableUninstall": "false"
},
"RequirementRule": {
"MinimumRequiredOperatingSystem": "W10_1809",
Expand Down
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ The use of `Install.ps1` is defined in `Program.InstallCommand` section in the `
"InstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Install.ps1",
"UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet",
"InstallExperience": "system",
"DeviceRestartBehavior": "suppress"
"DeviceRestartBehavior": "suppress",
"AllowAvailableUninstall": "false"
},
```

Expand Down
3 changes: 2 additions & 1 deletion docs/intunewin32.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ This block contains the desired program information of a Win32 app. InstallComma
"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"
"DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow",
"AllowAvailableUninstall": "false \\ true"
}
```

Expand Down

0 comments on commit c589fea

Please sign in to comment.