It's been fixed in the upcoming version. The next version is almost ready, doing final testing and then need to repack the files and upload. will post the preview screenshots of new integration menu and other changes I have done in a while.
@ Hi MSGM ! --------------Testing Config ----------------- Host : Win7 SP1 Ultimate (x86) / Pro (x64) OS : Win8.1 Update 1 Pro (x86)/(x64) VL ---------------------------------------------- About :IntWMC Error 1168 - happens after applying of /Set-EditionrofessionalWMC [see screenshots] Despite that, script continues until to final success message: Code: ------------------------------------------------------------------------------- °°°°Finished Integrating Windows Media Center Add-on Feature°°°°°°°°°°°°°°°°°°° ------------------------------------------------------------------------------- Below, Wiminfo.xml after Windows Media Center Add-on Feature integration : Code: <WIM> <TOTALBYTES>2498519496</TOTALBYTES> <IMAGE INDEX="1"> <DIRCOUNT>13695</DIRCOUNT> <FILECOUNT>67620</FILECOUNT> <TOTALBYTES>8735985777</TOTALBYTES> <HARDLINKBYTES>3528133782</HARDLINKBYTES> <CREATIONTIME> <HIGHPART>0x01CF4286</HIGHPART> <LOWPART>0x4FECE7A9</LOWPART> </CREATIONTIME> <LASTMODIFICATIONTIME> <HIGHPART>0x01CF4286</HIGHPART> <LOWPART>0x7AC8BA1E</LOWPART> </LASTMODIFICATIONTIME> <WIMBOOT>0</WIMBOOT> <WINDOWS> <ARCH>0</ARCH> <PRODUCTNAME>Microsoft® Windows® Operating System</PRODUCTNAME> <EDITIONID>Professional</EDITIONID> <INSTALLATIONTYPE>Client</INSTALLATIONTYPE> <SERVICINGDATA> <GDRDUREVISION>20140317</GDRDUREVISION> <PKEYCONFIGVERSION>6.3.9600.17031;2014-02-22T04:34:24Z</PKEYCONFIGVERSION> </SERVICINGDATA> <HAL>acpiapic</HAL> <PRODUCTTYPE>WinNT</PRODUCTTYPE> <PRODUCTSUITE>Terminal Server</PRODUCTSUITE> <LANGUAGES> <LANGUAGE>fr-FR</LANGUAGE> <FALLBACK LANGUAGE="fr-FR">en-US</FALLBACK> <DEFAULT>fr-FR</DEFAULT> </LANGUAGES> <VERSION> <MAJOR>6</MAJOR> <MINOR>3</MINOR> <BUILD>9600</BUILD> <SPBUILD>17031</SPBUILD> <SPLEVEL>0</SPLEVEL> </VERSION> <SYSTEMROOT>WINDOWS</SYSTEMROOT> </WINDOWS> <NAME>Windows 8.1 ProWMC</NAME> <DESCRIPTION>Windows 8.1 Pro WMC</DESCRIPTION> <FLAGS>ProfessioanlWMC</FLAGS> <DISPLAYNAME>Windows 8.1 Pro WMC</DISPLAYNAME> <DISPLAYDESCRIPTION>Windows 8.1 Pro WMC</DISPLAYDESCRIPTION> </IMAGE> <GUID>d94d36aa-29f7-44e4-b330-99b736c65a94</GUID> <IMAGECOUNT>1</IMAGECOUNT> <COMPRESSION>LZX</COMPRESSION> <PARTNUMBER>1</PARTNUMBER> <TOTALPARTS>1</TOTALPARTS> <ATTRIBUTES>0xc</ATTRIBUTES> </WIM> Due to this previous error, i've added few mods: Code: :: Integrating Windows Media Center Add-on Feature to WIM Image File :AddWMC echo.Windows Media Center Add-on Feature Is Not Enabled... echo. echo.------------------------------------------------------------------------------- echo.°°°°Integrating Windows Media Center Add-on Feature°°°°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. :: Setting WIM Image Edition from Professional to ProfessionalWMC echo.------------------------------------------------------------------------------- echo.Upgrading WIM Image Edition from "Professional" to "ProfessionalWMC"... echo.------------------------------------------------------------------------------- %DISM% /Image:%InstallMnt% /Set-Edition:ProfessionalWMC echo. %ImageX% /Info %InstallWim% %WimIndexNo% | findstr /c:"<EDITIONID>ProfessionalWMC</EDITIONID>" >nul if errorlevel 1 ( echo. echo.------------------------------------------------------------------------------- echo.°°°°Windows Media Center Add-on Feature Integration failed ^^!°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. echo.To remedy this, in a few seconds, the script will do the following: echo. echo. - Discarding Changes ^& Un-Mounting [WinRE.wim] ^& [Install.wim] Images echo. - Re-Mounting [WinRE.wim] ^& [Install.wim] Images :: Pause the execution (10 sec) for /l %%a in (1,1,10) do (<nul (set /p z=. >nul) & >nul ping 127.0.0.1 -n 2 ) echo.. >nul echo. echo.------------------------------------------------------------------------------- echo. echo.------------------------------------------------------------------------------- REM echo.°°°°Starting cancelling Windows Media Center Add-on Feature Integration°°°°°°°° echo.------------------------------------------------------------------------------- echo. echo.------------------------------------------------------------------------------- echo.°°°°Discarding Changes ^& Un-Mounting Source WIM Image°°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. :: Discarding Changes ^& Un-Mounting Image File echo.------------------------------------------------------------------------------- echo.Discarding Changes ^& Un-Mounting [WinRe.wim, Index : 1] WIM Image... echo.------------------------------------------------------------------------------- call:UnMountWim %WinReMnt%, "Discard" echo.------------------------------------------------------------------------------- echo.Discarding Changes ^& Un-Mounting [Install.wim, Index : %WimIndexNo%] WIM Image... echo.------------------------------------------------------------------------------- call:UnMountWim %InstallMnt%, "Discard" echo.------------------------------------------------------------------------------- echo. echo.------------------------------------------------------------------------------- echo.°°°°Re-Mounting Source WIM Images°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. echo.------------------------------------------------------------------------------- echo.Re-Mounting [Install.wim, Index : %WimIndexNo%] WIM Image at ^<\Mount\Install^>... echo.------------------------------------------------------------------------------- call:MountWim %InstallWim%, %WimIndexNo%, %InstallMnt% echo.------------------------------------------------------------------------------- echo.Re-Mounting [WinRe.wim, Index : 1] WIM Image at ^<\Mount\WinRE^>... echo.------------------------------------------------------------------------------- call:MountWim %InstallMnt%\%WinReWim%, 1, %WinReMnt% echo.------------------------------------------------------------------------------- echo.°°°°Finished Re-Mounting [Install.wim, Index : %WimIndexNo%]°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- goto :Stop ) if not errorlevel 1 ( echo.------------------------------------------------------------------------------- echo.°°°°Copying EI.CFG Config File to Source Folder°°°°°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. :: Writing EI.cfg Config File to DVD\sources Folder echo.Copying Windows 8.1 Pro WMC Edition EI.CFG File to ^<DVD\sources^> Folder... if /i exist "%DVD%\sources\EI.CFG" del /f /q %DVD%\sources\EI.CFG >nul echo.[EditionID] >> %DVD%\sources\EI.CFG echo.ProfessionalWMC >> %DVD%\sources\EI.CFG echo.>> %DVD%\sources\EI.CFG echo.[Channel] >> %DVD%\sources\EI.CFG echo.Retail >> %DVD%\sources\EI.CFG echo. >> %DVD%\sources\EI.CFG echo.[VL] >> %DVD%\sources\EI.CFG echo.0 >> %DVD%\sources\EI.CFG echo. echo.------------------------------------------------------------------------------- echo.°°°°Committing Changes ^& Un-Mounting Source WIM Image°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. :: Saving Changes and Un-Mounting WIM Image File echo.------------------------------------------------------------------------------- echo.Commiting Changes ^& Un-Mounting [WinRe.wim, Index : 1] WIM Image... echo.------------------------------------------------------------------------------- call:UnMountWim %WinReMnt%, "Commit" echo.------------------------------------------------------------------------------- echo.Commiting Changes ^& Un-Mounting [Install.wim, Index : %WimIndexNo%] WIM Image... echo.------------------------------------------------------------------------------- call:UnMountWim %InstallMnt%, "Commit" echo.------------------------------------------------------------------------------- echo.°°°°Setting Source WIM Image Flag, Name ^& Description°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. echo.Setting WIM Image Flag, Name and Description to Reflect Windows Media Center Edition... echo. echo.=============================================================================== echo.Attributs : [Name] ^| [Flag] ^| [Description] echo.=============================================================================== echo.Prev value : Windows 8.1 Pro ^| Windows 8.1 Pro ^| Professional echo.------------------------------------------------------------------------------- echo.New value : Windows 8.1 Pro WMC ^| Windows 8.1 Pro WMC ^| ProfessionalWMC echo.=============================================================================== :: Pause the execution (05s) for /l %%a in (1,1,5) do (<nul (set /p z=. >nul) & >nul ping 127.0.0.1 -n 2) echo.. >nul %ImageX% /Flags "ProfessionalWMC" /Info %InstallWim% %WimIndexNo% %WimDestName% %WimDestName% >nul echo. echo.------------------------------------------------------------------------------- echo.°°°°Re-Mounting Source WIM Image°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- echo. :: Mounting WIM Image File to Service echo.------------------------------------------------------------------------------- echo.Re-Mounting [Install.wim, Index : %WimIndexNo%] WIM Image at ^<\Mount\Install^>... echo.------------------------------------------------------------------------------- call:MountWim %InstallWim%, %WimIndexNo%, %InstallMnt% echo.------------------------------------------------------------------------------- echo.Re-Mounting [WinRe.wim, Index : 1] WIM Image at ^<\Mount\WinRE^>... echo.------------------------------------------------------------------------------- call:MountWim %InstallMnt%\%WinReWim%, 1, %WinReMnt% echo.------------------------------------------------------------------------------- REM echo.°°°°Finished Integrating Windows Media Center Add-on Feature°°°°°°°°°°°°°°° echo.------------------------------------------------------------------------------- goto :Stop ) Is Toolkit not compatible with M$ VL products?
@Kenafri This isn't the fault of the toolkit. VL edition of Pro lacks of the required packages for ProWMC upgrade.
It's been fixed in the coming version, I have put a check to find if the source image is a Pro VL and it will give message Pro VL is not supported and will return to main menu.
Good News, Updated the ToolKit to v1.1 Changelog : Spoiler v1.1 + Added HOST OS Information to MSMG ToolKit's StartUp Window. + Fixed the Bug in ToolKit's StartUp Function, Where the Detection of Microsoft .Net Framework Components Failed on Windows 7 HOST OS. - Removed WADK 8.1 Tools Build 17031 Pack for MSMG ToolKit to Avoid Confusion for Windows 7 HOST OS Users. + The ToolKit Integrate Menu Interface is Completely Re-designed with Simplified Menus for Easy Operation. + The ToolKit Integrate Menu Items Now Consists of:Windows 8.1 / Server 2012 R2 Update 1 (Windows 8.1 / Server 2012 R2 OS Only) Windows Language Packs Windows Security Updates & Hot-fixes Windows Device Drivers Windows Essentials Features (Windows 8.1 / Server 2012 R2 OS Only) [*=1]Microsoft .NET Framework 3.5 Components [*=1]Windows Media Center Add-on Feature [*=1]Windows Data Deduplication Feature [*=1]Windows To Go Workspace Feature [*=1]Microsoft Default Metro Apps [*=1]Microsoft DaRT 8.1 Tools (Windows 7 / Thin PC / Server 2008 R2 OS Only) [*=1]Microsoft DirectX 9.0c Components [*=1]Microsoft Legacy Games [*=1]Microsoft DaRT 7.0 Tools [*=1]Windows Thin PC Add-on Features (Windows Thin PC OS Only) Windows Legacy Features (Windows 8.1 / Server 2012 R2 OS Only) [*=1]Microsoft DirectX 9.0c Components [*=1]Microsoft Legacy Games [*=1]Windows Sidebar Feature Windows Custom Features [*=1]Windows Media Center Generic Activation Tokens (Windows 8.1 OS Only) [*=1]Pre-Activation Details for Auto-Activation [*=1]Microsoft Terminal Server Patch [*=1]Fraunhofer MP3 Professional Codec [*=1]Custom Themes UxTheme Patch (Windows 7 / Thin PC / Server 2008 R2 OS Only) [*=1]Custom Windows Recovery Environment (WinRE) [*=1]Custom Default User Account Pictures [*=1]Custom System Overlay Files + Added a Feature to "Copy Source from DVD Drive". + Added a Feature to "Extract Source from ISO Image". + Added a Feature to "Convert ESD Image to WIM Image". + Added a Validation Check for Input Index Number in the Select Source Feature. + Added a MS Guideline Descriptions for Integrate Language Packs, Feature Packs, Windows Updates Features. + Updated the Feature to "Integrate Windows 8.1 / Server 2012 R2 Update 1" (Replaced KB2969339 with KB2975061, Added KB2989647). + Updated the Feature to "Integrate Windows 8.1 / Server 2012 R2 Update 1", to Dynamically Choose Baseline or Baseline Supplementary Updates for Windows 8.1 RTM/Update 1 Source. + Added a Feature to "Integrate Windows Setup Media Updates". + Now The ToolKit Extracts Windows Setup Media Update Files From Boot.wim & Install.wim to DVD Folder. - Removed the Windows 8.1 / Server 2012 R2 Update 1 Setup DVD Media Pack for MSMG ToolKit. + Updated the Feature "Integrate Windows Security Updates ^& Hot-fixes" to Support WHD Downloader Repository Folder Structure. + Fixed a Bug in the Feature "Integrate Windows Media Center Add-on Feature", Where Checking for Source WIM Image Edition Skipped Windows Pro VL Edition. + Added a Feature to "Integrate Default Metro Apps". - Removed Microsoft Internet Explorer 11 Pack for MSMG ToolKit, As ToolKit Now Supports WHD Downloader Repository Folder Structure. + Fixed a Bug in the Feature "Integrate Microsoft DaRT 7 / 8.1 Tools", Where the Language Menu Selection was not Working Properly. + Renamed the Feature "Integrate Windows Vista & 7 Games Pack" as "Integrate Microsoft Legacy Games Pack". + Updated Microsoft Legacy Games Pack for MSMG ToolKit with Support for Microsoft Carioca Rummy, Sudoku, Thinker Level Editor. + Updated the Feature to "Integrate Windows Sidebar Feature", to Write the SetupComplete.cmd file to Installation DVD <$oem$\$$\Setup\scripts> Folder. + Added a Feature to "Integrate Custom UxTheme Patch", (Windows 7 / Thin PC / Server 2008 R2 OS Only). + Updated the Feature "Remove Default Metro Apps" with Version Checking for Updated Default Metro Apps. + Added a New Menu Item "Options" to the MSMG ToolKit's Main Menu. + Added a Feature to "Change MSMG ToolKit Color Settings". + Fixed ToolKit Semantic Errors. - Removed Redundant Codes.
In the "MSMG Toolkit Download Links" section, the last pack is wrongly named as "Microsoft Windows Sidebar Pack for MSMG Toolkit".it's actually the "Windows To Go" feature and as of now the mega link for this "WTG.7z" pack is down.
It's a old Link that i forgot to remove it, now it's been removed. actually WTG pack comes with the ToolKit-v1.1.7z File.
Does the TookKit FEATURE: “[FONT="]Integrate Fraunhofer IIS MPEG Layer-3 Professional Codec” require any Additional Files to be placed inside any of the ToolKit folders? O[/FONT]nce integrated, can Windows Media Player or Windows Media Center utilize this Codec?
Actually this Tweak is a part of MDL Member Moderate Packs, it doesn't need any additional files. This tweak will enable the Pro mode and it is used mainly with AV converter's like Virtualdub. i don't personally use this. I just included this in the ToolKit so that if anyone requires it. I will move this Tweak to Tweaks section in the future version.
@MSMG When using ToolKit v1.1, I discovered that the feature / option to "Remove All Default Metro Apps" is not working for me... I've never had any issue with this when using v1.09... I'm using a Windows 7-x64 HOST PC to create a modified Windows 8.1-x64 ISO... I've tried this numerous times today thinking that I MUST be doing something wrong, but now I think it's and issue with v1.1... Initially I was TESTING the feature / option to ADD DirectX 9.0c & the Legacy Games Packs... I assumed those were the culprits, but found out that without adding these, ALL of the Default Metro Apps are still being installed...
Ya I noticed it today when i was working with a different wim image and the hidden apps like camera, filemanger, photos and store didn't remove and gave an error. it is with the app version it is causing the error, i will check and fix it.
Updated the ToolKit to v1.2 Changelog : Spoiler v1.2 + Updated the MSMG ToolKit's BIN Folder with Updated DISM Packages. + Added a Feature to "Extract Source from OEM IMG Image". * Merged the Select Source from ESD Image Menu Items with Select Source Menu. + Added WIM Image Component Cleanup Task for WinPE Updates in The Feature "Integrate Windows Security Updates & Hotfixes". + Fixed a Typo Error in the Feature "Integrate Windows Media Center Add-on Feature", Where the Character '>' was Wrong Used Instead of '|' in Source OS Validation Check for Retail Edition on Windows 8.1 Pro x64 VL Edition. + Fixed a Bug in the Feature "Integrate Windows Media Center Add-on Feature", Where Source OS Validation Check for Retail Edition Failed on Windows 8.1 Pro x64 VL Edition. + Fixed a Bug in the Feature "Remove Default Metro Apps" Where Version Checking Failed with Default Metro Apps (FileManager/OneDrive/Photos, Camera, Store).
@MSMG… ToolKit 1.2 FAILS to continue and CLOSES as soon as the EULA is Accepted with Administrator Privileges using a Windows 7-x64 HOST PC… This issue occurred with v1.09 when using the newer 8.1 DISM Pack in the BIN folder vs the Default… V1.1 does not have this issue…
It's working properly on w8.1, I know DISM Build 17031 will not work on Windows 7 But I just updated the DISM pack provided by WADK 8.1 latest, it's still the same build 17029 but only few dll's were newer. I will again check on Windows 7 HOST OS and reply back. Edit : I just forgot to remove some lines of code which i was using for testing.. that's why it's causing the error. i will update the link again with the error fixed. wait for some time.