PowerUp
PowerUp is a PowerShell tool used for privilege escalation on Windows systems. It helps identify misconfigurations and exploitable settings that allow users to elevate their privileges. It typically can be found at /share/windows-resources/powersploit/Privesc/PowerUp.ps1
.
# Service status
Get-Service -Name 'BackupMonitor'
# Start/Stop the service
Start-Service -Name "<ServiceName>"
Stop-Service -Name "<ServiceName>" -Force
# Restart the service
Restart-Service -Name 'BackupMonitor' -Force
Last updated
Was this helpful?