Can one OS be updated within another OS?

Discussion in 'Windows 8' started by MonarchX, Aug 10, 2014.

  1. MonarchX

    MonarchX MDL Expert

    May 5, 2007
    1,732
    313
    60
    Assume there is a PC/system with 2 drives. One drive is Drive C, which is a fast SSD that has Windows 8.1 + all updates installed on it. The second one is Drive D, which is a slow HDD with a bunch of user data that needs preservation (no format!!!) and Windows 7 that needs updates. The slow Windows 7 HDD came from another computer. Is there a way to update that Windows 7 without having to boot from it? If so, then how??? Again, the HDD cannot be formatted. Please let meknow ASAP! THANKS!
     
  2. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
    #2 Tito, Aug 10, 2014
    Last edited by a moderator: Apr 20, 2017
    Not sure, but you can try this from RE:
    Code:
    d:\ -> Windows 7 Partition
    e:\ -> SSD
    
    dism /image:d:\ /scratchdir:e:\ /Add-Package /Packagepath: <msu_file>
    
     
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    #3 s1ave77, Aug 10, 2014
    Last edited by a moderator: Apr 20, 2017
    With dism it can be done from within Win 8.1 the way Tito described. Although it should be:

    Code:
    dism /image:d:\ /scratchdir:e:\ /Add-Package /Packagepath:<msu_file>
    (no space between /Packagepath: and the actual path to the .msu)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...