Загрузка данных


reg export "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{D4CCA021-5685-4A3D-9D17-6BF8C5053E0D}" "$env:USERPROFILE\Desktop\dynamo-core-backup.reg"

Get-ChildItem "HKLM:\SOFTWARE\Classes\Installer\Products" | Where-Object { (Get-ItemProperty $_.PSPath -ErrorAction SilentlyContinue).ProductName -match 'Dynamo' } | Select-Object -ExpandProperty PSPath

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 'Dynamo' } | Select-Object -ExpandProperty PSPath

Remove-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{D4CCA021-5685-4A3D-9D17-6BF8C5053E0D}" -Recurse -Force

Remove-Item "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{D4CCA021-5685-4A3D-9D17-6BF8C5053E0D}" -Recurse -Force

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 'Dynamo' } | Remove-Item -Recurse -Force

Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*, HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* -ErrorAction SilentlyContinue | Where-Object { $_.DisplayName -match 'Dynamo' } | Select-Object DisplayName

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, PSChildName, InstallSource | Format-Table -AutoSize -Wrap