PowerView
PS C:\htb> import-module .\PowerView.ps1
# get a list of all operating systems on the domain
Get-NetComputer -fulldata | select operatingsystem
# get a list of all users on the domain
Get-NetUser | select cn
Last updated
PS C:\htb> import-module .\PowerView.ps1
# get a list of all operating systems on the domain
Get-NetComputer -fulldata | select operatingsystem
# get a list of all users on the domain
Get-NetUser | select cn
Last updated