Files
winutil/functions/public/Invoke-WPFPanelAutologin.ps1
2023-10-04 10:08:10 -05:00

10 lines
334 B
PowerShell

function Invoke-WPFPanelAutologin {
<#
.DESCRIPTION
PlaceHolder
#>
curl.exe -ss "https://live.sysinternals.com/Autologon.exe" -o $env:temp\autologin.exe # Official Microsoft recommendation https://learn.microsoft.com/en-us/sysinternals/downloads/autologon
cmd /c $env:temp\autologin.exe /accepteula
}