AutoLogon - Run
functions/public/Invoke-WPFPanelAutologin.ps1
1function Invoke-WPFPanelAutologin {
2 Invoke-WebRequest -Uri https://live.sysinternals.com/Autologon.exe -OutFile "$Env:Temp\autologin.exe"
3 Start-Process -FilePath "$Env:Temp\autologin.exe" -ArgumentList /accepteula
4}