Evening,
Have two deployments returning 0x87D00324(-2016410844) for most but not all systems. The deployment is a APPX app using PowerShell. When I run the detection method in PowerShell it returns true as the app is installed already on my test system but still shows 0x87D00324(-2016410844) in Software Center.
The script for detection is:
$HEVCDetect = (Get-AppxPackage -Name "Microsoft.HEVCVideoExtension")
if ($HEVCDetect) {
return $true
}
As mentioned running manually returns true so I am not sure what is going on. Also just changed the detection method to just write-host "Test" to test and it also returns the same error.
Thanks in advance for any help.
Have two deployments returning 0x87D00324(-2016410844) for most but not all systems. The deployment is a APPX app using PowerShell. When I run the detection method in PowerShell it returns true as the app is installed already on my test system but still shows 0x87D00324(-2016410844) in Software Center.
The script for detection is:
$HEVCDetect = (Get-AppxPackage -Name "Microsoft.HEVCVideoExtension")
if ($HEVCDetect) {
return $true
}
As mentioned running manually returns true so I am not sure what is going on. Also just changed the detection method to just write-host "Test" to test and it also returns the same error.
Thanks in advance for any help.