mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-06-14 03:16:31 +10:00
5 lines
224 B
PowerShell
5 lines
224 B
PowerShell
function Invoke-WPFPanelAutologin {
|
|
Invoke-WebRequest -Uri https://live.sysinternals.com/Autologon.exe -OutFile "$Env:Temp\autologin.exe"
|
|
Start-Process -FilePath "$Env:Temp\autologin.exe" -ArgumentList /accepteula
|
|
}
|