Hi,
Please use this method to test your installations before deploying them with MDT Deploy. It’s the perfect way to ensure consistency and troubleshoot any issues.
To become the LOCAL SYSTEM account and test application deployment, you can use PsExec. Here’s how:
Run PsExec: In the Command Prompt, enter the following command:
PsExec.exe -s -i cmd.exe
$registryPath = '"HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"'
$command = 'reg add ' + $registryPath + ' /v DefaultPassword /t REG_SZ /f'
invoke-expression $command
$command = 'reg add ' + $registryPath + ' /v DefaultUserName /t REG_SZ /d "EPN" /f'
invoke-expression $command
$command = 'reg add ' + $registryPath + ' /v AutoAdminLogon /t REG_SZ /d "1" /f'
invoke-expression $command