MSFN Forum: Alternative to hotfix integration? - MSFN Forum

Jump to content



Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Alternative to hotfix integration? Rate Topic: -----

#1 User is offline   Railman5 

  • Member
  • PipPip
  • Group: Members
  • Posts: 154
  • Joined: 25-May 05

Posted 28 July 2005 - 07:56 AM

Currently I try to integrate any post sp4 win2k hotfxes by the svcpack.inf methid.

whilst this works relatively well,

is there any thought on alternative ways to install hotfixes (apart from NLite of course) say after first admin log on.

I am thinking.... can it be done say from RunOnceEx.cmd or such like?

Curious for anyones thoughts

:}

DARN! this post should really be in the unattended post. Sorry. CAn an admin bod move it?

:blushing:

This post has been edited by Railman5: 28 July 2005 - 07:58 AM



#2 User is offline   Sonic 

  • Sonic
  • Group: Patrons
  • Posts: 1,600
  • Joined: 04-December 03

Posted 28 July 2005 - 03:32 PM

Hi, my method:

WinXP with SP2 and WMP10 , manually reduced & automatised

After, I launch a batch (see code below). You can use a batch (RunOnceEx.cmd) which write values into registry (wich launch 'Updates.cmd') and after a the reboot the batch install hotfixes ...

Updates.cmd (by Sonic) pick up & mixed up on this forum ;)
@echo off
color 0f
title Windows Update
cd /d "%~dp0"
echo  - Windows Installer 3.1 ...
start /wait "" WI_3.1.exe /quiet /norestart
echo  - Windows Update v6 ...
start /wait "" WUv6.exe /wuforce /quiet /norestart
echo  - Windows Genuine Advantage ...
start /wait "" WGA.exe
echo  - Fixe Faille avec GDI ...
reg add "HKLM\SOFTWARE\Microsoft\GdiDetectionTool" /v "GDITool" /t REG_DWORD /d "00000001" /f >NUL
echo  - Fixe Faille avec JView Profiler ...
reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{03D9F3F2-B0E3-11D2-B081-006008039BF0}" /v "Compatibility Flags" /t REG_DWORD /d 1024 /f >NUL
echo  - Hotfixes majeures ...
for %%a in (*hf.exe) do (
Start /wait "" %%a /quiet /norestart )
echo  - Hotfixes mineures ...
for %%a in (*mf.exe) do (
Start /wait "" %%a /quiet /norestart )
exit


Edit the code to run perhaps all KB*.exe.
Make sure all hotfixes are in the same folder of the batch ...

Goodbye.

This post has been edited by sonic: 28 July 2005 - 03:36 PM


#3 User is offline   Railman5 

  • Member
  • PipPip
  • Group: Members
  • Posts: 154
  • Joined: 25-May 05

Posted 29 July 2005 - 02:30 AM

Thanks for that Sonic.

Does anybody else use sonics method?

but in English so that I have the correct syntax etc for using as an template example?

:rolleyes:

#4 User is offline   Sonic 

  • Sonic
  • Group: Patrons
  • Posts: 1,600
  • Joined: 04-December 03

Posted 29 July 2005 - 04:47 AM

All after "echo" it's description of the action below .... change it to your language ... you can delete all "echo" lines .. and the batch doesn't display anything ...

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy