Jump to content
The Hotfix Share

Okaryn

Hotfixer
  • Posts

    4
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://okaryn.free.fr/forum
  • ICQ
    0

Profile Information

  • Gender
    Male
  • Location
    France / Pontoise

Okaryn's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I've tried to join them, but for this request it's not free, they want money for a fix request if I'm not a MSDN subscriber And I don't know the MSDN account of my entreprise
  2. Hi, I'm searching the IE7-WindowsXP-KB941000-x86-FRA hotfixe (On a computer that has Windows Internet Explorer 7 installed, the security zone of the network drive that you map by using the subst command appears as "Internet") Founded only the ENU & GER versions Thanks
  3. Hi, I'm using this method (not perfect !) : 1/ Install a clean vista without SP1 (or a futur Vista SP1 integrated) 2/ Install only the SP1 3/ Copy all the MSU file into a folder 4/ Execute the Auto-It source code below 5/ All MSU whose working with SP1 are move to the "OK" subdirectorie #include <GUIConstants.au3> $search = FileFindFirstFile("Windows6.0*.msu") If $search = -1 Then Exit EndIf $count = 0 While 1 $file = FileFindNextFile($search) If @error Then ExitLoop $count = $count + 1 WEnd FileClose($search) $search = FileFindFirstFile("Windows6.0*.msu") GUICreate("Windows Vista MSU Auto-Installer", 300, 50, $DS_SETFOREGROUND) $ID = GUICtrlCreateLabel("", 20, 10, 260, 30, $SS_CENTER ) GUISetState(@SW_SHOW) $progress = 0 While 1 $file = FileFindNextFile($search) If @error Then ExitLoop $progress = $progress + 1 GUICtrlSetData($ID, $progress & "/" & $count & " -- " & $file ) if runWait(@SystemDir & "\wusa.exe"& " " & @ScriptDir & "\" & $file & " /quiet /norestart", @ScriptDir, @SW_HIDE) <> 1 Then FileMove(@ScriptDir & "\" & $file, @ScriptDir & "\" & "Ok\" & $file, 9) EndIf WEnd FileClose($search)
×
×
  • Create New...