Windows 7 Offline Updates

Discussion in 'MDL Projects and Applications' started by ColdZero, Jun 12, 2010.

  1. rulman

    rulman MDL Novice

    Joined:
    Jan 25, 2012
    Messages:
    38
    Likes Received:
    14
    Trophy Points:
    0
    @Master.Pirate;
    Sp1 include after updates.
     
  2. ColdZero

    ColdZero MDL Addicted

    Joined:
    Nov 9, 2009
    Messages:
    680
    Likes Received:
    3,073
    Trophy Points:
    30
    Code posted! feel free to make it better and post your download links.
     
  3. rulman

    rulman MDL Novice

    Joined:
    Jan 25, 2012
    Messages:
    38
    Likes Received:
    14
    Trophy Points:
    0
  4. naveeed

    naveeed MDL Novice

    Joined:
    Feb 18, 2010
    Messages:
    25
    Likes Received:
    3
    Trophy Points:
    0
  5. rulman

    rulman MDL Novice

    Joined:
    Jan 25, 2012
    Messages:
    38
    Likes Received:
    14
    Trophy Points:
    0
  6. Cleric

    Cleric MDL Member

    Joined:
    Aug 14, 2009
    Messages:
    196
    Likes Received:
    229
    Trophy Points:
    10
  7. cyberbot

    cyberbot MDL Senior Member

    Joined:
    Jul 30, 2011
    Messages:
    475
    Likes Received:
    20
    Trophy Points:
    10
    thank you for the file
     
  8. spaghetti

    spaghetti MDL Novice

    Joined:
    Dec 27, 2010
    Messages:
    42
    Likes Received:
    2
    Trophy Points:
    0
    Hi the front page hasn't moved in ages, is this no longer worked on?
     
  9. rulman

    rulman MDL Novice

    Joined:
    Jan 25, 2012
    Messages:
    38
    Likes Received:
    14
    Trophy Points:
    0
    Yes, I'm updating as I can
    Friday I'll be updated
     
  10. iqbalpnr

    iqbalpnr MDL Novice

    Joined:
    Jan 21, 2012
    Messages:
    26
    Likes Received:
    15
    Trophy Points:
    0
  11. ColdZero

    ColdZero MDL Addicted

    Joined:
    Nov 9, 2009
    Messages:
    680
    Likes Received:
    3,073
    Trophy Points:
    30
  12. sevenmf

    sevenmf MDL Novice

    Joined:
    Sep 17, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    Hey ColdZero! Awesome job with the offline updates. Do you have any links where i can download it again? It seems that mediafire link does not work anymore...thanks and keep it up!
     
  13. rulman

    rulman MDL Novice

    Joined:
    Jan 25, 2012
    Messages:
    38
    Likes Received:
    14
    Trophy Points:
    0
    #173 rulman, Sep 18, 2012
    Last edited by a moderator: Apr 20, 2017
  14. spaghetti

    spaghetti MDL Novice

    Joined:
    Dec 27, 2010
    Messages:
    42
    Likes Received:
    2
    Trophy Points:
    0
    Whats our plan for this, i'm sure lots stay with win7 for long time
     
  15. ColdZero

    ColdZero MDL Addicted

    Joined:
    Nov 9, 2009
    Messages:
    680
    Likes Received:
    3,073
    Trophy Points:
    30
    Updating!, let me know if you find a broken link.
     
  16. AhrimanSefid

    AhrimanSefid MDL Junior Member

    Joined:
    Apr 12, 2010
    Messages:
    97
    Likes Received:
    0
    Trophy Points:
    0
    #176 AhrimanSefid, Apr 27, 2014
    Last edited by a moderator: Apr 20, 2017
    this my code ,the problem is that the scripts cant divide and detect X86 from x64,what should i do to divide x64 and x86 in way that cod can install x 86 and x64 programs?

    Code:
    @Echo off
    IF %PROCESSOR_ARCHITECTURE% == AMD64 goto :x86
    
    IF %PROCESSOR_ARCHITEW6432% == AMD64 goto :x64
    
    :x86
    For %%# in (*86.msu) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    :x64
    For %%# in (*64.msu) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    Echo Windows Update finished.
    Exit
     
  17. ColdZero

    ColdZero MDL Addicted

    Joined:
    Nov 9, 2009
    Messages:
    680
    Likes Received:
    3,073
    Trophy Points:
    30
    #177 ColdZero, May 17, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Should be something like this:
    Code:
    @Echo off
    IF exist "C:\Program Files (x86)" ( goto :x64 ) ELSE ( goto :x86)
    
    :x86
    Echo X86 Detected
    For %%# in (*86.msu) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    Echo Windows Update finished.
    pause
    exit
    
    :x64
    Echo X64 Detected
    For %%# in (*64.msu) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    Echo Windows Update finished.
    pause
    Exit
    
     
  18. Flipp3r

    Flipp3r MDL Expert

    Joined:
    Feb 11, 2009
    Messages:
    1,743
    Likes Received:
    772
    Trophy Points:
    60
    #178 Flipp3r, May 18, 2014
    Last edited by a moderator: Apr 20, 2017
    This will work:
    Code:
    @Echo off
    set msu=*86.msu
    IF %PROCESSOR_ARCHITECTURE% == AMD64 set msu=*64.msu
    For %%# in (%msu%) Do (
        Echo: Installing update: %%#
        Wusa "%%#" /quiet /norestart
    )
    Echo Windows Update finished.
     
  19. devrekli

    devrekli MDL Novice

    Joined:
    May 18, 2014
    Messages:
    6
    Likes Received:
    0
    Trophy Points:
    0
    i can try now, thanks
     
  20. NST_Adventure

    NST_Adventure MDL Addicted

    Joined:
    Jun 1, 2019
    Messages:
    869
    Likes Received:
    162
    Trophy Points:
    30