Forum Discussion
Kumaran777_Sekar265
Nov 29, 2018Copper Contributor
Azure Infomation Protection Client is not getting installed in my Windows 10
Azure Information Protection Client is not getting installed and an error message appears as "The error code 2753." as shown in the below screenshot. Can anyone tell me how to resolve...
kennethpedersen
Jan 26, 2022Copper Contributor
Here is a power shell script to find the entries:
New-PSDrive -Name HKCR -PSProvider Registry -Root HKEY_CLASSES_ROOT
$installed = Get-ChildItem @("HKCR:\Installer\Products") |
ForEach { Get-ItemProperty $_.PSPath } |
Where-Object { "Microsoft Azure Information Protection" -contains $_.ProductName } |
Select-Object -Property PSPath,PackageCode,ProductName
ForEach ($app in $installed)
{
Write-Host -ForegroundColor Cyan $app
}
remove-psdrive -name HKCR
- DimoncyFeb 14, 2023Copper ContributorThank you.
for delete it automatically, you can write in foreach cycle:
instead of : Write-Host -ForegroundColor Cyan $app
write this: Remove-Item $app.PSPath -Recurse