BETA.. Posted March 19, 2013 Share Posted March 19, 2013 i want to know how to backup update of windows 8 bcs windows 8 has many update Link to comment Share on other sites More sharing options...
wdm Posted March 19, 2013 Share Posted March 19, 2013 WindowsUpdatesDownloaderWindowsUpdatesDownloader Update Listsupdate 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 More sharing options...
BETA.. Posted March 19, 2013 Author Share Posted March 19, 2013 it iWindowsUpdatesDownloaderWindowsUpdatesDownloader Update Listsupdate 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...thankspls provide any other way Link to comment Share on other sites More sharing options...
wdm Posted March 19, 2013 Share Posted March 19, 2013 WinToolkitwincert.net/forum Link to comment Share on other sites More sharing options...
unknownasphyxiated Posted March 19, 2013 Share Posted March 19, 2013 afaik, download offline installer and integrate into win 8 ISOanother one would be image backup of the current system Link to comment Share on other sites More sharing options...
BETA.. Posted March 19, 2013 Author Share Posted March 19, 2013 afaik, download offline installer and integrate into win 8 ISOanother one would be image backup of the current systemthanks ....butthat must b change ur installation id Link to comment Share on other sites More sharing options...
LiLmEgZ Posted March 20, 2013 Share Posted March 20, 2013 i want to know how to backup update of windows 8 bcs windows 8 has many updateLOL... 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 More sharing options...
BETA.. Posted March 20, 2013 Author Share Posted March 20, 2013 i want to know how to backup update of windows 8 bcs windows 8 has many updateLOL... 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 :DIn windows 8.....are u sure Link to comment Share on other sites More sharing options...
khatulistiwa Posted March 20, 2013 Share Posted March 20, 2013 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 microsoftand 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 downloadnb: 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.