kerberos-double-hop
Method1: Create-credential-object (after connection to the remote host with domain cred)
Import-module .\PowerView.ps1 $SecPassword = ConvertTo-SecureString '!qazXSW@' -AsPlainText -Force$Cred = New-Object System.Management.Automation.PSCredential('INLANEFREIGHT\backupadm', $SecPassword)Get-domainuser -spn -credential $cred | select samaccountnameKlist (check cached tickets)Method2: PSSession configuration
Last updated