Support Forum
loading hotfixes into program (plz help) - Printable Version

+- Support Forum (https://www.vitaligraf.de/mybb)
+-- Forum: Windows Unattended CD Creator (https://www.vitaligraf.de/mybb/forumdisplay.php?fid=9)
+--- Forum: English (https://www.vitaligraf.de/mybb/forumdisplay.php?fid=7)
+--- Thread: loading hotfixes into program (plz help) (/showthread.php?tid=360)



loading hotfixes into program (plz help) - on2you - 2009-04-04

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


RE: loading hotfixes into program (plz help) - Vitali - 2009-04-04

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



RE: loading hotfixes into program (plz help) - lukasek - 2009-05-24

(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


RE: loading hotfixes into program (plz help) - lukasek - 2009-05-26

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


RE: loading hotfixes into program (plz help) - Vitali - 2009-05-26

(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 ?


RE: loading hotfixes into program (plz help) - lukasek - 2009-05-27

Problem is your switch c/ It is bad. Good is c/. Switch /passive and /norestart is good.
Hi Lukasek


RE: loading hotfixes into program (plz help) - lukasek - 2009-05-27

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


RE: loading hotfixes into program (plz help) - lukasek - 2009-05-29

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


RE: loading hotfixes into program (plz help) - lukasek - 2009-08-06

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