Core Cheat Sheet

Get in Command prompt by logging into the machine

Type Powershell in the CMD Window to get to PW

Get Virtual Machines

Get-VM

Start all VM

Start-VM *

Start one VM

Start-VM %VMNAME%

Show services set to automatically start and stopped : 

Get-WmiObject win32_service | Where-Object -FilterScript { $_.state -ne "Running" -and $_.StartMode -eq "Auto" } | Select-Object name 
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...