Can anyone know what's the package name for the Windows Defender App (Microsoft.Windows.SecHealthUI_cw5n1h2txyewy), which is present in latest Windows 10 RS2 Build?
The GUI version of the ToolKit is getting readied in which you can select the components as you wish at once.
I removed internet explorer. is there any way to have internet explorer app back again. thank you so much ps. amazing script
delims=Package_1637_for_KB3206632? I don't get it. But there are more Package_*_for_KB3206632 than 5000? Remember when I told you that there is only one file we need for the package? Those .mum files of CU KB3206632 are: Code: package_1000_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1001_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1002_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1003_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1004_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1005_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1006_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1007_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1008_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1009_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_100_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1010_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1011_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1012_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1013_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1014_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1015_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1016_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1017_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1018_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1019_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_101_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1020_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1021_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1022_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 package_1023_for_kb3206632~31bf3856ad364e35~amd64~~10.0.1.8 . . . delims=Package_? OK. I'll have a test when I finished the update and feed back. Thanks a lot.
Ok, know I have modified the code to search all *.mum files in the current directory and find the string "Microsoft-Windows-Server" in each found .mum file and if it matches then it will insert the .mum filename into a list.txt file Code: @echo off for /f %%a in ('"dir /b *.mum" 2^>nul') do ( for /f "tokens=* delims=" %%b in ('type %%a ^| find /I "Microsoft-Windows-Server"') do ( echo.%%a>>C:\List.txt ) )
@MSMG To enable the Edge (installed on unsupported editions like ProfessionalStudent/EnterpriseS(N)/Server 2016) updatable, simply add this registry trick before applying the latest CU: Code: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.14393.0] "InstallClient"="DISM Package Manager Provider" "InstallName"="Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.14393.0.mum" "InstallLocation"="\\\\?\\d:\\rs1.bin.amd64fre.dep\\mergedcomponents\\images\\client\\packages\\" "CurrentState"=dword:00000070 "SelfUpdate"=dword:00000000 "Visibility"=dword:00000001 "InstallTimeHigh"=dword:01d1dfb2 "InstallTimeLow"=dword:048e4271 "InstallUser"="S-1-5-18"
Awesome Xinso, you found it! Can you expand on that? Do we change the key text in blue so it reflects ProfessionalEdition or do we add the key? Because if we add it, there will be two, one for enterpriseS and the new one, ProfessionalEdition. Another question: Will this registry trick "stick" or do we have to apply it before each subsequent CU? Thanks for your help!