@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. rem DESCRIPTION: rem This script enables AutoAdminLogon for the root account. It causes root rem to automatically log in after Windows boots for the first time after rem an image has been loaded. It is called by sysprep_cmdlines.cmd. It rem must be called during this stage because Sysprep will disable rem AutoAdminLogon if it has been configured previously. set /A STATUS=0 rem Get the name of this batch file and the directory it is running from set SCRIPT_NAME=%~n0 set SCRIPT_FILENAME=%~nx0 set SCRIPT_DIR=%~dp0 rem Remove trailing slash from SCRIPT_DIR set SCRIPT_DIR=%SCRIPT_DIR:~0,-1% echo ====================================================================== echo %SCRIPT_FILENAME% beginning to run at: %DATE% %TIME% echo Directory %SCRIPT_FILENAME% is running from: %SCRIPT_DIR% echo. echo ---------------------------------------------------------------------- set USERNAME=root set PASSWORD=WINDOWS_ROOT_PASSWORD echo Setting AutoAdminLogon to 1... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /t REG_SZ /d "1" /f echo ERRORLEVEL: %ERRORLEVEL% set /A STATUS+=%ERRORLEVEL% echo. echo Setting DefaultUserName to %USERNAME%... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultUserName" /t REG_SZ /d "%USERNAME%" /f echo ERRORLEVEL: %ERRORLEVEL% set /A STATUS+=%ERRORLEVEL% echo. echo Setting DefaultPassword... reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "DefaultPassword" /t REG_SZ /d "%PASSWORD%" /f echo ERRORLEVEL: %ERRORLEVEL% set /A STATUS+=%ERRORLEVEL% echo. echo ---------------------------------------------------------------------- echo %SCRIPT_FILENAME% finished at: %DATE% %TIME% echo exiting with status: %STATUS% "%SystemRoot%\system32\eventcreate.exe" /T INFORMATION /L APPLICATION /SO %SCRIPT_FILENAME% /ID 555 /D "exit status: %STATUS%" 2>&1 exit /B %STATUS%