Niktareum Posted October 17, 2005 Posted October 17, 2005 Hello allI 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 !
Zxian Posted October 17, 2005 Posted October 17, 2005 (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 October 17, 2005 by Zxian
Niktareum Posted October 18, 2005 Author Posted October 18, 2005 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
Zxian Posted October 18, 2005 Posted October 18, 2005 If you want to apply them to your system, use Replacer.
Niktareum Posted October 18, 2005 Author Posted October 18, 2005 If you want to apply them to your system, use Replacer.The replacer is able to be silent on his installation ?
Zxian Posted October 18, 2005 Posted October 18, 2005 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.
Niktareum Posted October 18, 2005 Author Posted October 18, 2005 (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" , 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 October 18, 2005 by Niktareum
InTheWayBoy Posted October 20, 2005 Posted October 20, 2005 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/txtGood 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!
Niktareum Posted October 21, 2005 Author Posted October 21, 2005 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.
CarlosFTP Posted November 23, 2005 Posted November 23, 2005 Try this cmd.Save it to %systemdrive%\install\batch_hack.cmdFiles in %systemdrive%\install\Hack-Win\--------------------------------------------CLS@echo offTITLE Windows XP SP1 - Instalacion de librerias modificadasSET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx%systemdrive%cd installIF not "%SAFEBOOT_OPTION%" == "MINIMAL" ( bootcfg /raw "/fastdetect /safeboot:minimal" /id 1REG ADD %KEY%\002 /V 1 /D "%systemdrive%\install\batch_hack.cmd" /fshutdown -r -t 3) else ( GOTO GoOn )goto end:gooncd Hack-Wincopy LegitCheckControl.dll %windir%\system32\LegitCheckControl.dlldel %windir%\system32\uxtheme.dlldel %windir%\system32\uxtheme.bakren %windir%\system32\uxtheme.dll *.bakdel %windir%\system32\uxtheme.bakdel %windir%\system32\dllcache\uxtheme.dlldel %windir%\system32\dllcache\uxtheme.bakren %windir%\system32\dllcache\uxtheme.dll *.bakdel %windir%\system32\dllcache\uxtheme.bakcopy /y uxtheme.dll %windir%\system32\dllcache\uxtheme.dllcopy /Y uxtheme.dll %windir%\system32\uxtheme.dlldel %windir%\system32\dllcache\sfc_os.dlldel %windir%\system32\dllcache\sfc_os.bakren %windir%\system32\dllcache\sfc_os.dll *.bakdel %windir%\system32\dllcache\sfc_os.bakdel %windir%\system32\sfc_os.bakdel %windir%\system32\sfc_os.dllren %windir%\system32\sfc_os.dll *.bakdel %windir%\system32\sfc_os.bakcopy /y sfc_os.dll %windir%\system32\dllcache\sfc_os.dllcopy /y sfc_os.dll %windir%\system32\sfc_os.dllbootcfg /raw "/fastdetect" /id 1shutdown -r -t 0:End--------------------------------------------You can edit and Fix to feel more clear..
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now