diff --git a/docs/app.md b/docs/app.md index 04d0bc6a..8e6877fc 100644 --- a/docs/app.md +++ b/docs/app.md @@ -47,7 +47,7 @@ Here's an example `App.json` for Adobe Acrobat Reader DC: "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/docs/install.md b/docs/install.md index fd450cba..4318811e 100644 --- a/docs/install.md +++ b/docs/install.md @@ -11,7 +11,7 @@ The use of `Install.ps1` is defined in `Program.InstallCommand` section in the ` "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, ``` diff --git a/docs/intunewin32.md b/docs/intunewin32.md index 7b2dff68..66907feb 100644 --- a/docs/intunewin32.md +++ b/docs/intunewin32.md @@ -84,7 +84,7 @@ This block contains the desired program information of a Win32 app. InstallComma "UninstallCommand": "<-- Only required when SetupType is set as EXE -->", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true } ``` diff --git a/packages/App/AdobeAcrobatReaderDC/App.json b/packages/App/AdobeAcrobatReaderDC/App.json index 6159f3ce..54833dad 100644 --- a/packages/App/AdobeAcrobatReaderDC/App.json +++ b/packages/App/AdobeAcrobatReaderDC/App.json @@ -30,7 +30,7 @@ "UninstallCommand": "Deploy-Application.exe -DeploymentType \"Uninstall\" -DeployMode \"Silent\"", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/AdobeAcrobatReaderDCMUI/App.json b/packages/App/AdobeAcrobatReaderDCMUI/App.json index c09a2aa8..972a7403 100644 --- a/packages/App/AdobeAcrobatReaderDCMUI/App.json +++ b/packages/App/AdobeAcrobatReaderDCMUI/App.json @@ -30,7 +30,7 @@ "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-FF00-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/AdobeAcrobatReaderDCMUIVDI/App.json b/packages/App/AdobeAcrobatReaderDCMUIVDI/App.json index 8b101932..9a1d6fb6 100644 --- a/packages/App/AdobeAcrobatReaderDCMUIVDI/App.json +++ b/packages/App/AdobeAcrobatReaderDCMUIVDI/App.json @@ -31,7 +31,7 @@ "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-FF00-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/AppleMobileDeviceSupport/App.json b/packages/App/AppleMobileDeviceSupport/App.json index dbf7b297..4144d08f 100644 --- a/packages/App/AppleMobileDeviceSupport/App.json +++ b/packages/App/AppleMobileDeviceSupport/App.json @@ -1,7 +1,5 @@ { - "Application": { - - }, + "Application": {}, "PackageInformation": { "SetupType": "MSI", "SetupFile": "AppleMobileDeviceSupport64.msi", @@ -25,7 +23,7 @@ "UninstallCommand": "MsiExec.exe /X \"{2B3CA448-5266-480F-85FA-2FCCB3C8712C}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Audacity/App.json b/packages/App/Audacity/App.json index 20ff9818..6d4aefe8 100644 --- a/packages/App/Audacity/App.json +++ b/packages/App/Audacity/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\Program Files\\Audacity\\unins000.exe\" /VERYSILENT", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/CitrixWorkspaceAppCurrent/App.json b/packages/App/CitrixWorkspaceAppCurrent/App.json index 99539944..3fb42af4 100644 --- a/packages/App/CitrixWorkspaceAppCurrent/App.json +++ b/packages/App/CitrixWorkspaceAppCurrent/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/CitrixWorkspaceAppLTSR/App.json b/packages/App/CitrixWorkspaceAppLTSR/App.json index 5f29cf1a..653fcaff 100644 --- a/packages/App/CitrixWorkspaceAppLTSR/App.json +++ b/packages/App/CitrixWorkspaceAppLTSR/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/ConnectWiseControl/App.json b/packages/App/ConnectWiseControl/App.json index 2948507e..2a6766bb 100644 --- a/packages/App/ConnectWiseControl/App.json +++ b/packages/App/ConnectWiseControl/App.json @@ -1,7 +1,5 @@ { - "Application": { - - }, + "Application": {}, "PackageInformation": { "SetupType": "MSI", "SetupFile": "ConnectWiseControl.ClientSetup.msi", @@ -25,7 +23,7 @@ "UninstallCommand": "MsiExec.exe /X \"{CBF0B9B6-05FF-4D3A-B0EA-EDA3438E941F}\" /qn", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Cyberduck/App.json b/packages/App/Cyberduck/App.json index 8a14d72c..998801bd 100644 --- a/packages/App/Cyberduck/App.json +++ b/packages/App/Cyberduck/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{8FF1F756-1F7C-41C1-880E-B03218DFDD72}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/FoxitReader/App.json b/packages/App/FoxitReader/App.json index 559f15ef..6c5e966e 100644 --- a/packages/App/FoxitReader/App.json +++ b/packages/App/FoxitReader/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{F398C64A-E282-11EC-8A9F-54BF64A63C26}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/GoogleChrome/App.json b/packages/App/GoogleChrome/App.json index 5e743e9a..865307ed 100644 --- a/packages/App/GoogleChrome/App.json +++ b/packages/App/GoogleChrome/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Greenshot/App.json b/packages/App/Greenshot/App.json index 7c1a1301..99ba2c4a 100644 --- a/packages/App/Greenshot/App.json +++ b/packages/App/Greenshot/App.json @@ -30,7 +30,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/ImageCustomise/App.json b/packages/App/ImageCustomise/App.json index d2dcc135..97d135b3 100644 --- a/packages/App/ImageCustomise/App.json +++ b/packages/App/ImageCustomise/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe -ExecutionPolicy RemoteSigned -File .\\Remove-Defaults.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/ImageGlass/App.json b/packages/App/ImageGlass/App.json index fb80b1f9..9c1239fd 100644 --- a/packages/App/ImageGlass/App.json +++ b/packages/App/ImageGlass/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{15872342-C9E9-4C65-9586-35B4EFDB806B}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/LenovoThinkPadHotkey/App.json b/packages/App/LenovoThinkPadHotkey/App.json index 65a77b06..a0d904da 100644 --- a/packages/App/LenovoThinkPadHotkey/App.json +++ b/packages/App/LenovoThinkPadHotkey/App.json @@ -1,6 +1,5 @@ { - "Application": { - }, + "Application": {}, "PackageInformation": { "SetupType": "EXE", "SetupFile": "r18vu48w.exe", @@ -24,7 +23,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/LenovoVantageService/App.json b/packages/App/LenovoVantageService/App.json index f631b88e..3d36c008 100644 --- a/packages/App/LenovoVantageService/App.json +++ b/packages/App/LenovoVantageService/App.json @@ -23,7 +23,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/LogAnalyticsSecrets/App.json b/packages/App/LogAnalyticsSecrets/App.json index 1a94b956..3e04c520 100644 --- a/packages/App/LogAnalyticsSecrets/App.json +++ b/packages/App/LogAnalyticsSecrets/App.json @@ -1,7 +1,5 @@ { - "Application": { - - }, + "Application": {}, "PackageInformation": { "SetupType": "EXE", "SetupFile": "powershell.exe", @@ -25,7 +23,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Remove-LogSecrets.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Microsoft.NETLTS/App.json b/packages/App/Microsoft.NETLTS/App.json index 901fead2..0dc63a25 100644 --- a/packages/App/Microsoft.NETLTS/App.json +++ b/packages/App/Microsoft.NETLTS/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{089A177D-98AE-4195-A115-D3C45613B875}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Microsoft.NETSTS/App.json b/packages/App/Microsoft.NETSTS/App.json index e2eb3ff3..8caefde3 100644 --- a/packages/App/Microsoft.NETSTS/App.json +++ b/packages/App/Microsoft.NETSTS/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{089A177D-98AE-4195-A115-D3C45613B875}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftAzurePipelinesAgent/App.json b/packages/App/MicrosoftAzurePipelinesAgent/App.json index 46ca00c5..e1954cad 100644 --- a/packages/App/MicrosoftAzurePipelinesAgent/App.json +++ b/packages/App/MicrosoftAzurePipelinesAgent/App.json @@ -2002,7 +2002,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftEdge/App.json b/packages/App/MicrosoftEdge/App.json index 7f0e504d..37844762 100644 --- a/packages/App/MicrosoftEdge/App.json +++ b/packages/App/MicrosoftEdge/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftEdgeWebView2/App.json b/packages/App/MicrosoftEdgeWebView2/App.json index 22c088a9..5346657b 100644 --- a/packages/App/MicrosoftEdgeWebView2/App.json +++ b/packages/App/MicrosoftEdgeWebView2/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftFSLogixApps/App.json b/packages/App/MicrosoftFSLogixApps/App.json index 48367719..421e09fb 100644 --- a/packages/App/MicrosoftFSLogixApps/App.json +++ b/packages/App/MicrosoftFSLogixApps/App.json @@ -39,7 +39,7 @@ "UninstallCommand": "MsiExec.exe /X \"{089A177D-98AE-4195-A115-D3C45613B875}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftOneDrive/App.json b/packages/App/MicrosoftOneDrive/App.json index 67e582c8..378ca580 100644 --- a/packages/App/MicrosoftOneDrive/App.json +++ b/packages/App/MicrosoftOneDrive/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftOneDriveVDI/App.json b/packages/App/MicrosoftOneDriveVDI/App.json index ae2f049a..59da286c 100644 --- a/packages/App/MicrosoftOneDriveVDI/App.json +++ b/packages/App/MicrosoftOneDriveVDI/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftPowerShell/App.json b/packages/App/MicrosoftPowerShell/App.json index b2dd0a3d..9c093e35 100644 --- a/packages/App/MicrosoftPowerShell/App.json +++ b/packages/App/MicrosoftPowerShell/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftPowerToys/App.json b/packages/App/MicrosoftPowerToys/App.json index 720167e0..a582a26c 100644 --- a/packages/App/MicrosoftPowerToys/App.json +++ b/packages/App/MicrosoftPowerToys/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftSsmsEnu/App.json b/packages/App/MicrosoftSsmsEnu/App.json index 3839213c..9a24e96d 100644 --- a/packages/App/MicrosoftSsmsEnu/App.json +++ b/packages/App/MicrosoftSsmsEnu/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{03FFD0DE-C109-45D1-9C19-C010A02CFC73}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftSupportCenter/App.json b/packages/App/MicrosoftSupportCenter/App.json index 1d2bd3f1..6b470182 100644 --- a/packages/App/MicrosoftSupportCenter/App.json +++ b/packages/App/MicrosoftSupportCenter/App.json @@ -23,7 +23,7 @@ "UninstallCommand": "msiexec.exe /X \"{C8466986-8B41-46C3-9DEE-853951EEE23E}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftTeams/App.json b/packages/App/MicrosoftTeams/App.json index 9c615cfe..03d59e1a 100644 --- a/packages/App/MicrosoftTeams/App.json +++ b/packages/App/MicrosoftTeams/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{731F6BAA-A986-45A4-8936-7C3AAAAA760B}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftTeamsVDI/App.json b/packages/App/MicrosoftTeamsVDI/App.json index 860a90bd..b5d83941 100644 --- a/packages/App/MicrosoftTeamsVDI/App.json +++ b/packages/App/MicrosoftTeamsVDI/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2012x64/App.json b/packages/App/MicrosoftVcRedist2012x64/App.json index 8932c1fb..5718218b 100644 --- a/packages/App/MicrosoftVcRedist2012x64/App.json +++ b/packages/App/MicrosoftVcRedist2012x64/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{ca67548a-5ebe-413a-b50c-4b9ceb6d66c6}\\vcredist_x64.exe\" /uninstall /quiet /noreboot", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2012x86/App.json b/packages/App/MicrosoftVcRedist2012x86/App.json index af6fe9cc..2124afae 100644 --- a/packages/App/MicrosoftVcRedist2012x86/App.json +++ b/packages/App/MicrosoftVcRedist2012x86/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{33d1fd90-4274-48a1-9bc1-97e33d9c2d6f}\\vcredist_x86.exe\" /uninstall /quiet /noreboot", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2013x64/App.json b/packages/App/MicrosoftVcRedist2013x64/App.json index 5290f588..e9f7789d 100644 --- a/packages/App/MicrosoftVcRedist2013x64/App.json +++ b/packages/App/MicrosoftVcRedist2013x64/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{042d26ef-3dbe-4c25-95d3-4c1b11b235a7}\\vcredist_x64.exe\" /uninstall /quiet /noreboot", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2013x86/App.json b/packages/App/MicrosoftVcRedist2013x86/App.json index 6e92bf16..c4f6fd0e 100644 --- a/packages/App/MicrosoftVcRedist2013x86/App.json +++ b/packages/App/MicrosoftVcRedist2013x86/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{9dff3540-fc85-4ed5-ac84-9e3c7fd8bece}\\vcredist_x86.exe\" /uninstall /quiet /noreboot", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2022x64/App.json b/packages/App/MicrosoftVcRedist2022x64/App.json index 28c9f134..1b20f44e 100644 --- a/packages/App/MicrosoftVcRedist2022x64/App.json +++ b/packages/App/MicrosoftVcRedist2022x64/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{5af95fd8-a22e-458f-acee-c61bd787178e}\\VC_redist.x64.exe\" /uninstall /quiet /norestart", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVcRedist2022x86/App.json b/packages/App/MicrosoftVcRedist2022x86/App.json index 3219a16d..c63fa444 100644 --- a/packages/App/MicrosoftVcRedist2022x86/App.json +++ b/packages/App/MicrosoftVcRedist2022x86/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "\"C:\\ProgramData\\Package Cache\\{47109d57-d746-4f8b-9618-ed6a17cc922b}\\VC_redist.x86.exe\" /uninstall /quiet /norestart", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftVisualStudioCode/App.json b/packages/App/MicrosoftVisualStudioCode/App.json index a0a76cea..d161a03f 100644 --- a/packages/App/MicrosoftVisualStudioCode/App.json +++ b/packages/App/MicrosoftVisualStudioCode/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MicrosoftWvdRemoteDesktop/App.json b/packages/App/MicrosoftWvdRemoteDesktop/App.json index 1d3f102d..38b4b9a7 100644 --- a/packages/App/MicrosoftWvdRemoteDesktop/App.json +++ b/packages/App/MicrosoftWvdRemoteDesktop/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{435AF226-840F-49ED-8F03-4B1356F7740F}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MimecastOutlookx64/App.json b/packages/App/MimecastOutlookx64/App.json index b4df76c5..2a09861b 100644 --- a/packages/App/MimecastOutlookx64/App.json +++ b/packages/App/MimecastOutlookx64/App.json @@ -1,7 +1,5 @@ { - "Application": { - - }, + "Application": {}, "PackageInformation": { "SetupType": "MSI", "SetupFile": "Mimecast for outlook 7.10.1.133 (x64).msi", @@ -25,7 +23,7 @@ "UninstallCommand": "MsiExec.exe /X \"{83F8DF4E-C625-4DCD-93A3-DE063BC32D49}\" /quiet /log \"C:\\ProgramData\\PackageFactory\\logs\\MimecastOutlook.log\"", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MimecastOutlookx86/App.json b/packages/App/MimecastOutlookx86/App.json index 85ef3710..122e4a3b 100644 --- a/packages/App/MimecastOutlookx86/App.json +++ b/packages/App/MimecastOutlookx86/App.json @@ -1,7 +1,5 @@ { - "Application": { - - }, + "Application": {}, "PackageInformation": { "SetupType": "MSI", "SetupFile": "Mimecast for outlook 7.10.1.133 (x86).msi", @@ -25,7 +23,7 @@ "UninstallCommand": "MsiExec.exe /X \"{83F8DF4E-C625-4DCD-93A3-DE063BC32D49}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/MozillaFirefox/App.json b/packages/App/MozillaFirefox/App.json index 0555add2..c0032c03 100644 --- a/packages/App/MozillaFirefox/App.json +++ b/packages/App/MozillaFirefox/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "C:\\Program Files\\Mozilla Firefox\\uninstall\\helper.exe /S", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/Notepad++/App.json b/packages/App/Notepad++/App.json index 592508c8..1a3f0e75 100644 --- a/packages/App/Notepad++/App.json +++ b/packages/App/Notepad++/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/PaintDotNetOfflineInstaller/App.json b/packages/App/PaintDotNetOfflineInstaller/App.json index a2c43b57..c330e68b 100644 --- a/packages/App/PaintDotNetOfflineInstaller/App.json +++ b/packages/App/PaintDotNetOfflineInstaller/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{E56D2CED-CCAE-4902-A559-17B452752DA5}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/RemoteDisplayAnalyzer/App.json b/packages/App/RemoteDisplayAnalyzer/App.json index a8c710e3..8824904b 100644 --- a/packages/App/RemoteDisplayAnalyzer/App.json +++ b/packages/App/RemoteDisplayAnalyzer/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/TrackerSoftwarePDFXChangeEditor/App.json b/packages/App/TrackerSoftwarePDFXChangeEditor/App.json index 93d54d1e..24f3deea 100644 --- a/packages/App/TrackerSoftwarePDFXChangeEditor/App.json +++ b/packages/App/TrackerSoftwarePDFXChangeEditor/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{2B1A32F0-ABD0-42C4-A123-7CC642AA3B5E}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/VideoLanVlcPlayer/App.json b/packages/App/VideoLanVlcPlayer/App.json index dff908ad..299a37a3 100644 --- a/packages/App/VideoLanVlcPlayer/App.json +++ b/packages/App/VideoLanVlcPlayer/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "MsiExec.exe /X \"{1BB20266-7C52-4909-B075-22156F75D22C}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/ZoomMeetings/App.json b/packages/App/ZoomMeetings/App.json index e49ddec2..6f4ce7b5 100644 --- a/packages/App/ZoomMeetings/App.json +++ b/packages/App/ZoomMeetings/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/App/ZoomRooms/App.json b/packages/App/ZoomRooms/App.json index 48cb0cb3..06927d4c 100644 --- a/packages/App/ZoomRooms/App.json +++ b/packages/App/ZoomRooms/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "suppress", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/Update/AdobeAcrobatReaderDCMUIx64/App.json b/packages/Update/AdobeAcrobatReaderDCMUIx64/App.json index 3088ab11..b48aadc7 100644 --- a/packages/Update/AdobeAcrobatReaderDCMUIx64/App.json +++ b/packages/Update/AdobeAcrobatReaderDCMUIx64/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"AdobeAcrobatReaderDCMUIUpdates\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/Update/AdobeAcrobatReaderDCMUIx86/App.json b/packages/Update/AdobeAcrobatReaderDCMUIx86/App.json index fe68f5d1..e30934eb 100644 --- a/packages/Update/AdobeAcrobatReaderDCMUIx86/App.json +++ b/packages/Update/AdobeAcrobatReaderDCMUIx86/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"AdobeAcrobatReaderDCMUIUpdates\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/Update/MicrosoftVisualStudioCode/App.json b/packages/Update/MicrosoftVisualStudioCode/App.json index e242a938..5aea3d50 100644 --- a/packages/Update/MicrosoftVisualStudioCode/App.json +++ b/packages/Update/MicrosoftVisualStudioCode/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{AC76BA86-1033-1033-7760-BC15014EA700}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/Update/MicrosoftWvdRemoteDesktop/App.json b/packages/Update/MicrosoftWvdRemoteDesktop/App.json index f96c9793..10051565 100644 --- a/packages/Update/MicrosoftWvdRemoteDesktop/App.json +++ b/packages/Update/MicrosoftWvdRemoteDesktop/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "msiexec.exe /X \"{435AF226-840F-49ED-8F03-4B1356F7740F}\" /quiet", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/packages/Update/ZoomMeetings/App.json b/packages/Update/ZoomMeetings/App.json index db4f0887..cf1da99c 100644 --- a/packages/Update/ZoomMeetings/App.json +++ b/packages/Update/ZoomMeetings/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "powershell.exe -ExecutionPolicy Bypass -NonInteractive -WindowStyle Hidden -File .\\Uninstall.ps1", "InstallExperience": "system", "DeviceRestartBehavior": "basedOnReturnCode", - "AllowAvailableUninstall": "false" + "AllowAvailableUninstall": false }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/App.json b/template/App.json index 3f55d6ef..a4ae713a 100644 --- a/template/App.json +++ b/template/App.json @@ -29,7 +29,7 @@ "UninstallCommand": "<-- Only required when SetupType is set as EXE -->", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_DetectionRule_Registry_Existence.json b/template/Samples/App_DetectionRule_Registry_Existence.json index 1df44c5b..aa97d45b 100644 --- a/template/Samples/App_DetectionRule_Registry_Existence.json +++ b/template/Samples/App_DetectionRule_Registry_Existence.json @@ -17,7 +17,7 @@ "UninstallCommand": "", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_DetectionRule_Registry_IntegerComparison.json b/template/Samples/App_DetectionRule_Registry_IntegerComparison.json index c90ecc14..38c47e86 100644 --- a/template/Samples/App_DetectionRule_Registry_IntegerComparison.json +++ b/template/Samples/App_DetectionRule_Registry_IntegerComparison.json @@ -17,7 +17,7 @@ "UninstallCommand": "", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_DetectionRule_Registry_StringComparison.json b/template/Samples/App_DetectionRule_Registry_StringComparison.json index 5c88293d..de8d415f 100644 --- a/template/Samples/App_DetectionRule_Registry_StringComparison.json +++ b/template/Samples/App_DetectionRule_Registry_StringComparison.json @@ -17,7 +17,7 @@ "UninstallCommand": "", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_DetectionRule_Registry_VersionComparison.json b/template/Samples/App_DetectionRule_Registry_VersionComparison.json index 4ebcfe9c..b28d9e4e 100644 --- a/template/Samples/App_DetectionRule_Registry_VersionComparison.json +++ b/template/Samples/App_DetectionRule_Registry_VersionComparison.json @@ -17,7 +17,7 @@ "UninstallCommand": "", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_DetectionRule_Script.json b/template/Samples/App_DetectionRule_Script.json index 01f02967..24186b50 100644 --- a/template/Samples/App_DetectionRule_Script.json +++ b/template/Samples/App_DetectionRule_Script.json @@ -17,7 +17,7 @@ "UninstallCommand": "", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809", diff --git a/template/Samples/App_EXE.json b/template/Samples/App_EXE.json index 3b6c6a3a..a1eaef9d 100644 --- a/template/Samples/App_EXE.json +++ b/template/Samples/App_EXE.json @@ -17,7 +17,7 @@ "UninstallCommand": "Uninstall.exe /s", "InstallExperience": "system \\ user", "DeviceRestartBehavior": "suppress \\ force \\ basedOnReturnCode \\ allow", - "AllowAvailableUninstall": "false \\ true" + "AllowAvailableUninstall": false \\ true }, "RequirementRule": { "MinimumRequiredOperatingSystem": "W10_1809",