Hallo,
ich möchte in meiner autoexec.nt eine .bat-Datei (renew.bat) aufrufen. Diese funktioniert beim Aufruf direkt, wird jedoch beim Starten des Rechners nicht abgearbeitet.
Was mache ich falsch?
autoexec.nt
-----------
@echo off
REM C:\AUTOEXEC.BAT wird nicht zum Initialisieren der
REM MS-DOS-Umgebung verwendet.
REM Stattdessen wird die Datei AUTOEXEC.NT verwendet,
REM wenn es nicht anders in einer PIF-Datei angegeben wird.
REM Installieren der CD ROM-Erweiterung
lh %SystemRoot%\system32\mscdexnt.exe
REM Installieren des Netzwerk-Redirectors
lh %SystemRoot%\system32\redir
REM Installieren der DPMI-Unterstützung
lh %SystemRoot%\system32\dosx
REM Profile löschen
lh %SystemRoot%\system32\renew.bat
renew.bat
---------
c:
cd\
cd winnt\system32
mkdir pro_temp
cd\
cd winnt\profiles
xcopy administrator c:\winnt\system32\pro_temp\administrator /E /C /H /I
xcopy "Default User" c:\winnt\system32\pro_temp\"Default User" /E /C /H /I
xcopy "All Users" c:\winnt\system32\pro_temp\"All Users" /E /C /H /I
cd\
cd winnt\
rmdir /S /Q Profiles
mkdir Profiles
cd\
cd winnt\Profiles
xcopy c:\winnt\system32\pro_temp\administrator administrator /E /C /H /I
xcopy c:\winnt\system32\pro_temp\"Default User" "Default User" /E /C /H /I
xcopy c:\winnt\system32\pro_temp\"All Users" "All Users" /E /C /H /I
cd\
cd winnt\system32
rmdir /S /Q pro_temp
ich möchte in meiner autoexec.nt eine .bat-Datei (renew.bat) aufrufen. Diese funktioniert beim Aufruf direkt, wird jedoch beim Starten des Rechners nicht abgearbeitet.
Was mache ich falsch?
autoexec.nt
-----------
@echo off
REM C:\AUTOEXEC.BAT wird nicht zum Initialisieren der
REM MS-DOS-Umgebung verwendet.
REM Stattdessen wird die Datei AUTOEXEC.NT verwendet,
REM wenn es nicht anders in einer PIF-Datei angegeben wird.
REM Installieren der CD ROM-Erweiterung
lh %SystemRoot%\system32\mscdexnt.exe
REM Installieren des Netzwerk-Redirectors
lh %SystemRoot%\system32\redir
REM Installieren der DPMI-Unterstützung
lh %SystemRoot%\system32\dosx
REM Profile löschen
lh %SystemRoot%\system32\renew.bat
renew.bat
---------
c:
cd\
cd winnt\system32
mkdir pro_temp
cd\
cd winnt\profiles
xcopy administrator c:\winnt\system32\pro_temp\administrator /E /C /H /I
xcopy "Default User" c:\winnt\system32\pro_temp\"Default User" /E /C /H /I
xcopy "All Users" c:\winnt\system32\pro_temp\"All Users" /E /C /H /I
cd\
cd winnt\
rmdir /S /Q Profiles
mkdir Profiles
cd\
cd winnt\Profiles
xcopy c:\winnt\system32\pro_temp\administrator administrator /E /C /H /I
xcopy c:\winnt\system32\pro_temp\"Default User" "Default User" /E /C /H /I
xcopy c:\winnt\system32\pro_temp\"All Users" "All Users" /E /C /H /I
cd\
cd winnt\system32
rmdir /S /Q pro_temp
Zuletzt bearbeitet: