Support Forum

Full Version: loading hotfixes into program (plz help)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am new to using this program. I have watched the two very instructive videos made to teach how diferent features are used. When I got to the part where Hofixes were being integrated into the xp source I notice that a script might have been used to load the KBs into the window for integration.
I couldn't tell.
Is there a script being used ? if there is, can someone tell where I can download it or How I can write one myself ?

Thank you
Content of Start.cmd (is a simple txt file, copy & paste):
Code:
for %%a in ("%~dp0\Q*.exe") do cmd c/ "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd c/ "%%a" /passive /norestart
(2009-04-04, 09:49 AM)Vitali Wrote: [ -> ]Content of Start.cmd (is a simple txt file, copy & paste):
Code:
for %%a in ("%~dp0\Q*.exe") do cmd c/ "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd c/ "%%a" /passive /norestart

Hotfix at start.cmd working not. One hotfix start but for comment stop. Two hotfix is not working. Help and thank Lukasek
for %%a in ("%~dp0\Q*.exe") do cmd c/ "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd c/ "%%a" /passive /norestart is not good!! Swirch /c is bad!!!!!!!!!!!!!

Excelent work Start.cmd !!!!
ECHO ON
for %%a in ("%~dp0\Q*.exe") do cmd /c "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd /c "%%a" /passive /norestart
shutdown -r
(2009-05-26, 06:27 PM)lukasek Wrote: [ -> ]for %%a in ("%~dp0\Q*.exe") do cmd c/ "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd c/ "%%a" /passive /norestart is not good!! Swirch /c is bad!!!!!!!!!!!!!

Excelent work Start.cmd !!!!
ECHO ON
for %%a in ("%~dp0\Q*.exe") do cmd /c "%%a" /Q
for %%a in ("%~dp0\KB*.exe") do cmd /c "%%a" /passive /norestart
shutdown -r
Sorry for my late post.

are you sure that "/passive /norestart" is wrong for kb* fixes ? which hotfix make a trouble?

and why is reboot is good ?
Problem is your switch c/ It is bad. Good is c/. Switch /passive and /norestart is good.
Hi Lukasek
reboot is good of switch -r -t 0
shutdown -r -t 0
Tomorrow I am going to have new Start.cmd (Hotfix.cmd) for XP-Pro+ SP3 CZ version with hotfix of date 30.4.2009 and long name of hotfix. Than I publicate Start.cmd on this forum.
Lukasek
Hi Vitali, it is my new hotfix.cmd for long name hotfix of Microsoft, version XP-PRO-CZ+SP3. Default_XP.reg is tweaking register of http://www.blackviper.com/. All work very good!! For example from folder "Hotfix": WindowsMedia11-kb939683-x86-CSY.exe, WindowsXP-KB952004-x86-CSY.exe, etc.

@echo On
color 1F
for %%a in ("%~dp0\r*.exe") do cmd /c "%%a" /Q
for %%a in ("%~dp0\Q*.exe") do cmd /c "%%a" /Q
for %%a in ("%~dp0\W*.exe") do cmd /c "%%a" /passive /norestart
for %%a in ("%~dp0\I*.exe") do cmd /c "%%a" /passive /norestart
regedit.exe /s Default_XP.reg
RD /S /Q %systemdrive%\drivers
shutdown -r -t 0

Lukasek
For a cleaner installation, I replaced the switch passive switch quiet. Works very well all.