abbodi1406
Members-
Posts
465 -
Joined
-
Last visited
-
Days Won
196
Content Type
Profiles
Forums
Events
Everything posted by abbodi1406
-
No, it's not weird https://support.microsoft.com/en-us/kb/3057448 "The update is not applicable to your computer" error when you install Windows updates Cause number 1: Update is superseded KB3020369 fully and directly supersede KB2533552 thus, if KB3020369 is installed, KB2533552 cann't be installed using the .msu file the workaround (that even WU use) is to use the inside .cab file to integrate the update online by dism tool: dism /online /add-package:Windows6.1-KB2533552-x64.cab
-
I think he means: C:\Windows\SoftwareDistribution\DataStore\DataStore.edb
-
Microsoft .NET Framework 4.8 for Windows 7
abbodi1406 replied to abbodi1406's topic in Win Toolkit Addons
Yes, possible but not tested, so i don't guarantee it works -
Microsoft .NET Framework 4.8 for Windows 7
abbodi1406 replied to abbodi1406's topic in Win Toolkit Addons
Did you use latest addon? both updates should not be shown if so msp are like msi, cann't be integrated offline -
[Solved] EXE to MSP Extractor: Lync will not update
abbodi1406 replied to Tuesday77's topic in WinToolkit Bugs
Actually, the two updates are indeed an MSP files and should accept converting from exe to msp -
I really don't know what it depends on, but it's more related to the serviced image not the Host OS i guess on the size of updates and how many are already in the image, how many is pending but in my experience, after +100 update or so, the dism command will be become slower and slower in adding the packages the command is the same for dism /add-package, each update need its /packagepath: parameter of course using this grouping will recuire some batch scripting and using the inner .cab files is much better and faster in integrating the main script that i learned that concept from is Installer For Windows Updates V28 by Burf however it's intended for Online operation and contains various checks there is a reduced version i modded without most checks and for offline integrating: InstallerV27z.zip
- 10 replies
-
- ScratchDir
- RamDisk
-
(and 4 more)
Tagged with:
-
Integrating updates one by one will always take more time than grouping updates in one dism session of course not all updates, each session can handle 120 ~ 150 update
- 10 replies
-
- ScratchDir
- RamDisk
-
(and 4 more)
Tagged with:
-
Microsoft .NET Framework 4.8 for Windows 7
abbodi1406 replied to abbodi1406's topic in Win Toolkit Addons
The two new security updates KB3023224 and KB3035490 are already included in the rollup -
Microsoft .NET Framework 4.8 for Windows 7
abbodi1406 replied to abbodi1406's topic in Win Toolkit Addons
Updated with new rollup already include security update KB3037581 -
A small, as I can, complete step-by-step guide to WinToolkit
abbodi1406 replied to gippetto's topic in Win Toolkit Guides
1. Prerequisites: KB2670838 / Platform update, IE11 won't accepted/integrated without it KB2786081 KB2834140 KB2871997 / replace KB2639308, KB2533623, KB2731771 KB2882822 KB2888049 KB2970228 / replace KB2729094 2. IE11 main packages: KB2841134 / IE11 KB2849696 / IE-Spelling-en.msu KB2849697 / IE-Hyphenation-en.msu 3. IE11 LangPack: IE11-Windows6.1-LanguagePack-x64-de-de.msu IE-Hyphenation-de.msu IE-Spelling-de.msu 4. IE11 Updates: KB2976627 KB3021952 KB3032359 KB3023607- 30 replies
-
- 2.0.5641.41562
- 2.0.5642.1187
-
(and 79 more)
Tagged with:
- 2.0.5641.41562
- 2.0.5642.1187
- Request
- K-Lite
- Codec
- silent install
- Repak
- Windows 7
- image burner
- cd
- integrate
- updates
- Windows 7 KB3021952
- introduction
- Windows 8.1
- Windows 7
- Batch
- CMD
- Administrador
- Win Toolkit
- minitool
- power data recovery
- 1.5.3.9
- silent install switches
- wintoolkit
- request
- repack list
- full list
- index
- Integrator
- monting
- WIM Manager
- updates
- update downloader
- [solved]
- Crash Stop Error
- Legolash2o
- magiciso
- maker
- magiciso maker
- 5.5
- 2.7
- repack
- .net
- framework
- slim
- madbarz
- invite
- code
- Investigation
- automatic
- driver
- install
- xp
- v1.5.x
- OSCDIMG
- v2.0.0.22
- Fixed in v2.0.0.23
- Mutilple os in a wim updates
- v2.0.0.19
- v2.0.0.19
- Fixed in v2.0.0.21
- universal
- chipset
- driver
- pack
- download
- windows
- 8.1
- xp
- usb
- v2.0.0.12
- Fixed in v2.0.0.14
- Registry file right click
- help
- KB2919355
- win 8.1 x64 help integration
- windows 8 themes
- themes
- xp themes
- themes for windows 7
-
Making an AIO and integrating all updates possible
abbodi1406 replied to upgrade's topic in Win Toolkit
Sorry for being late i honestly tested only one image (HomeBasic) and can confirm it works so, the first group of your code is correct and should work imagex /mountrw install.wim 1 c:\mountDISM /Image:c:\mount /Set-Edition:HomeBasicimagex /commit /append c:\mount HomeBasicimagex /unmount c:\mountimagex /flags "HomeBasic" /info install.wim 2 "HomeBasic" "HomeBasic"imagex /mountrw install.wim 1 c:\mountDISM /Image:c:\mount /Set-Edition:HomePremiumimagex /commit /append c:\mount HomePremiumimagex /unmount c:\mountimagex /flags "HomePremium" /info install.wim 3 "HomePremium" "HomePremium"imagex /mountrw install.wim 1 c:\mountDISM /Image:c:\mount /Set-Edition:Professionalimagex /commit /append c:\mount Professionalimagex /unmount c:\mountimagex /flags "Professional" /info install.wim 4 "Professional" "Professional"imagex /mountrw install.wim 1 c:\mountDISM /Image:c:\mount /Set-Edition:Ultimateimagex /commit /append c:\mount Ultimateimagex /unmount c:\mountimagex /flags "Ultimate" /info install.wim 5 "Ultimate" "Ultimate" however, the second group won't work, because the mounted image c:\mount already upgraded once, and upgrading an upgraded edition will mostly cause errors in the image -
Making an AIO and integrating all updates possible
abbodi1406 replied to upgrade's topic in Win Toolkit
You know, imagex has a nice feature that makes the process much easier: APPEND IMAGEX [FLAGS] /COMMIT mount_path ["image_name"]Commits the changes made to a mounted image without unmounting the image. mount_path - The path of the mounted image to commit. image_name - If the /append flag is set, then a unique image name must be provided.Accepted FLAGS: /APPEND Captures the changes made to the wim into a new image in the wim. /TEMP Specifies the path where temporary files are stored.Example: imagex /commit c:\mounted_images imagex /commit /append c:\mounted_images new_image_nameso instead of copied/duplicating wim files and then re-merging, one could do it with one file: imagex /mountrw install.wim 1 c:\mountDISM /Image:c:\mount /Set-Edition:HomeBasicimagex /commit /append c:\mount HomeBasicimagex /unmount c:\mountand repeat the process for other editions afterwards, change the images' description and edition flag imagex /flags "HomeBasic" /info install.wim 2 "HomeBasic" "HomeBasic" -
Delete the two updates and re-download them
- 5 replies
-
- 2.0.5641.41562
- 2.0.5642.1187
-
(and 79 more)
Tagged with:
- 2.0.5641.41562
- 2.0.5642.1187
- Request
- K-Lite
- Codec
- silent install
- Repak
- Windows 7
- image burner
- cd
- integrate
- updates
- Windows 7 KB3021952
- introduction
- Windows 8.1
- Windows 7
- Batch
- CMD
- Administrador
- Win Toolkit
- minitool
- power data recovery
- 1.5.3.9
- silent install switches
- wintoolkit
- request
- repack list
- full list
- index
- Integrator
- monting
- WIM Manager
- updates
- update downloader
- [solved]
- Crash Stop Error
- Legolash2o
- magiciso
- maker
- magiciso maker
- 5.5
- 2.7
- repack
- .net
- framework
- slim
- madbarz
- invite
- code
- Investigation
- automatic
- driver
- install
- xp
- v1.5.x
- OSCDIMG
- v2.0.0.22
- Fixed in v2.0.0.23
- Mutilple os in a wim updates
- v2.0.0.19
- v2.0.0.19
- Fixed in v2.0.0.21
- universal
- chipset
- driver
- pack
- download
- windows
- 8.1
- xp
- usb
- v2.0.0.12
- Fixed in v2.0.0.14
- Registry file right click
- help
- KB2919355
- win 8.1 x64 help integration
- windows 8 themes
- themes
- xp themes
- themes for windows 7
-
Internet Explorer 11 for Windows 7 is out
abbodi1406 replied to mooms's topic in Microsoft Windows 7
Mainstream support ended latest updated CABs: http://www.microsoft.com/en-us/download/details.aspx?id=43898 -
I ment to ask him about wimgapi issue, not to use wimlib instead -- prices looks OK to me.
-
Can't integrate IE11 cab and IE11 language packs together
abbodi1406 replied to Nameless Mofo's topic in WinToolkit Bugs
You mean this? http://www.microsoft.com/en-us/download/details.aspx?id=40904- 7 replies
-
- 2.0.5641.41562
- 2.0.5642.1187
-
(and 79 more)
Tagged with:
- 2.0.5641.41562
- 2.0.5642.1187
- Request
- K-Lite
- Codec
- silent install
- Repak
- Windows 7
- image burner
- cd
- integrate
- updates
- Windows 7 KB3021952
- introduction
- Windows 8.1
- Windows 7
- Batch
- CMD
- Administrador
- Win Toolkit
- minitool
- power data recovery
- 1.5.3.9
- silent install switches
- wintoolkit
- request
- repack list
- full list
- index
- Integrator
- monting
- WIM Manager
- updates
- update downloader
- [solved]
- Crash Stop Error
- Legolash2o
- magiciso
- maker
- magiciso maker
- 5.5
- 2.7
- repack
- .net
- framework
- slim
- madbarz
- invite
- code
- Investigation
- automatic
- driver
- install
- xp
- v1.5.x
- OSCDIMG
- v2.0.0.22
- Fixed in v2.0.0.23
- Mutilple os in a wim updates
- v2.0.0.19
- v2.0.0.19
- Fixed in v2.0.0.21
- universal
- chipset
- driver
- pack
- download
- windows
- 8.1
- xp
- usb
- v2.0.0.12
- Fixed in v2.0.0.14
- Registry file right click
- help
- KB2919355
- win 8.1 x64 help integration
- windows 8 themes
- themes
- xp themes
- themes for windows 7
-
test5: CopyFolder now copy what inside the folder to destination, not the folder itself i.e. [CopyFolder]ASP.NET::Windows\infASP.NET contents are copied directly to Windows\inf, not the whole ASP.NET folder CopyFile works as expected i loved the detailed process percentage :')