jblandrum
jblandrum
I'm actually having the same issue w/ make-token I've got a local Administrator password in a lab and make-token -d . -u Administrator -p -T LOGON_INTERACTIVE succeeds and the built-in...
Replacing this `$Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown").VirtualKeyCode)` with this (MSDN Uses something like this) `$Host.UI.RawUI.ReadKey([System.Management.Automation.Host.ReadKeyOptions]"IncludeKeyDown"-bor[System.Management.Automation.Host.ReadKeyOptions]"NoEcho"-bor[System.Management.Automation.Host.ReadKeyOptions]"IncludeKeyUp").VirtualKeyCode)` or just `$Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown,IncludeKeyUp").VirtualKeyCode)` Look at the way the craft the options in the MSDN examples. It doesn't look like...