please help Me
BootCFG Doesn't Work with Windows 2000 Pro SP4
Is There an equivalent of "BootCFG" For Windows 2000 Pro ???
I want that the ini is to modify during unattended windows
Thank you for your help
Posted 04 January 2005 - 11:22 AM
Posted 04 January 2005 - 02:36 PM
[boot loader] timeout=1 default=multi(0)disk(0)rdisk(0)partition(1)\WINNT [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect
Posted 04 January 2005 - 03:53 PM
soulin, on Jan 4 2005, 08:26 PM, said:
Posted 04 January 2005 - 07:13 PM
@PUSHD "%~dp0" & ECHO OFF
@SET BOOTINI=%SystemDrive%\boot.ini
ATTRIB -A -H -R -S "%BOOTINI%"
COPY /Y "%BOOTINI%" "%BOOTINI%.old"
FOR /F "tokens=1 delims==" %%i IN ('FINDSTR /I /R "Microsoft Windows 2000 Professional" "%BOOTINI%"') DO (
CHANGEINI.EXE "%BOOTINI%" "operating systems" "%%i" "\"Microsoft Windows 2000 Professional\" /fastdetect /sos"
)
Posted 05 January 2005 - 12:35 AM
pinout, on Jan 5 2005, 02:13 AM, said:
@PUSHD "%~dp0" & ECHO OFF
@SET BOOTINI=%SystemDrive%\boot.ini
ATTRIB -A -H -R -S "%BOOTINI%"
COPY /Y "%BOOTINI%" "%BOOTINI%.old"
FOR /F "tokens=1 delims==" %%i IN ('FINDSTR /I /R "Microsoft Windows 2000 Professional" "%BOOTINI%"') DO (
CHANGEINI.EXE "%BOOTINI%" "operating systems" "%%i" "\"Microsoft Windows 2000 Professional\" /fastdetect /sos"
)
Posted 05 January 2005 - 03:44 AM
Posted 05 January 2005 - 03:50 PM