Enumeration with Powerview
Introduction
How to start up and get users and groups from PowerView.
List Shared Folders
Get list of Running OSs
Cheatsheet
Last updated
Powerview is a powerful powershell script from powershell empire that can be used for enumerating a domain after you have already gained a shell in the system.
Start Powershell - powershell -ep bypass -ep bypasses the execution policy of powershell allowing you to easily run scripts

Start PowerView - . .\PowerView.ps1
Enumerate the domain users - Get-NetUser | select cn

Enumerate the domain groups - Get-NetGroup -GroupName *admin*

Last updated
Invoke-ShareFinderGet-NetComputer -fulldata | select operatingsystem