Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
loading hotfixes into program (plz help)
2009-04-04, 03:31 AM,
#1
loading hotfixes into program (plz help)
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
Reply
2009-04-04, 09:49 AM, (This post was last modified: 2009-04-04, 09:50 AM by Vitali.)
#2
RE: loading hotfixes into program (plz help)
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
Vitali

[Image: wucdcreator.png]
[Image: winfuture.png]
[Image: mysoft.gif]
Reply
2009-05-24, 04:31 PM,
#3
RE: loading hotfixes into program (plz help)
(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
Reply
2009-05-26, 06:27 PM,
#4
RE: loading hotfixes into program (plz help)
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
Reply
2009-05-26, 07:26 PM,
#5
RE: loading hotfixes into program (plz help)
(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 ?
Vitali

[Image: wucdcreator.png]
[Image: winfuture.png]
[Image: mysoft.gif]
Reply
2009-05-27, 04:16 AM,
#6
RE: loading hotfixes into program (plz help)
Problem is your switch c/ It is bad. Good is c/. Switch /passive and /norestart is good.
Hi Lukasek
Reply
2009-05-27, 05:59 PM,
#7
RE: loading hotfixes into program (plz help)
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
Reply
2009-05-29, 05:47 PM,
#8
RE: loading hotfixes into program (plz help)
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
Reply
2009-08-06, 05:20 AM,
#9
RE: loading hotfixes into program (plz help)
For a cleaner installation, I replaced the switch passive switch quiet. Works very well all.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)