Hi Welcome to MDL well I believe that you already make download of MSMG Toolkit V6.7, if yes then you need read documentation included (.pdf) after you need search the last threads because depending what you want make is very necessary with some versions of O.S. I personally search since first thread until last; I know about all is very tiring but have good compensations trust me
This tool is really elementary to use. Read some of the thread page, and you will understand how to use it. use google translate or bing translate for English to italian language
@garfo02 that's right so you as italian can help robymetallaro, well of course Google translate or Bing help a lot without doubt although he also can call you via pm
Hello, I have integrated Edge in Windows Server 2016 with MSMG-ToolKit. The problem is when updating to KB3213986 (OS Build 14393.693) Edge does not update itself ... It remains in version 14393.0 (Instead of 14393.693) and closes instantly after applying the KB3213986. Is there a way to install/recuperate the update 14393.693 ?
First things first: huge thanks MSMG for this fantastic piece of code. It's easily readable, well maintained and very powerful I'm trying to figure out what are the differences between Windows Setup Boot & Recovery Environment (WinRE) for DaRT integration. I've found that I can get access to DaRT by clicking on "Repair your computer" during Windows setup. What is/are the other way(s) to access DaRT ?
To start MS DaRT from a running windows: Open an elevated cmd and enter: Code: reagentc /boottore Next, reboot.
The answer is a few pages back and this issue has been resolved. Try to search and read first. Cheers.
I'm trying to figure out how the DaRT TPK files were built. By reading the toolkit source code, it seems that DISM can handle these tpk files with the /Apply command switch. But When I try this following command, it fails : Code: > dism /Get-ImageInfo /WimFile:Dart_w10.tpk Deployment Image Servicing and Management tool Version: 10.0.14393.0 Error: 87 The /wimfile option is not recognized in this context. For more information, refer to the help. The DISM log file can be found at C:\Windows\Logs\DISM\dism.log Can someboby point me a link that indicates how these tpk were built ?
The .tpk are actually normal .wim files created using dism.exe with recovery compression (i.e ESD) and are renamed as .tpk (ToolKit Pack) files.
@Enthousiast I waste a lot of time to find this thread and so is for me the best thread about how to work with MSMG Toolkit related integrating updates (Windows 10 Enterprise 2016 LTSB v14393.0) thanks a lot dude you deserve the best congrats
Code: Microsoft Windows [Version 10.0.14393] (c) 2016 Microsoft Corporation. All rights reserved. C:\Windows\system32>Dism /Get-WimInfo /WimFile:"d:\MSMG_6_6\ToolKit-v6.6\Packs\Dart\w10\Dart_w10.tpk" Deployment Image Servicing and Management tool Version: 10.0.14393.0 Details for image : d:\MSMG_6_6\ToolKit-v6.6\Packs\Dart\w10\Dart_w10.tpk Index : 1 Name : Microsoft DaRT 10 Tools (x86) Description : Microsoft DaRT 10 Tools (x86) Size : 62,450,108 bytes Index : 2 Name : Microsoft DaRT 10 Tools (x64) Description : Microsoft DaRT 10 Tools (x64) Size : 70,205,371 bytes The operation completed successfully. C:\Windows\system32>
I used the /Get-ImageInfo switch instead of the /Get-WimInfo switch, though I don't get the difference between these two But my mistake was to use the /WimFile switch instead of /ImageFile to specify the file path. Furthermore, it stupidly requires a filename with a wim extension to work, otherwise it throws you "The parameter is incorrect.". If I change the extension with wim, then it works : Code: λ dism /Get-ImageInfo /ImageFile:.\Dart_w10.wim Deployment Image Servicing and Management tool Version: 10.0.14393.0 Details for image : .\Dart_w10.wim Index : 1 Name : Microsoft DaRT 10 Tools (x86) Description : Microsoft DaRT 10 Tools (x86) Size : 62 450 108 bytes Index : 2 Name : Microsoft DaRT 10 Tools (x64) Description : Microsoft DaRT 10 Tools (x64) Size : 70 205 371 bytes The operation completed successfully. Anyway, thanks Enthousiast for driving me to the correct answer , I appreciate