Jump to content

How to do raid drivers and hotfixes correctly.


webmedic

Recommended Posts


I just noticed something while looking through my \PREP directory that the \PREP\2 folder is now empty ... I had run the DO.CMD script a couple times (the first time i forgot to change the path in those few spots) so i decided to look in the log file, and as i suspected, none of the files i had (before they were deleted) in the \PREP\2 folder got included.

Also, as you mentioned, I did get that error about the MDAC hotfix, i may just remove that file all together and install it via the scripts later on in the process.

Link to comment
Share on other sites

the new do.cmd will autocreate it. I was trying to force the mdac hotfix to install through a cmd file. It sitll does not work. I'm running out of options wiht that stinky thing.

here is the latest do.cmd

CLS
@echo off
:: setlocal enableextensions
echo. > log.txt

:: check if hotfix file exists
if not exist 1\*.exe echo No hotfixes present. 2>&1 | bin\mtee/+ log.txt
if not exist 1\*.exe echo Please add your hotfixes. 2>&1 | bin\mtee/+ log.txt
if not exist 1\*.exe goto _end

:: create folders Needed for setup
echo. 2>&1 | bin\mtee/+ log.txt
echo Creating directories and set up. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
SET PrepDir=
if "%1" == "/prep" set PrepDir=%2
IF DEFINED PrepDir goto :Make_Dir
echo using for to find dir
FOR /F "delims=" %%i IN ('cd') DO SET PrepDir=%%i

:Make_Dir
echo PrepDir = %PrepDir% 2>&1 | bin\mtee/+ log.txt
if not exist 4 md 4 2>&1 | bin\mtee/+ log.txt
if not exist 5 md 5 2>&1 | bin\mtee/+ log.txt
if not exist 5\svcpack md 5\SVCPACK 2>&1 | bin\mtee/+ log.txt
if not exist tmp md tmp 2>&1 | bin\mtee/+ log.txt

:: delete any files in extract and final folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Deleteing stale files. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist 4\* del /s /q 4\* 2>&1 | bin\mtee/+ log.txt
if exist 5\* del /s /q 5\* 2>&1 | bin\mtee/+ log.txt

:: extract hotfix to extract folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix1 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do COPY /Y "1\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do del /f /q 1\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 1 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do 1\%%~ni.exe /q /x:4 >> log.txt

:: extract hotfix to extract folder thisis for newer style hot fixes
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix2 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do COPY /Y "2\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do del /f /q 2\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do MD tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do tmp\%%~ni.exe /Q /T:%PrepDir%\tmp\%%~ni /C >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do xcopy /d /h /y tmp\%%~ni\*.* 4 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do bin\rm.exe /fvn tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 2 >> log.txt

attrib -R -A -S -H tmp\* /S
:: extract hotfix to extract folder thisis for newer style hot fixes
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix3 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do COPY /Y "3\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do del /f /q 3\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 3\*.cmd`) do del /f /q 3\%%~ni.cmd >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do MD tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do tmp\%%~ni.exe /Q /T:%PrepDir%\tmp\%%~ni /C >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do xcopy /d /h /y tmp\%%~ni\*.* 4 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do del /f /q tmp\%%~ni\*.* >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do bin\rm.exe /fvn tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 3 >> log.txt

echo. 2>&1 | bin\mtee/+ log.txt
echo Adding cmd files to hotfix3 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo CLS 2>&1 | bin\mtee /+ log.txt 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo @echo off 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo start /wait %systemdrive%\install\system\hotfixes3\%%~ni.exe /T:%systemdrive%\install\tmp /C:"%systemdrive%\install\tmp\dahotfix.exe /q /n" /Q 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo EXIT 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd

:: check extraction took place
echo. 2>&1 | bin\mtee/+ log.txt
echo Checking for extracted files 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if not exist 4\* goto _end

:: move hotfix to svcpack folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Moving hotfixes to svcpack folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
copy /y 1\*.exe 5\svcpack >> log.txt
copy /y 2\*.exe 5\svcpack >> log.txt
copy /y 3\*.cmd 5\svcpack >> log.txt
copy /y 3\*.exe 5\svcpack >> log.txt

:: delete unwanted files from extract folder
echo. 2>&1 | bin\mtee/+ log.txt
echo delete unwanted files from extract folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
for /f %%i in (files\hotkill.ini) do del /f /q /s 4\%%i 2>&1 | bin\mtee/+ log.txt
for /f %%i in (files\hotkill.ini) do del /f /q /s 4\sp2\%%i 2>&1 | bin\mtee/+ log.txt

:: move cat files to svcpack folder
echo. 2>&1 | bin\mtee/+ log.txt
echo move cat files to svcpack folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
for %%i in (4\*.cat 4\update\*.cat 4\sp2\update\*.cat) do move /y %%i 5\svcpack 2>&1 | bin\mtee/+ log.txt

::NEW BIT::
echo. 2>&1 | bin\mtee/+ log.txt
echo Updating sp1.cab. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
xcopy /d /h /u /y 4\*.* files\sp1 >> log.txt
xcopy /d /h /u /y 4\sp2\*.* files\sp1 >> log.txt
bin\cabarc.exe N 5\sp1.cab files\sp1\*.* >> log.txt
::END::

:COMPRESS
:: compress files and copy to output folder
echo. 2>&1 | bin\mtee/+ log.txt
echo compress files and copy to output folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist files\winntbbu.dll xcopy /y files\winntbbu.dll 4 >> log.txt
bin\compress.exe -d -r -zx21 4\* 5 >> log.txt
bin\compress.exe -d -r -zx21 4\sp2\* 5 >> log.txt

:: create svcpack.inf file
echo. 2>&1 | bin\mtee/+ log.txt
echo create svcpack.inf file. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
echo [Version] 2>&1 | bin\mtee /+ log.txt 5\svcpack.inf
echo Signature="$Windows NT$" 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo MajorVersion=5 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo MinorVersion=1 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo BuildNumber=2600 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [SetupData] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo CatalogSubDir="\i386\svcpack" 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [SetupHotfixesToRun] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf

for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do echo %%~ni.exe /n /q /u /z 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do echo %%~ni.exe /Q:A /R:N 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
::for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo %%~ni.exe /T:C:\\install\tmp /C:"c:\\install\tmp\dahotfix.exe /q /n" /Q >> 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 3\*.cmd`) do echo %%~ni.cmd 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [ProductCatalogsToInstall] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 5\svcpack\*.cat`) do echo %%~ni.cat 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf

:: compress svcpack.inf
echo. 2>&1 | bin\mtee/+ log.txt
echo compress svcpack.inf file. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
bin\compress.exe -d -r -zx21 5\svcpack.inf >> log.txt
:: comment out the next line if you want to examing svcpack.inf afterwards.
:: del /q 5\svcpack.inf

:: copy winnt.sif to output folder
echo. 2>&1 | bin\mtee/+ log.txt
echo copy extra files. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist files\winnt.sif xcopy /y files\winnt.sif 5 >> log.txt

:: copy dosnet.inf to output folder
if exist files\dosnet.inf xcopy /y files\dosnet.inf 5 >> log.txt

:: copy TXTSETUP.SIF to output folder
if exist files\TXTSETUP.SIF xcopy /y files\TXTSETUP.SIF 5 >> log.txt
if exist files\sys\*.sys xcopy /y files\sys\*.sys 5 >> log.txt

:: clean up
:: if exist 1\* del /s /q 1\*
:: if exist 2\* del /s /q 2\*
:: if exist 3\* del /s /q 3\*
:: attrib -R -A -S -H tmp\* /S
:: rd /s /q tmp

goto _end

:_end

among other things if you have an winntbbu.dll that you use if you put it into your files dir then it will copy it and pack it up for you so ti will be a part of your installer. Just a little more automatic now.

For me I have it set up so that all the files I edit often are in files and then I use do.cmd to copy them into place. I decided that winntbbu.dll was a good candidate so I did't have to unpack it and pack it back up by hand all the time.

Link to comment
Share on other sites

just curious did you use some horry reg hacks or anything? also to note that there are a few other places were that stuff can be tunred off. For instance in my install I have it setup to install mozilla and use it by default. I also dont use the virus infested piece of garbage known as oe. So I know they can be turned off beacsue I do that to them.

Come to think of it are you using my winnt.sif that I included with the hotfix installer? If so I did shut off oe in there. I have not found a way to keep ie from installing yet though I simply set mozilla as default.

As for why ie would not be working I dont think i included any of my reghacks in that kit so you should not get anything like that from me. I can include them if you like though.

Link to comment
Share on other sites

heres my scripts

do.cmd

CLS
@echo off
:: setlocal enableextensions
echo. > log.txt

:: check if hotfix file exists
if not exist 1\*.exe echo No hotfixes present. 2>&1 | bin\mtee/+ log.txt
if not exist 1\*.exe echo Please add your hotfixes. 2>&1 | bin\mtee/+ log.txt
if not exist 1\*.exe goto _end

:: create folders Needed for setup
echo. 2>&1 | bin\mtee/+ log.txt
echo Creating directories and set up. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
SET PrepDir=
if "%1" == "/prep" set PrepDir=%2
IF DEFINED PrepDir goto :Make_Dir
echo using for to find dir
FOR /F "delims=" %%i IN ('cd') DO SET PrepDir=%%i

:Make_Dir
echo PrepDir = %PrepDir% 2>&1 | bin\mtee/+ log.txt
if not exist 4 md 4 2>&1 | bin\mtee/+ log.txt
if not exist 5 md 5 2>&1 | bin\mtee/+ log.txt
if not exist 5\svcpack md 5\SVCPACK 2>&1 | bin\mtee/+ log.txt
if not exist tmp md tmp 2>&1 | bin\mtee/+ log.txt

:: delete any files in extract and final folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Deleteing stale files. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist 4\* del /s /q 4\* 2>&1 | bin\mtee/+ log.txt
if exist 5\* del /s /q 5\* 2>&1 | bin\mtee/+ log.txt

:: extract hotfix to extract folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix1 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do COPY /Y "1\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do del /f /q 1\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 1 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do 1\%%~ni.exe /q /x:4 >> log.txt

:: extract hotfix to extract folder thisis for newer style hot fixes
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix2 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do COPY /Y "2\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do del /f /q 2\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do MD tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do tmp\%%~ni.exe /Q /T:%PrepDir%\tmp\%%~ni /C >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do xcopy /d /h /y tmp\%%~ni\*.* 4 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do bin\rm.exe /fvn tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 2 >> log.txt

attrib -R -A -S -H tmp\* /S
:: extract hotfix to extract folder thisis for newer style hot fixes
echo. 2>&1 | bin\mtee/+ log.txt
echo Adding hotfixes from hotfix3 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do COPY /Y "3\%%~ni.EXE" "tmp\????????.EXE" >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do del /f /q 3\%%~ni.EXE >> log.txt
for /f "usebackq delims==" %%i in (`dir /b 3\*.cmd`) do del /f /q 3\%%~ni.cmd >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do MD tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do tmp\%%~ni.exe /Q /T:%PrepDir%\tmp\%%~ni /C >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do xcopy /d /h /y tmp\%%~ni\*.* 4 >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do del /f /q tmp\%%~ni\*.* >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do bin\rm.exe /fvn tmp\%%~ni >> log.txt
for /f "usebackq delims==" %%i in (`dir /b tmp\*.exe`) do Move /Y tmp\%%~ni.exe 3 >> log.txt

echo. 2>&1 | bin\mtee/+ log.txt
echo Adding cmd files to hotfix3 folder 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt

for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo CLS 2>&1 | bin\mtee /+ log.txt 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo @echo off 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo start /wait %systemdrive%\install\system\hotfixes3\%%~ni.exe /T:%systemdrive%\install\tmp /C:"%systemdrive%\install\tmp\dahotfix.exe /q /n" /Q 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd
for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo EXIT 2>&1 | bin\mtee /+ log.txt /+ 3\%%~ni.cmd

:: check extraction took place
echo. 2>&1 | bin\mtee/+ log.txt
echo Checking for extracted files 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if not exist 4\* goto _end

:: move hotfix to svcpack folder
echo. 2>&1 | bin\mtee/+ log.txt
echo Moving hotfixes to svcpack folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
copy /y 1\*.exe 5\svcpack >> log.txt
copy /y 2\*.exe 5\svcpack >> log.txt
copy /y 3\*.cmd 5\svcpack >> log.txt
copy /y 3\*.exe 5\svcpack >> log.txt

:: delete unwanted files from extract folder
echo. 2>&1 | bin\mtee/+ log.txt
echo delete unwanted files from extract folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
for /f %%i in (files\hotkill.ini) do del /f /q /s 4\%%i 2>&1 | bin\mtee/+ log.txt
for /f %%i in (files\hotkill.ini) do del /f /q /s 4\sp2\%%i 2>&1 | bin\mtee/+ log.txt

:: move cat files to svcpack folder
echo. 2>&1 | bin\mtee/+ log.txt
echo move cat files to svcpack folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
for %%i in (4\*.cat 4\update\*.cat 4\sp2\update\*.cat) do move /y %%i 5\svcpack 2>&1 | bin\mtee/+ log.txt

::NEW BIT::
echo. 2>&1 | bin\mtee/+ log.txt
echo Updating sp1.cab. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
xcopy /d /h /u /y 4\*.* files\sp1 >> log.txt
xcopy /d /h /u /y 4\sp2\*.* files\sp1 >> log.txt
bin\cabarc.exe N 5\sp1.cab files\sp1\*.* >> log.txt
::END::

:COMPRESS
:: compress files and copy to output folder
echo. 2>&1 | bin\mtee/+ log.txt
echo compress files and copy to output folder. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist files\winntbbu.dll xcopy /y files\winntbbu.dll 4 >> log.txt
bin\compress.exe -d -r -zx21 4\* 5 >> log.txt
bin\compress.exe -d -r -zx21 4\sp2\* 5 >> log.txt

:: create svcpack.inf file
echo. 2>&1 | bin\mtee/+ log.txt
echo create svcpack.inf file. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
echo [Version] 2>&1 | bin\mtee /+ log.txt 5\svcpack.inf
echo Signature="$Windows NT$" 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo MajorVersion=5 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo MinorVersion=1 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo BuildNumber=2600 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [SetupData] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo CatalogSubDir="\i386\svcpack" 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [SetupHotfixesToRun] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf

for /f "usebackq delims==" %%i in (`dir /b 1\*.exe`) do echo %%~ni.exe /n /q /u /z 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 2\*.exe`) do echo %%~ni.exe /Q:A /R:N 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
::for /f "usebackq delims==" %%i in (`dir /b 3\*.exe`) do echo %%~ni.exe /T:C:\\install\tmp /C:"c:\\install\tmp\dahotfix.exe /q /n" /Q >> 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 3\*.cmd`) do echo %%~ni.cmd 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo. 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
echo [ProductCatalogsToInstall] 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf
for /f "usebackq delims==" %%i in (`dir /b 5\svcpack\*.cat`) do echo %%~ni.cat 2>&1 | bin\mtee /+ log.txt /+ 5\svcpack.inf

:: compress svcpack.inf
echo. 2>&1 | bin\mtee/+ log.txt
echo compress svcpack.inf file. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
bin\compress.exe -d -r -zx21 5\svcpack.inf >> log.txt
:: comment out the next line if you want to examing svcpack.inf afterwards.
:: del /q 5\svcpack.inf

:: copy winnt.sif to output folder
echo. 2>&1 | bin\mtee/+ log.txt
echo copy extra files. 2>&1 | bin\mtee/+ log.txt
echo __________________________________________________________________________ 2>&1 | bin\mtee/+ log.txt
echo. 2>&1 | bin\mtee/+ log.txt
if exist files\winnt.sif xcopy /y files\winnt.sif 5 >> log.txt

:: copy dosnet.inf to output folder
if exist files\dosnet.inf xcopy /y files\dosnet.inf 5 >> log.txt

:: copy TXTSETUP.SIF to output folder
if exist files\TXTSETUP.SIF xcopy /y files\TXTSETUP.SIF 5 >> log.txt
if exist files\sys\*.sys xcopy /y files\sys\*.sys 5 >> log.txt

:: clean up
:: if exist 1\* del /s /q 1\*
:: if exist 2\* del /s /q 2\*
:: if exist 3\* del /s /q 3\*
:: attrib -R -A -S -H tmp\* /S
:: rd /s /q tmp

goto _end

:_end

winnt.sif

;SetupMgrTag
[Data]
  AutoPartition=0
  MsDosInitiated="0"
  UnattendedInstall="Yes"

[Unattended]
  UnattendMode=FullUnattended
  OemSkipEula=Yes
  OemPreinstall=Yes
  TargetPath=\WINDOWS
  Repartition=No
  UnattendSwitch="Yes"
  WaitForReboot=No
  AutoActivate=No
  DriverSigningPolicy=Ignore

[GuiUnattended]
   AdminPassword="wrong"
   EncryptedAdminPassword=NO
   AutoLogon=Yes
   OEMSkipRegional=1
   TimeZone=20
   OemSkipWelcome=1

[UserData]
   ProductKey=not here
   FullName="right"
   OrgName="CHC"
   ComputerName=*

[Display]
   BitsPerPel=32
   Xresolution=1280
   YResolution=1024
   Vrefresh=85

[TapiLocation]
   CountryCode=1
   Dialing=Tone
   AreaCode=319

[RegionalSettings]
   LanguageGroup=17,1
   Language=00000409

[Identification]
   JoinWorkgroup=MSHOME

[Networking]
   InstallDefaultComponents=No

[NetAdapters]
   Adapter1=params.Adapter1

[params.Adapter1]
   INFID=*

[NetClients]
   MS_MSClient=params.MS_MSClient

[NetServices]
   MS_SERVER=params.MS_SERVER

[NetProtocols]
   MS_TCPIP=params.MS_TCPIP
   MS_NWIPX=params.MS_NWIPX
   MS_NetBEUI=params.MS_NetBEUI

[params.MS_TCPIP]
   DNS=Yes
   UseDomainNameDevolution=No
   EnableLMHosts=Yes
   AdapterSections=params.MS_TCPIP.Adapter1

[params.MS_TCPIP.Adapter1]
   SpecificTo=Adapter1
   DHCP=Yes
   WINS=No
   NetBIOSOptions=0

[params.MS_NWIPX]
   VirtualNetworkNumber=00000000
   AdapterSections=params.MS_NWIPX.Adapter1

[params.MS_NWIPX.Adapter1]
   SpecificTo=Adapter1
   PktType=0xFF
   NetworkNumber=00000000

[Branding]
   BrandIEUsingUnattended=Yes

[URL]
   Home_Page=www.cnn.com
   Search_Page=www.google.com

[Components]
   msmsgs=off
   msnexplr=off
   freecell=off
   hearts=off
   minesweeper=off
   pinball=off
   solitaire=off
   spider=off
   zonegames=off

[Shell]
 DefaultStartPanelOff = Yes
 DefaultThemesOff = Yes

[GuiRunOnce]
   %systemdrive%\install\main_batch.cmd
   %systemdrive%\install\tweaks.cmd
   %systemdrive%\install\applications.cmd

main_batch.cmd

CLS
@echo off
ECHO.
ECHO Adding Default User...
net user tbone3 /add
net localgroup "administrators" tbone3 /add
ECHO.
ECHO Welcome to Tbone2's Updates!Set back and let Tbone2 take Over.
ECHO Over the next few minutes you will see automated installations
ECHO of various windows updates, and registry tweaks being implemented.
ECHO The computer will restart automatically once the whole process has
ECHO finished!
ECHO.
ECHO Copying Tools...
COPY "%systemdrive%\install\deluser.exe" "%systemroot%\"
ECHO.
ECHO Removing Wallpapers...
DEL "%systemroot%\Blue Lace 16.bmp"
DEL "%systemroot%\Coffee Bean.bmp"
DEL "%systemroot%\FeatherTexture.bmp"
DEL "%systemroot%\Gone Fishing.bmp"
DEL "%systemroot%\Greenstone.bmp"
DEL "%systemroot%\Prairie Wind.bmp"
DEL "%systemroot%\Rhododendron.bmp"
DEL "%systemroot%\River Sumida.bmp"
DEL "%systemroot%\Santa Fe Stucco.bmp"
DEL "%systemroot%\Soap Bubbles.bmp"
DEL "%systemroot%\Zapotec.bmp"
DEL "%systemroot%\Web\Wallpaper\Crystal.jpg"
DEL "%systemroot%\Web\Wallpaper\Friend.jpg"
DEL "%systemroot%\Web\Wallpaper\Home.jpg"
DEL "%systemroot%\Web\Wallpaper\Moon flower.jpg"
DEL "%systemroot%\Web\Wallpaper\Peace.jpg"
DEL "%systemroot%\Web\Wallpaper\Power.jpg"
DEL "%systemroot%\Web\Wallpaper\Purple flower.jpg"
DEL "%systemroot%\Web\Wallpaper\Radiance.jpg"
DEL "%systemroot%\Web\Wallpaper\Ripple.jpg"
DEL "%systemroot%\Web\Wallpaper\Stonehenge.jpg"
DEL "%systemroot%\Web\Wallpaper\Vortec space.jpg"
DEL "%systemroot%\Web\Wallpaper\Ascent.jpg"
DEL "%systemroot%\Web\Wallpaper\Autumn.jpg"
DEL "%systemroot%\Web\Wallpaper\Azul.jpg"
DEL "%systemroot%\Web\Wallpaper\Follow.jpg"
DEL "%systemroot%\Web\Wallpaper\Red moon desert.jpg"
DEL "%systemroot%\Web\Wallpaper\Tulips.jpg"
DEL "%systemroot%\Web\Wallpaper\Wind.jpg"
ECHO.
ECHO Removing useless shortcuts...
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Set Program Access and Defaults.lnk"
DEL "%systemdrive%\Documents and Settings\All Users\Start Menu\Windows Catalog.lnk"
ECHO.
ECHO Removing Screensavers...
DEL "%systemroot%\system32\dllcache\scrnsave.scr"
DEL "%systemroot%\system32\dllcache\ss3dfo.scr"
DEL "%systemroot%\system32\dllcache\ssbezier.scr"
DEL "%systemroot%\system32\dllcache\ssflwbox.scr"
DEL "%systemroot%\system32\dllcache\ssmarque.scr"
DEL "%systemroot%\system32\dllcache\ssmypics.scr"
DEL "%systemroot%\system32\dllcache\ssmyst.scr"
DEL "%systemroot%\system32\dllcache\sspipes.scr"
DEL "%systemroot%\system32\dllcache\ssstars.scr"
DEL "%systemroot%\system32\dllcache\sstext3d.scr"
DEL "%systemroot%\system32\scrnsave.scr"
DEL "%systemroot%\system32\ss3dfo.scr"
DEL "%systemroot%\system32\ssbezier.scr"
DEL "%systemroot%\system32\ssflwbox.scr"
DEL "%systemroot%\system32\ssmarque.scr"
DEL "%systemroot%\system32\ssmypics.scr"
DEL "%systemroot%\system32\ssmyst.scr"
DEL "%systemroot%\system32\sspipes.scr"
DEL "%systemroot%\system32\ssstars.scr"
DEL "%systemroot%\system32\sstext3d.scr"
ECHO.
EXIT

tweaks.cmd

CLS
@echo off
ECHO.
ECHO Applying Registry Tweaks...
REGEDIT /S %systemdrive%\install\RegTweaks.reg
ECHO.
EXIT

applications.cmd

CLS
@echo off
ECHO.
ECHO Deleting useless ASP.NET User Account created by .NET Framework 1.1...
start /wait DELUSER /Q aspnet
ECHO.
ECHO Restarting the PC in 40 Seconds...
SHUTDOWN -r -t 60 -c "Sit back and relax.Tbone2 will be done soon.This will give enough time for the shell to fully load before it restarts.THANK YOU PLEASE DRIVE THROU"
ECHO.
ECHO Deleting Temp Installation Files...
RD /S /Q %systemdrive%\install
ECHO.
EXIT

RegTweaks.reg

Windows Registry Editor Version 5.00

;-------------------------------------------------------------------------SERVICES------------------------------------------------------------

;Disables Alerter Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Alerter]
"Start"=dword:00000004

;Disables Application Layer Gateway Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ALG]
"Start"=dword:00000004

;Disables Background Intelligent Transfer Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BITS]
"Start"=dword:00000004

;Disables Computer Browser Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Browser]
"Start"=dword:00000004

;Disables Indexing Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cisvc]
"Start"=dword:00000004

;Disables ClipBook Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ClipSrv]
"Start"=dword:00000004

;Disables COM+ System Application Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\COMSysApp]
"Start"=dword:00000004

;Disables Logical Disk Manager Administrative Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\dmadmin]
"Start"=dword:00000004

;Disables COM+ Event System Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EventSystem]
"Start"=dword:00000004

;Disables Error Reporting Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ERSvc]
"Start"=dword:00000004

;Disables Fast User Switching Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\FastUserSwitchingCompatibility]
"Start"=dword:00000004

;Disables Help and Support Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\helpsvc]
"Start"=dword:00000004

;Disables Human Interface Device Access Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HidServ]
"Start"=dword:00000004

;Disables IMAPI CD-Burning COM Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ImapiService]
"Start"=dword:00000004

;Disables TCP/IP NetBIOS Helper Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LmHosts]
"Start"=dword:00000004

;Disables Messenger Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Messenger]
"Start"=dword:00000004

;Disables NetMeeting Remote Desktop Sharing Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\mnmsrvc]
"Start"=dword:00000004

;Disables Distributed Transaction Coordinator Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSDTC]
"Start"=dword:00000004

;Disables Network DDE Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetDDE]
"Start"=dword:00000004

;Disables Network DDE DSDM Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NetDDEdsdm]
"Start"=dword:00000004

;Disables Net Logon Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon]
"Start"=dword:00000004

;Disables Network Connections Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netman]
"Start"=dword:00000004

;Disables Network Location Awareness (NLA) Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Nla]
"Start"=dword:00000004

;Disables NT LM Security Support Provider Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NtLmSsp]
"Start"=dword:00000004

;Disables Removable Storage Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NtmsSvc]
"Start"=dword:00000004

;Disables Protected Storage Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ProtectedStorage]
"Start"=dword:00000004

;Disables Remote Access Auto Connection Manager Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasAuto]
"Start"=dword:00000004

;Disables Remote Access Connection Manager Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RasMan]
"Start"=dword:00000004

;Disables Remote Desktop Help Session Manager Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RDSessMgr]
"Start"=dword:00000004

;Disables Routing and Remote Access Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess]
"Start"=dword:00000004

;Disables Remote Registry Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteRegistry]
"Start"=dword:00000004

;Disables Remote Procedure Call (RPC) Locator Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RpcLocator]
"Start"=dword:00000004

;Disables QoS RSVP Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RSVP]
"Start"=dword:00000004

;Disables Security Accounts Manager Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SamSs]
"Start"=dword:00000004

;Disables Smart Card Helper Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardDrv]
"Start"=dword:00000004

;Disables Smart Card Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SCardSvr]
"Start"=dword:00000004

;Disables Secondary Logon Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\seclogon]
"Start"=dword:00000004

;Disables System Event Notification Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SENS]
"Start"=dword:00000004

;Disables Internet Connection Firewall (ICF) / Internet Connection Sharing (ICS) Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess]
"Start"=dword:00000004

;Disables Shell Hardware Detection Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ShellHWDetection]
"Start"=dword:00000004

;Disables SSDP Discovery Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SSDPSRV]
"Start"=dword:00000004

;Disables Windows Image Acquisition (WIA) Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stisvc]
"Start"=dword:00000004

;Disables MS Software Shadow Copy Provider Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SwPrv]
"Start"=dword:00000004

;Disables Performance Logs and Alerts Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SysmonLog]
"Start"=dword:00000004

;Disables Telephony Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TapiSrv]
"Start"=dword:00000004

;Disables Terminal Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TermService]
"Start"=dword:00000004

;Disables Themes Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Themes]
"Start"=dword:00000004

;Disables Telnet Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TlntSvr]
"Start"=dword:00000004

;Disables Distributed Link Tracking Client Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TrkWks]
"Start"=dword:00000004

;Disables Upload Manager Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\uploadmgr]
"Start"=dword:00000004

;Disables Universal Plug and Play Device Host Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\upnphost]
"Start"=dword:00000004

;Disables Uninterruptible Power Supply Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UPS]
"Start"=dword:00000004

;Disables Volume Shadow Copy Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VSS]
"Start"=dword:00000004

;Disables Windows Time Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\W32Time]
"Start"=dword:00000004

;Disables WebClient Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient]
"Start"=dword:00000004

;Disables Portable Media Serial Number Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WmdmPmSp]
"Start"=dword:00000004

;Disables WMI Performance Adapter Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WmiApSrv]
"Start"=dword:00000004

;Disables Automatic Updates Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv]
"Start"=dword:00000004

;Disables Wireless Zero Configuration Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WZCSVC]
"Start"=dword:00000004


;-----------------------------------------------------------------HARDWARE------------------------------------------------------------


;-----------------------------------------------------------CONTEXT MENU HANDLERS----------------------------------------------------

;Disables thumbnail cache
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DisableThumbnailCache"=dword:00000001

;Remove Shared Documents from My Computer
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\MyComputer\NameSpace\DelegateFolders\{59031a47-3f72-44a7-89c5-5595fe6b30ee}]

;Disable Windows Picture and Fax Viewer
[-HKEY_CLASSES_ROOT\SystemFileAssociations\image\ShellEx\ContextMenuHandlers\ShellImagePreview]

;Disables Error Reporting, but notifies when errors occur
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
"DoReport"=dword:00000000

;Right-Click Copy-To
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers]

[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Copy To]
@="{C2FBB630-2971-11D1-A18C-00C04FD75D13}"

;Right-Click Move-To
[HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers\Move To]
@="{C2FBB631-2971-11D1-A18C-00C04FD75D13}"

;This adds the "Open Command Window Here" on the right-click menu for folders
[HKEY_CLASSES_ROOT\Directory\shell\cmd]
@="Open Command Window Here"
[HKEY_CLASSES_ROOT\Directory\shell\cmd\command]
@="cmd.exe /k \"cd %L\""

;---------------------------------------------------------------NTFS TWEAKS-----------------------------------------------------------



;-----------------------------------------------------------------OTHERS----------------------------------------------------------

;No splash Outlook
[HKEY_CURRENT_USER\Identities\{FD0FFA6D-D417-493E-A233-4723805BC827}\Software\Microsoft\Outlook Express\5.0]
"NoSplash"=dword:00000001

;Disable the Desktop Cleanup Wizard
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\CleanupWiz]
"NoRun"=dword:00000001

;Disable WinXP CD-Burning
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoCDBurning"=dword:00000001

;Disables Windows Tour Bubble Popup
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
"RunCount"=dword:00000000
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]
"RunCount"=dword:00000000

;Configure Start Menu
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Hidden"=dword:00000001
"ShowCompColor"=dword:00000001
"HideFileExt"=dword:00000000
"DontPrettyPath"=dword:00000000
"ShowInfoTip"=dword:00000001
"HideIcons"=dword:00000000
"MapNetDrvBtn"=dword:00000000
"WebView"=dword:00000000
"Filter"=dword:00000000
"SuperHidden"=dword:00000001
"SeparateProcess"=dword:00000000
"ListviewAlphaSelect"=dword:00000001
"ListviewShadow"=dword:00000001
"ListviewWatermark"=dword:00000001
"TaskbarAnimations"=dword:00000001
"StartMenuInit"=dword:00000002
"StartButtonBalloonTip"=dword:00000002
"Start_ShowNetPlaces"=dword:00000001
"Start_LargeMFUIcons"=dword:00000000
"Start_MinMFU"=dword:0000000c
"Start_ShowControlPanel"=dword:00000001
"Start_EnableDragDrop"=dword:00000001
"StartMenuFavorites"=dword:00000000
"Start_ShowHelp"=dword:00000000
"Start_ShowMyComputer"=dword:00000000
"Start_ShowMyDocs"=dword:00000000
"Start_ShowMyMusic"=dword:00000000
"Start_ShowMyPics"=dword:00000000
"Start_ShowPrinters"=dword:00000000
"Start_ShowRun"=dword:00000001
"Start_ScrollPrograms"=dword:00000000
"Start_ShowSearch"=dword:00000001
"Start_ShowRecentDocs"=dword:00000000
"Start_AutoCascade"=dword:00000001
"Start_NotifyNewApps"=dword:00000000
"Start_AdminToolsRoot"=dword:00000000
"StartMenuChange"=dword:00000001
"StartMenuAdminTools"=dword:00000001
"TaskbarSizeMove"=dword:00000001
"TaskbarGlomming"=dword:00000000
"Start_ShowNetConn"=dword:00000001
"NoNetCrawling"=dword:00000000
"FolderContentsInfoTip"=dword:00000001
"FriendlyTree"=dword:00000001
"WebViewBarricade"=dword:00000001
"DisableThumbnailCache"=dword:00000001
"ShowSuperHidden"=dword:00000001
"ClassicViewState"=dword:00000000
"PersistBrowsers"=dword:00000000

;----------------------------------------------------------Visual Effects--------------------------------------------------------------------
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects]
"VisualFXSetting"=dword:00000003

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax]
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation]
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow]
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows]
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling]
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewWatermark]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\Themes]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation]
"DefaultValue"=dword:00000001
"DefaultApplied"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\WebView]
"DefaultApplied"=dword:00000001

but even if i don't run any cmd file after the install still no IE OR OE no network whatso ever.

Tbone2

Link to comment
Share on other sites

my directories are

Directory of D:\wxppro\1

09/07/2003  06:06 PM    <DIR>          .
09/07/2003  06:06 PM    <DIR>          ..
09/03/2003  08:37 AM         1,291,040 KB823980.EXE
09/03/2003  08:40 AM           427,368 Q322011.EXE
09/03/2003  08:37 AM           714,000 Q323255.EXE
09/03/2003  08:40 AM           882,536 Q327979.EXE
09/03/2003  08:35 AM         4,046,096 Q328310.EXE
09/03/2003  08:38 AM           381,288 Q329048.EXE
09/03/2003  08:38 AM           495,464 Q329115.EXE
09/03/2003  08:36 AM           494,352 Q329170.EXE
09/03/2003  08:38 AM           289,128 Q329390.EXE
09/03/2003  08:39 AM           217,360 Q329834.EXE
09/03/2003  08:36 AM         5,550,440 Q810565.EXE
09/03/2003  08:36 AM           388,456 Q810833.EXE
07/28/2003  06:36 PM           953,704 Q815485.EXE
09/07/2003  01:53 PM           346,400 KB824105.EXE
09/03/2003  08:36 AM         3,318,120 Q811493.EXE
09/03/2003  08:36 AM           425,832 Q814033.EXE
09/03/2003  08:40 AM         1,018,216 Q814995.EXE
09/03/2003  08:39 AM           537,360 Q815021.EXE
09/03/2003  08:37 AM           426,344 Q817606.EXE
09/03/2003  08:40 AM         1,051,936 KB820291.EXE
09/03/2003  08:39 AM           354,080 KB821253.EXE
09/03/2003  08:37 AM         5,327,648 KB821557.EXE
09/03/2003  08:37 AM           384,288 KB823559.EXE

Directory of D:\wxppro\2

09/07/2003  06:06 PM    <DIR>          .
09/07/2003  06:06 PM    <DIR>          ..
09/03/2003  08:36 AM           369,504 js56nen.EXE
09/03/2003  08:36 AM         1,992,832 q330994.EXE
09/03/2003  08:37 AM         2,218,112 q822925.EXE
07/22/2003  01:20 AM         2,064,512 Q818529.EXE
09/04/2003  07:58 PM         1,950,856 KB822964.EXE

Directory of D:\wxppro\3

09/07/2003  06:06 PM    <DIR>          .
09/07/2003  06:06 PM    <DIR>          ..
09/03/2003  08:38 AM         1,626,688 Q823718.EXE

thats it this right?

Thank Tbone2

Link to comment
Share on other sites

if i use the batch way here the hotfix.cmd

CLS
@echo off
ECHO.
ECHO Welcome to Tbone2's Installer!!! Just set back and let Tbone2 take over.
ECHO Installing windows updates and hotfixes. Go have a cup of coffee.
ECHO This should take 20 minutes or less.
ECHO.
ECHO 1 of 63
ECHO Installing Q318089 Incorrect VBScript Handling in IE ...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\vbs56nen.exe /Q:A /R:N
ECHO.
ECHO 2 of 63
ECHO Installing Q318138 Unchecked Buffer in Remote Access Service Phonebook...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q318138.exe /Q /M /Z
ECHO.
ECHO 3 of 63
ECHO Installing Q321884 Microsoft .NET Framework 1.0...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q321884.exe /Q:A /R:N
ECHO.
ECHO 4 of 63
ECHO Installing Q322011 Fax Preview Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q322011.exe /Q /M /Z
ECHO.
ECHO 5 of 63
ECHO Installing Q282010 Microsoft Jet 4.0 Service Pack 6...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q282010.exe /Q /M /Z
ECHO.
ECHO 6 of 63
ECHO Installing Q322069 Administrators Who Download Dynamic Updates...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q322069.exe /Q /M /Z
ECHO.
ECHO 7 of 63
ECHO Installing Q323183 Support for Bluetooth Wireless Devices...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q323183.exe /Q /M /Z
ECHO.
ECHO 8 of 63
ECHO Installing Q323255 Unchecked Buffer in Windows Help Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q323255.exe /Q /M /Z
ECHO.
ECHO 9 of 63
ECHO Installing Q327405 Provides New Information About Security And Privacy...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q327405.exe /Q:A /R:N
ECHO.
ECHO 10 of 63
ECHO Installing q329623 DirectX May Cause DVD Players To Not Work...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\q329623.exe /Q /M /Z
ECHO.
ECHO 11 of 63
ECHO Installing Q327979 Game Stops Responding Introductory Video Clip Played...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q327979.exe /Q /M /Z
ECHO.
ECHO 12 of 63
ECHO Installing Q328310 Flaw in Windows WM_TIMER Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q328310.exe /Q /M /Z
ECHO.
ECHO 13 of 63
ECHO Installing Q329048 Unchecked Buffer in File Decompression Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329048.exe /Q /M /Z
ECHO.
ECHO 14 of 63
ECHO Installing Q329115 Certificate Validation Flaw Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329115.exe /Q /M /Z
ECHO.
ECHO 15 of 63
ECHO Installing Q329170 Flaw in SMB Signing Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329170.exe /Q /M /Z
ECHO.
ECHO 16 of 63
ECHO Installing Q329256 1394 Devices Do Not Enumerate Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329256.exe /Q /M /Z
ECHO.
ECHO 17 of 63
ECHO Installing Q329390 Unchecked Buffer in Windows Shell Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329390.exe /Q /M /Z
ECHO.
ECHO 18 of 63
ECHO Installing Q329441 Cannot Create a Network Connection After You Restore  Windows...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329441.exe /Q /M /Z
ECHO.
ECHO 19 of 63
ECHO Installing Q329604 PostScript Print Jobs Containing MMM Fonts Are Not Printed...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329604.exe /Q /M /Z
ECHO.
ECHO 20 of 63
ECHO Installing Q329692 Explorer.exe May Generate an Application Error Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329692.exe /Q /M /Z
ECHO.
ECHO 21 of 63
ECHO Installing Q329834 Unchecked Buffer in PPTP May Permit DoS Attacks...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q329834.exe /Q /M /Z
ECHO.
ECHO 22 of 63
ECHO Installing April 2003, Cumulative Patch for OE6...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q330994.exe /Q:A /R:N
ECHO.
ECHO 23 of 63
ECHO Installing Q331320 Outlook 11 Performs Slowly or Stops Responding Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q331320.exe /Q /M /Z
ECHO.
ECHO 24 of 63
ECHO Installing Q331913 Media Center Remote Sensor Device Appear to Stick...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q331913.exe /Q /M /Z
ECHO.
ECHO 25 of 63
ECHO Installing Q331953 Flaw RPC Allow Denial of Service Attacks...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q331953.exe /Q /M /Z
ECHO.
ECHO 26 of 63
ECHO Installing Q331958 Hard Disk May Become Corrupted Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q331958.exe /Q /M /Z
ECHO.
ECHO 27 of 63
ECHO Installing Q810243 DirectShow Playback Support For Files Recorded With  Windows XP Media Center Edition...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810243.exe /Q /M /Z
ECHO.
ECHO 28 of 63
ECHO Installing Q810272 Audio Test Computer Stop Responding Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810272.exe /Q /M /Z
ECHO.
ECHO 29 of 63
ECHO Installing Q810400 USB Devices May Not Work Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810400.exe /Q /M /Z
ECHO.
ECHO 30 of 63
ECHO Installing Q810565 Hyperlinks Open IE Instead Default Browser...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810565.exe /Q /M /Z
ECHO.
ECHO 31 of 63
ECHO Installing Q810577 Unchecked Buffer in Windows Redirector Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810577.exe /Q /M /Z
ECHO.
ECHO 32 of 63
ECHO Installing Q810833 Unchecked Buffer in the Locator Service...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q810833.exe /Q /M /Z
ECHO.
ECHO 33 of 63
ECHO Installing JScript 5.6...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\js56nde.exe /Q:A /R:N
ECHO.
ECHO 34 of 63
ECHO Installing Q811114 May 2003 Cumulative Patch for IIS...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q811114.exe /Q /M /Z
ECHO.
ECHO 35 of 63
ECHO Installing Q811383 IE Connect Certificate Display Issues...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q811383.exe /Q:A /R:N
ECHO.
ECHO 36 of 63
ECHO Installing Q811493 Buffer Overrun In Kernel Message Handling...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q811493.exe /Q /M /Z
ECHO.
ECHO Hold on to your shorts this is about half way point.
ECHO You thought it was going to be the last time I talked.
ECHO Get real !!! I'm here to stay.
ECHO.
ECHO 37 of 63
ECHO Installing Q811630 HTML Help Update to Limit Functionality...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q811630.exe  /Q /M /Z
ECHO.
ECHO 38 of 63
ECHO Installing Q812415 Problems Computer ATA Drives Enters S1...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q812415.exe  /Q /M /Z
ECHO.
ECHO 39 of 63
ECHO Installing Q813951 You Cannot Access Your MSN E-mail Account...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q813951.exe /Q:A /R:N
ECHO.
ECHO 40 of 63
ECHO Installing Q814033 Cannot Install Driver Updates Update Site...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q814033.exe /Q /M /Z
ECHO.
ECHO 41 of 63
ECHO Installing Q814995 Program Fixes Stop Working After Install...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q814995.exe /Q /M /Z
ECHO.
ECHO 42 of 63
ECHO Installing Q815021 Unchecked Buffer Web Server Compromise...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q815021.exe /Q /M /Z
ECHO.
ECHO 43 of 63
ECHO Installing Q815411 Heap Algorithm Update for Atypically Large Heap  Requests...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q815411.exe /Q /M /Z
ECHO.
ECHO 44 of 63
ECHO Installing Q815485 WPA Wireless Security Update Windows XP...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q815485.exe /Q /M /Z
ECHO.
ECHO 45 of 63
ECHO Installing Q816506 IE or OE Quits Unexpectedly...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q816506.exe /Q:A /R:N
ECHO.
ECHO 46 of 63
ECHO Installing Q817287 Windows Update 643 Error Catalog Database...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q817287.exe /Q:A /R:N
ECHO.
ECHO 47 of 63
ECHO Installing Q817606 Buffer Overrun Could Lead Data Corruption...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q817606.exe /Q /M /Z
ECHO.
ECHO 48 of 63
ECHO Installing Q817778 Advanced Networking Pack for Windows XP...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q817778.exe /Q /M /Z
ECHO.
ECHO 49 of 63
ECHO Installing Q818529 Internet Explorer 6 SP1 Cumulative Security Update...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q818529.exe /Q:A /R:N
ECHO.
ECHO 50 of 63
ECHO Installing Windows Media Player 9
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\MPSetupXP.exe /Q:A /R:N
ECHO.
ECHO 51 of 63
ECHO Installing Q819696 Unchecked Buffer DirectX System Compromise...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q819696.exe /Q /M /Z
ECHO.
ECHO 52 of 63
ECHO Installing Q820128 Kernel Rollup Hotfix Package...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q820128.exe /Q /M /Z
ECHO.
ECHO 53 of 63
ECHO Installing Q820291 New Icon For Set Program Access and Defaults...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q820291.exe /Q /M /Z
ECHO.
ECHO 54 of 63
ECHO Installing Q821253 Windows Error Reporting Update...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q821253.exe /Q /M /Z
ECHO.
ECHO 55 of 63
ECHO Installing Q821557 Unchecked Buffer in the Windows Shell Fix...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q821557.exe /Q /M /Z
ECHO.
ECHO 56 of 63
ECHO Installing Q823559 Buffer Overrun HTML Converter Allow Code Execution...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q823559.exe /Q /M /Z
ECHO.
ECHO 57 of 63
ECHO Installing Q823980 Buffer Overrun in RPC May Allow Code Execution...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q823980.exe /Q /u /Z
ECHO.
ECHO 58 of 63
ECHO Installing Q819639 Control Flaw Delete Media Library Metadata...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q819639.exe /Q:A /R:N
ECHO.
ECHO 59 of 63
ECHO Installing Microsoft JavaVM - Build 3810
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\msjavwu.exe /Q:A /R:N
ECHO.
ECHO 60 of 63
ECHO Installing DirectX 9.0b
ECHO Please wait...
start /wait %systemdrive%\install\DirectX9b\dxsetup.exe /opk
ECHO.
ECHO 61 of 63
ECHO Installing August 2003, Cumulative Patch...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q822925.exe /Q:A /R:N
ECHO.
ECHO 62 of 63
ECHO Installing Security Update Data Access Components...
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\Q823718.exe /Q /C:"dahotfix /q /n"
ECHO.
ECHO 63 of 63
ECHO Installing .NET Framework v1.1
ECHO Please wait...
start /wait %systemdrive%\install\Hotfixes\netfx.msi /QB
ECHO.
EXIT

directory list is:

Directory of D:\Winxp hot fix cd's\$OEM$\$1\install\Hotfixes

08/18/2003  09:17 PM    <DIR>          .
08/18/2003  09:17 PM    <DIR>          ..
07/28/2003  06:36 PM           427,368 Q322011.exe
07/22/2003  01:20 AM           714,000 Q323255.exe
07/28/2003  06:36 PM           882,536 Q327979.exe
07/22/2003  01:20 AM         4,046,096 Q328310.exe
07/22/2003  01:20 AM           381,288 Q329048.exe
07/22/2003  01:21 AM           495,464 Q329115.exe
07/22/2003  01:20 AM           494,352 Q329170.exe
07/22/2003  01:21 AM           289,128 Q329390.exe
07/22/2003  01:21 AM           424,720 Q329441.exe
07/22/2003  01:21 AM           214,888 Q329834.exe
07/22/2003  01:20 AM         1,992,832 Q330994.exe
07/22/2003  01:21 AM           369,512 Q810272.exe
07/22/2003  01:20 AM           388,456 Q810833.exe
07/22/2003  01:20 AM           752,912 Q331953.exe
07/22/2003  01:20 AM         3,318,120 Q811493.exe
07/22/2003  01:20 AM         1,380,624 Q811630.exe
07/22/2003  01:21 AM         1,291,040 Q823980.exe
07/22/2003  01:20 AM           384,288 Q823559.exe
07/22/2003  01:20 AM         5,327,648 Q821557.exe
07/22/2003  01:21 AM           354,080 Q821253.exe
07/28/2003  06:36 PM         1,276,704 Q817778.exe
07/22/2003  01:21 AM           340,816 Q817287.EXE
07/22/2003  01:20 AM         5,550,440 Q810565.exe
07/22/2003  01:20 AM           569,616 Q810577.exe
07/22/2003  01:21 AM         1,018,216 Q814995.exe
07/22/2003  01:21 AM           537,376 Q815021.exe
07/28/2003  06:36 PM           953,704 Q815485.exe
07/22/2003  01:20 AM           426,344 Q817606.exe
07/22/2003  01:21 AM         2,350,952 Q329262.exe
05/23/2003  02:02 PM         4,276,000 Q820128.exe
08/18/2003  10:06 PM           563,048 Q815411.exe
08/18/2003  10:08 PM           425,832 Q814033.exe
08/18/2003  10:21 PM           394,088 Q812415.exe
08/18/2003  10:25 PM           795,496 Q811114.exe
08/18/2003  10:26 PM           353,128 Q810400.exe
08/18/2003  10:28 PM           403,304 Q331958.exe
08/18/2003  10:29 PM           561,000 Q331320.exe
08/18/2003  10:33 PM         3,681,640 Q329604.exe
08/18/2003  10:34 PM           263,528 Q329256.exe
08/18/2003  10:35 PM         1,137,512 Q323183.exe
08/18/2003  10:46 PM           373,088 js56nde.exe
07/22/2003  01:20 AM         5,319,000 msjavwu.exe
07/22/2003  01:21 AM        10,135,688 MPSetupXP.exe
02/21/2003  11:43 AM        14,638,644 netfx1.cab
02/21/2003  11:43 AM         5,922,304 netfx.msi
02/20/2003  06:48 PM            98,304 install.exe
09/26/2001  05:07 PM         1,707,856 InstMsi.exe
09/11/2001  02:46 PM         1,821,008 InstMsiW.exe
08/19/2003  07:59 AM           834,920 q329623.exe
08/19/2003  12:41 AM         2,973,984 Q282010.exe
08/19/2003  12:38 AM         1,051,936 Q820291.exe
07/28/2003  06:36 PM         1,393,488 Q327405.exe
07/22/2003  01:20 AM           641,640 Q318138.exe
07/22/2003  01:21 AM           112,736 Q322069.exe
07/22/2003  01:21 AM           333,672 Q331913.exe
07/28/2003  06:36 PM           601,448 Q810243.exe
07/22/2003  01:21 AM           360,296 Q811009.exe
07/22/2003  01:20 AM           352,896 Q813951.exe
07/22/2003  01:20 AM         2,064,512 Q818529.exe
07/28/2003  06:36 PM           818,464 Q819696.exe
07/22/2003  01:20 AM         1,947,784 Q819639.exe
07/22/2003  01:21 AM           315,744 vbs56nen.exe
08/19/2003  12:42 AM           931,688 Q815487.exe
08/19/2003  12:46 AM         6,749,072 Q321884.exe
08/19/2003  10:31 AM           526,184 Q329692.exe
08/19/2003  10:42 AM           423,552 Q811383.exe
08/19/2003  10:49 AM         1,254,528 Q816506.exe
08/20/2003  02:32 PM         2,218,112 Q822925.exe
08/20/2003  02:30 PM         1,632,320 Q823718.exe
09/07/2003  01:53 PM           346,400 KB824105.exe

if i install this way everything works complete unattended...well all but picking the partition.

Tbone2

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...