Jump to content

Silent install for UXTHEME.DL_, SFC_OS.DL_ and TCPIP.SY_


Recommended Posts

Posted

Hello all

I want to silent install this files with a .cmd file only (or a silent executable file launched from my .cmd) on a clean winxpsp2 install.

I don't want integrate those files in the i386 folder on my CD, but juste make a .cmd files who' able to install my files or modify the original file in the %windir%\i386 folder.

MAybe, some .exe was existing to do this ?

I try to search some awnsers for my questions, but the search results with my keywords were already huge.

Tnx for your help !


Posted (edited)

Patch the files in advance and then use makecab to compress them. Use modifype to correct the checksums. After that, it's simply a matter of copying them in the i386 folder on your CD and you're done!

Edited by Zxian
Posted
I don't want integrate those files in the i386 folder on my CD, but juste make a .cmd files who' able to install my files or modify the original file in the %windir%\i386 folder.

The %windir%\subdirectories folder on the harddrive...

My explication was not clear, my english is really bad.

If somebody speak french, i'm glad if you awnser

:D

Posted

Oh... you want something that you can just give your friend that will silently patch the files?

If so, I don't know of a program that will do all three. :(

Posted (edited)

In fact i have a completely and extremely modified ans silent winxp CD, my own CD (all manual, not nlite product).

But, i want extract all modifications for have my own silent "pack" and when i install my "NikPack" :D , all the modifications of my cd will apply on the system where it will be launched.

The goal i want is after i install my pack, the clean winxp sp2 system (a maiden system, not install with my cd) have all the modifications is on my cd.

I success all the modification in my pack that i've made on my CD, except for this 3 files.

I just want a method to patch this 3 system files (1 global method, or 3methods, i dont care), silent method of course, for integrate it on my NikPack.

Edited by Niktareum
Posted

Zxian - Nice application...have to keep this in my horde :)

Niktareum - I see what you are trying to do, and wish you the best! After looking at the link Zxian provided, I found a link at the bottom that looks to be what you need. Essentially the application supports scripting to replace multiple files...as I have never used it I can't verify it works, but if it does that should be all you need...here's the link:

http://www3.telus.net/_/replacer/txt

Good Luck!

And if you really wanted it to be slick, you could take the finished product and make a 7zip SFX for it, so in the end it will be just one file and silent...perfect!

Posted

Tnx InTheWayBoy, the replacerscript give just the possibility to automatize the replacmeent when you drag and drop the file in the main replacer window.

But drag the file in window is always required.

Not a solution for a silent install, if i unterstood this page.

In fact, i just want a .cmd file who able to replace my three file (UXTHEME.DLL, SFC_OS.DLL and TCPIP.SYS or the same on their uncompressed version) without human intervention.

Just clic and the modify is ok.

You think it's possible ?

I know a executable who poatch the uxtheme.dll file, so, the same solution for three file will be possible.

  • 1 month later...
Posted

Try this cmd.

Save it to %systemdrive%\install\batch_hack.cmd

Files in %systemdrive%\install\Hack-Win\

--------------------------------------------

CLS

@echo off

TITLE Windows XP SP1 - Instalacion de librerias modificadas

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

%systemdrive%

cd install

IF not "%SAFEBOOT_OPTION%" == "MINIMAL" (

bootcfg /raw "/fastdetect /safeboot:minimal" /id 1

REG ADD %KEY%\002 /V 1 /D "%systemdrive%\install\batch_hack.cmd" /f

shutdown -r -t 3

) else ( GOTO GoOn )

goto end

:goon

cd Hack-Win

copy LegitCheckControl.dll %windir%\system32\LegitCheckControl.dll

del %windir%\system32\uxtheme.dll

del %windir%\system32\uxtheme.bak

ren %windir%\system32\uxtheme.dll *.bak

del %windir%\system32\uxtheme.bak

del %windir%\system32\dllcache\uxtheme.dll

del %windir%\system32\dllcache\uxtheme.bak

ren %windir%\system32\dllcache\uxtheme.dll *.bak

del %windir%\system32\dllcache\uxtheme.bak

copy /y uxtheme.dll %windir%\system32\dllcache\uxtheme.dll

copy /Y uxtheme.dll %windir%\system32\uxtheme.dll

del %windir%\system32\dllcache\sfc_os.dll

del %windir%\system32\dllcache\sfc_os.bak

ren %windir%\system32\dllcache\sfc_os.dll *.bak

del %windir%\system32\dllcache\sfc_os.bak

del %windir%\system32\sfc_os.bak

del %windir%\system32\sfc_os.dll

ren %windir%\system32\sfc_os.dll *.bak

del %windir%\system32\sfc_os.bak

copy /y sfc_os.dll %windir%\system32\dllcache\sfc_os.dll

copy /y sfc_os.dll %windir%\system32\sfc_os.dll

bootcfg /raw "/fastdetect" /id 1

shutdown -r -t 0

:End

--------------------------------------------

You can edit and Fix to feel more clear.

.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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