diff --git a/functions/public/Invoke-WPFPanelAutologin.ps1 b/functions/public/Invoke-WPFPanelAutologin.ps1 index 6a2da7b7..10d5e56f 100644 --- a/functions/public/Invoke-WPFPanelAutologin.ps1 +++ b/functions/public/Invoke-WPFPanelAutologin.ps1 @@ -1,12 +1,4 @@ function Invoke-WPFPanelAutologin { - <# - - .SYNOPSIS - Enables autologin using Sysinternals Autologon.exe - - #> - - # Official Microsoft recommendation: https://learn.microsoft.com/en-us/sysinternals/downloads/autologon - Invoke-WebRequest -Uri "https://live.sysinternals.com/Autologon.exe" -OutFile "$env:temp\autologin.exe" - cmd /c "$env:temp\autologin.exe" /accepteula + Invoke-WebRequest -Uri https://live.sysinternals.com/Autologon.exe -OutFile "$Env:Temp\autologin.exe" + Start-Process -FilePath "$Env:Temp\autologin.exe" -ArgumentList /accepteula }