Jump to content

how to backup windows 8 updates download files


BETA..

Recommended Posts

  • Replies 8
  • Views 3.5k
  • Created
  • Last Reply

WindowsUpdatesDownloader

WindowsUpdatesDownloader Update Lists

update after reinstall .bat [cmd]

@echo offIF EXIST "%TEMP%\updates.install" RMDIR /s /Q "%TEMP%\updates.install"IF EXIST "%~dp0DISM.log" DEL "%~dp0DISM.log" >nulIF NOT EXIST "%TEMP%\updates.install" MKDIR "%TEMP%\updates.install"IF NOT EXIST "%TEMP%\updates.install\unpacked" MKDIR "%TEMP%\updates.install\unpacked"ECHO.ECHO Extracting and applying updatesECHO.ECHO.expand -f:*.cab *.msu "%TEMP%\updates.install" >nulFOR /F "tokens=*" %%A IN ('DIR /B "%TEMP%\updates.install\*.cab"') DO (	MKDIR "%TEMP%\updates.install\unpacked\%%A"	expand -f:* "%TEMP%\updates.install\%%A" "%TEMP%\updates.install\unpacked\%%A" >nul)FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\unpacked\*KB9*"') DO (	ECHO Installing %%A	IF EXIST "%TEMP%\updates.install\unpacked\%%A\update-bf.mum" (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update-bf.mum" /NoRestart /Quiet	) ELSE (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update.mum" /NoRestart /Quiet	))FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\unpacked\*KB2*"') DO (	ECHO Installing %%A	IF EXIST "%TEMP%\updates.install\unpacked\%%A\update-bf.mum" (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update-bf.mum" /NoRestart /Quiet	) ELSE (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update.mum" /NoRestart /Quiet	))FOR /F "tokens=*" %%B IN ('DIR /B /A:D "%~dp0"') DO (	IF NOT EXIST "%TEMP%\updates.install\%%B" MKDIR "%TEMP%\updates.install\%%B"	IF NOT EXIST "%TEMP%\updates.install\%%B\unpacked" MKDIR "%TEMP%\updates.install\%%B\unpacked"	ECHO.	ECHO Extracting and applying updates from %%B	ECHO.	ECHO.	expand -f:*.cab "%~dp0%%B\*.msu" "%TEMP%\updates.install\%%B" >nul	FOR /F "tokens=*" %%A IN ('DIR /B "%TEMP%\updates.install\%%B\*.cab"') DO (		MKDIR "%TEMP%\updates.install\%%B\unpacked\%%A"		expand -f:* "%TEMP%\updates.install\%%B\%%A" "%TEMP%\updates.install\%%B\unpacked\%%A" >nul	)	FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\%%B\unpacked\*KB9*"') DO (		ECHO Installing %%A		IF EXIST "%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" /NoRestart /Quiet		) ELSE (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update.mum" /NoRestart /Quiet		)	)	FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\%%B\unpacked\*KB2*"') DO (		ECHO Installing %%A		IF EXIST "%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" /NoRestart /Quiet		) ELSE (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update.mum" /NoRestart /Quiet		)	))IF EXIST "%TEMP%\updates.install" RMDIR /s /Q "%TEMP%\updates.install"echo.echo ###########################################################echo.echo Updates are installedecho Press any key to rebootpause >NULshutdown -r -t 0

^_^

Link to comment
Share on other sites


it i

WindowsUpdatesDownloader

WindowsUpdatesDownloader Update Lists

update after reinstall .bat [cmd]

@echo offIF EXIST "%TEMP%\updates.install" RMDIR /s /Q "%TEMP%\updates.install"IF EXIST "%~dp0DISM.log" DEL "%~dp0DISM.log" >nulIF NOT EXIST "%TEMP%\updates.install" MKDIR "%TEMP%\updates.install"IF NOT EXIST "%TEMP%\updates.install\unpacked" MKDIR "%TEMP%\updates.install\unpacked"ECHO.ECHO Extracting and applying updatesECHO.ECHO.expand -f:*.cab *.msu "%TEMP%\updates.install" >nulFOR /F "tokens=*" %%A IN ('DIR /B "%TEMP%\updates.install\*.cab"') DO (	MKDIR "%TEMP%\updates.install\unpacked\%%A"	expand -f:* "%TEMP%\updates.install\%%A" "%TEMP%\updates.install\unpacked\%%A" >nul)FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\unpacked\*KB9*"') DO (	ECHO Installing %%A	IF EXIST "%TEMP%\updates.install\unpacked\%%A\update-bf.mum" (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update-bf.mum" /NoRestart /Quiet	) ELSE (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update.mum" /NoRestart /Quiet	))FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\unpacked\*KB2*"') DO (	ECHO Installing %%A	IF EXIST "%TEMP%\updates.install\unpacked\%%A\update-bf.mum" (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update-bf.mum" /NoRestart /Quiet	) ELSE (		dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\unpacked\%%A\update.mum" /NoRestart /Quiet	))FOR /F "tokens=*" %%B IN ('DIR /B /A:D "%~dp0"') DO (	IF NOT EXIST "%TEMP%\updates.install\%%B" MKDIR "%TEMP%\updates.install\%%B"	IF NOT EXIST "%TEMP%\updates.install\%%B\unpacked" MKDIR "%TEMP%\updates.install\%%B\unpacked"	ECHO.	ECHO Extracting and applying updates from %%B	ECHO.	ECHO.	expand -f:*.cab "%~dp0%%B\*.msu" "%TEMP%\updates.install\%%B" >nul	FOR /F "tokens=*" %%A IN ('DIR /B "%TEMP%\updates.install\%%B\*.cab"') DO (		MKDIR "%TEMP%\updates.install\%%B\unpacked\%%A"		expand -f:* "%TEMP%\updates.install\%%B\%%A" "%TEMP%\updates.install\%%B\unpacked\%%A" >nul	)	FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\%%B\unpacked\*KB9*"') DO (		ECHO Installing %%A		IF EXIST "%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" /NoRestart /Quiet		) ELSE (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update.mum" /NoRestart /Quiet		)	)	FOR /F "tokens=*" %%A IN ('DIR /B /A:D "%TEMP%\updates.install\%%B\unpacked\*KB2*"') DO (		ECHO Installing %%A		IF EXIST "%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update-bf.mum" /NoRestart /Quiet		) ELSE (			dism /Online /LogPath:"%~dp0DISM.log" /Add-Package /PackagePath:"%TEMP%\updates.install\%%B\unpacked\%%A\update.mum" /NoRestart /Quiet		)	))IF EXIST "%TEMP%\updates.install" RMDIR /s /Q "%TEMP%\updates.install"echo.echo ###########################################################echo.echo Updates are installedecho Press any key to rebootpause >NULshutdown -r -t 0

^_^

it is really bad for me...

any way...thanks

pls provide any other way

Link to comment
Share on other sites


unknownasphyxiated

afaik, download offline installer and integrate into win 8 ISO
another one would be image backup of the current system

Link to comment
Share on other sites


afaik, download offline installer and integrate into win 8 ISO

another one would be image backup of the current system

thanks ....but

that must b change ur installation id

Link to comment
Share on other sites


i want to know how to backup update of windows 8 bcs windows 8 has many update

LOL... You think Windows 8 has a bunch of updates issued for it? Why don't you take a look at Windows 7's updates that you need to get after deploying it with SP1 integrated ;)

Theres at least 100-150 (depending upon the machine) after you fresh install Windows 7 :D

Link to comment
Share on other sites


i want to know how to backup update of windows 8 bcs windows 8 has many update

LOL... You think Windows 8 has a bunch of updates issued for it? Why don't you take a look at Windows 7's updates that you need to get after deploying it with SP1 integrated ;)

Theres at least 100-150 (depending upon the machine) after you fresh install Windows 7 :D

In windows 8.....are u sure

Link to comment
Share on other sites


khatulistiwa

You can find the offline installer windows update in google.
You write in the google search bar such as "Update for Windows 8 (KB2770917)" and find the link from microsoft

and for updates to wear verification (usually there is a little star above the title updates) you can use the site in IE http://test.catalog.update.microsoft.com/ (must use IE, can not open another browser and also support updates are free (without verification))
for first time users, when asked to install the add on, select install.
search in the search box. select the appropriate os used and bit (x64/x86)
select add. if you have finished selecting all the updates (it supports all it once download updates). choose view basketball and download

nb: sometimes download updates in http://test.catalog.update.microsoft.com/, not necessarily in the form. exe. therefore preferred to download it on google though it should be the one.

sorry, my bad english

Link to comment
Share on other sites


Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...