В начало блога На главную

Удаление программ и служб удаленно powershell

Enter-PSSession -ComputerName K7-210134020059

Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, Size, InstallDate | Format-Table -AutoSize
Get-ItemProperty HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, Size, InstallDate | Format-Table -AutoSize
Get-WmiObject Win32_Product | ft name,version,vendor,packagename
wmic product where name="Имя программы" call uninstall /nointeractive

get-service
Remove-Service -Name "ServiceName"
sc.exe delete ServiceName

Рассказать: