Удаление программ и служб удаленно powershell
1 2 3 4 5 6 7 8 9 10 11 |
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 |
Рассказать: