Management (processes)
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management
Commands
Get-PSDrive – Gets drives in the current session
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-psdrive
Get-PSDrive
Get-Process – Gets the processes that are running on the local computer
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/get-process
Get-Process -IncludeUserName deadlinemonitor
Get-Process – Stops one or more running processes
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/stop-process
Get-Process -IncludeUserName deadlinemonitor | Stop-Process -Force
Rename-Computer – Renames a computer
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/rename-computer
The Force parameter suppresses the confirmation prompt.
Rename-Computer -ComputerName "Srv01" -NewName "Server001" -DomainCredential Admin01@domain.lan -Force -Restart
Not need to leave and rejoin the domain or anything like that.