PS C:\Users\arinagruseva> reg export "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}" "$env:USERPROFILE\Desktop\ironpython-backup.reg"
ERROR: The system was unable to find the specified registry key or value.
PS C:\Users\arinagruseva> reg export "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}" "$env:USERPROFILE\Desktop\ironpython-backup.reg"
ERROR: The system was unable to find the specified registry key or value.
PS C:\Users\arinagruseva> Remove-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}" -Recurse -Force
Remove-Item : Cannot find path
'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1EBADAEA-1A0F-40E3-848C-0DD8C5E5A10D}' because it does not
exist.
At line:1 char:1
+ Remove-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstal ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (HKLM:\SOFTWARE\...C-0DD8C5E5A10D}:String) [Remove-Item], ItemNotFoundEx
ception
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.RemoveItemCommand
PS C:\Users\arinagruseva> Get-ChildItem "HKLM:\SOFTWARE\Classes\Installer\Products" | Where-Object { (Get-ItemProperty $_.PSPath -ErrorAction SilentlyContinue).ProductName -match 'IronPython' } | Remove-Item -Recurse -Force
PS C:\Users\arinagruseva> Get-ChildItem "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products" | Where-Object { (Get-ItemProperty (Join-Path $_.PSPath "InstallProperties") -ErrorAction SilentlyContinue).DisplayName -match 'IronPython' } | Remove-Item -Recurse -Force
PS C:\Users\arinagruseva> Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* -ErrorAction SilentlyContinue | Where-Object { $_.InstallSource -match 'C:\\Mac\\' } | Select-Object DisplayName | Format-Table -AutoSize
DisplayName
-----------
Microsoft Visual C++ 2008 x86 ATL Runtime 9.0.30729
Microsoft Visual C++ 2008 x86 CRT Runtime 9.0.30729
IronPython 2.7.3
Microsoft Visual C++ 2008 x86 OpenMP Runtime 9.0.30729
Microsoft Visual C++ 2008 x64 MFC Runtime 9.0.30729
Microsoft Visual C++ 2008 x64 OpenMP Runtime 9.0.30729
Microsoft Visual C++ 2008 x86 MFC Runtime 9.0.30729
Microsoft Visual C++ 2008 x64 ATL Runtime 9.0.30729
Microsoft Visual C++ 2008 x64 CRT Runtime 9.0.30729
PS C:\Users\arinagruseva>