But what trouble, I don't even know what to tell you. But if you can be sure that this was not provoked by the new Cumulative Update. Maybe a new bug ... generated by some new configuration or new registry entry ... One thing I can tell you is that if you make a new clean installation, block remote access and still have such a problem. A new hunting season for Keyloggers and Spyware from MS is opened.
Do you know that I always thought that Toolkithelper supported LTSC, in the version that comes from the original ISO? But now, I was confused. Hehehe For the most versions we know that we can work with the SPBuild .1 or the one being supported at the moment by ToolkitHelper. Since there is no such support for LTSC 2019 and 2021, and due to the crowd appeal, I think it would really be interesting for these LTSC Official SPBuild that ToolkitHelper could offer this support. Like a friend here from the forum I told me, create a look like ltSc from 19041.1 is Possible, but it is a Frankenbuild Method. So for LTSC, currently, the first build would be 19044.1288. Correct me if I understood that wrong.
Only LTSC 19044.1288 is not supported but LTSC 19044.1288 + current CU is supported, will be adding the support for 19044.1288 too.
I think I expressed myself badly before. Yes, I understood that Toolkit, only supports with the integration of a CU specified at the time of ToolkitHelper last update. And for LTSC 2019? Would it be 17763.316?
Hello fellow of many struggles. I did exactly this just to clear my doubts and as always my system is very fast, I never had blue screens but the "problem" returned exactly the same in brief words about the text that appears in settings: "your system is NOT IT HAS security or quality updates...but after a few seconds the usual updates for this version of Windows were installed correctly; the issue is that after these operations the system starts to get weird it really seems like I have a hidden "partner" watching me every 20 hours I use my machine! in this way I found a solution that is working so far I just disabled Windows Update and for now everything is fine and all the updates that are to come I will download through the MDL
Understood. I wrote about it, not knowing if LTSC 2019 17763.1 was available. I thought that as in the case of LTSC 2021, the ".1" would be for the non-LTSC builds. So I supposed that in LTSC 2019 there would be a specific SPBuild as well.
I recently discovered the joy of the tweaks menu and would once again thank MSMG & Co for being awesome.
@MSMG, To integrate the NetFX35 Language Pack, I made a modification here, if this finds the language file, will set a variable for integration of this package. In Windows 10 there is LanguagePack for Netfx35, in Windows 11 there is no such package. Follow the code Changed to work in Toolkit.cmd: Code: ::------------------------------------------------------------------------------------------- :: Function to Integrate Microsoft .NET Framework 3.5 ::------------------------------------------------------------------------------------------- :IntNetFX35 cls echo.=============================================================================== echo. MSMG Toolkit - Integrate Microsoft .NET Framework 3.5 echo.=============================================================================== echo. :: Setting Microsoft .NET Framework 3.5 Feature Pack folder path according to Source Image Architecture if "%SelectedSourceOS%" equ "w81" ( dir /B /AD "%DVD%\sources\sxs\*.*" | findstr.exe /I "NetFX35" && ( set "NetFX35=%DVD%\sources\sxs" ) || ( set "NetFX35=%NetFX35%\%SelectedSourceOS%\%ImageArchitecture%" ) ) if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" ( if exist "%DVD%\sources\sxs\*.cab" ( set NetFX35= set NetFX35_Lang= for /f "tokens=*" %%# in ('dir /B "%DVD%\sources\sxs\*.*" ^| findstr.exe /I "NetFX3"') do ( if "%ImageBuild%" leq "16299" set "NetFX35=%DVD%\sources\sxs\%%~nx#" if "%ImageBuild%" geq "17134" ( echo.%%#| findstr.exe /I "%PackageArchitecture% %ImageDefaultLanguage%" | findstr.exe /I /V "~~" >nul && (set "NetFX35_Lang=%DVD%\sources\sxs\%%~nx#") echo.%%#| findstr.exe /I "%PackageArchitecture% ~~" | findstr.exe /I /V "%ImageDefaultLanguage%" >nul && (set "NetFX35=%DVD%\sources\sxs\%%~nx#") ) ) ) else ( set "NetFX35=%NetFX35%\%SelectedSourceOS%\%PackageVersion%\Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~%PackageArchitecture%~~%PackageVersion%.%PackageServicePackBuild%.cab" ) ) :: Checking whether Microsoft .NET Framework 3.5 Feature Pack folder exist if "%SelectedSourceOS%" equ "w81" if not exist "%NetFX35%\msil_system.net_b03f5f7f11d50a3a_6.3.9600.16384_none_78f2900af99c8442\system.net.dll" ( echo.Microsoft .NET Framework 3.5 Pack folder is missing or empty... echo. echo.Please copy the files to ^<Packs\NetFX35\w81\%ImageArchitecture%^> folder... echo. goto :Stop ) :: Checking whether Microsoft .NET Framework 3.5 Feature Pack folder exist if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" ( if not exist "!NetFX35!" ( echo.Microsoft .NET Framework 3.5 Pack file is missing... echo. if "%ImageBuild%" leq "16299" echo.Either copy the "microsoft-windows-netfx3-OnDemand-package.cab" file from Source DVD to ^<DVD\sources\sxs^> folder if "%ImageBuild%" geq "17134" echo.Either copy the "microsoft-windows-netfx3-OnDemand-package~31bf3856ad364e35~%PackageArchitecture%~~.cab" from Source DVD to ^<DVD\sources\sxs^> folder echo. echo.or Copy the below Toolkit Pack file to ^<Packs\NetFX35\%SelectedSourceOS%\%PackageVersion%^> folder.. echo. echo."Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~%PackageArchitecture%~~%PackageVersion%.%PackageServicePackBuild%.cab" echo. goto :Stop ) ) echo.------------------------------------------------------------------------------- echo.####Starting Integrating Microsoft .NET Framework 3.5########################## echo.------------------------------------------------------------------------------- echo. echo. Image : install.wim echo. Image Index : !ImageIndexNo! echo. Image Architecture : %ImageArchitecture% echo. Image Version : %ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel% echo. echo.------------------------------------------------------------------------------- echo.####Integrating Microsoft .NET Framework 3.5################################### echo.------------------------------------------------------------------------------- for %%i in (!ImageIndexNo!) do ( if exist "%InstallMount%\%%i\" ( echo. if not %%i gtr 9 echo.===========================[Install.wim, Index : %%i]============================ if %%i gtr 9 echo.==========================[Install.wim, Index : %%i]============================ echo. echo.------------------------------------------------------------------------------- echo.Checking whether Microsoft .NET Framework 3.5 is enabled... echo.------------------------------------------------------------------------------- echo. if "%SelectedSourceOS%" equ "w81" ( %DISM% /Image:"%InstallMount%\%%i" /Get-FeatureInfo /FeatureName:NetFX3 | findstr.exe /I /C:"State : Enable Pending" >nul if errorlevel 1 ( echo.Microsoft .NET Framework 3.5 is not enabled. echo. echo.------------------------------------------------------------------------------- echo.Integrating Microsoft .NET Framework 3.5 Package... echo.------------------------------------------------------------------------------- %DISM% /Image:"%InstallMount%\%%i" /Enable-Feature /All /LimitAccess /FeatureName:NetFX3 /Source:"%NetFX35%" ) else ( echo.Microsoft .NET Framework 3.5 has already been enabled. ) ) if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" ( %DISM% /Image:"%InstallMount%\%%i" /Get-FeatureInfo /FeatureName:NetFx3 | findstr.exe /I /C:"State : Enabled" >nul if errorlevel 1 ( echo.Microsoft .NET Framework 3.5 is not enabled. echo. echo.------------------------------------------------------------------------------- echo.Integrating Microsoft .NET Framework 3.5 Package... echo.------------------------------------------------------------------------------- call :AddPackage "%InstallMount%\%%i", "!NetFX35!" if "!NetFX35_Lang!" neq "" if exist "!NetFX35_Lang!" call :AddPackage "%InstallMount%\%%i", "!NetFX35_Lang!" ) else ( echo.Microsoft .NET Framework 3.5 has already been enabled. ) ) ) ) echo. echo.------------------------------------------------------------------------------- echo.####Finished Integrating Microsoft .NET Framework 3.5########################## echo.------------------------------------------------------------------------------- :Stop echo. echo.=============================================================================== echo. :: Returning to Integrate Features Menu goto :EOF ::------------------------------------------------------------------------------------------- Spoiler: Custom Toolkit - NetFX35 Integrating Progress Code: =============================================================================== MSMG Toolkit - Integrate Microsoft .NET Framework 3.5 =============================================================================== ------------------------------------------------------------------------------- ####Starting Integrating Microsoft .NET Framework 3.5########################## ------------------------------------------------------------------------------- Image : install.wim Image Index : 1;2 Image Architecture : x64 Image Version : 10.0.19044.1806.0 ------------------------------------------------------------------------------- ####Integrating Microsoft .NET Framework 3.5################################### ------------------------------------------------------------------------------- =============================================================================== [install.wim, Index : 1 - Edition : Core] =============================================================================== ------------------------------------------------------------------------------- Checking whether Microsoft .NET Framework 3.5 is enabled... ------------------------------------------------------------------------------- Microsoft .NET Framework 3.5 is not enabled. ------------------------------------------------------------------------------- Integrating Microsoft .NET Framework 3.5 Package... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.25145.1000 Image Version: 10.0.19044.1806 Processing 1 of 1 - Adding package Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.25145.1000 Image Version: 10.0.19044.1806 Processing 1 of 1 - Adding package Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~pt-BR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. =============================================================================== [install.wim, Index : 2 - Edition : Professional] =============================================================================== ------------------------------------------------------------------------------- Checking whether Microsoft .NET Framework 3.5 is enabled... ------------------------------------------------------------------------------- Microsoft .NET Framework 3.5 is not enabled. ------------------------------------------------------------------------------- Integrating Microsoft .NET Framework 3.5 Package... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.25145.1000 Image Version: 10.0.19044.1806 Processing 1 of 1 - Adding package Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.25145.1000 Image Version: 10.0.19044.1806 Processing 1 of 1 - Adding package Microsoft-Windows-NetFx3-OnDemand-Package~31bf3856ad364e35~amd64~pt-BR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- ####Finished Integrating Microsoft .NET Framework 3.5########################## ------------------------------------------------------------------------------- ===============================================================================
Thanks will look into the code however here abbodi1406 says the Windows 10 images already contain language resources for .NET 3.5.
Interesting to know that. Now that you said that I remember seeing this as capabilities. But in enable capabilities, without packages, in /Online mode, integrations occur through Windows Update. In our case, /Offline integration, if NetFX35 is not integrated, I think the language pack would not be either. It would be the logic of thought, for me, more coherent. However, the language pack is available on Windows 10 isos for pt-BR and perhaps for other languages. So I made the code detect the presence of the file in the SXS folder. If it does not exist, no problem. Only integrates the NetFX35.
For the sake of semantics (so that there are no bad interpretations by linguistic barriers), I asked Abbodi in other words and he reaffirmed that ISO's main language pack already has NetFX35 LP. I asked what is the meaning of this NetFX35 LP package presence? He said the same as the presence of IE packages that was always integrated. I interpret it as follows: That the presence of unintegrated packages really makes sense. But of those already integrated, it makes no sense. Anyway...
@MSMG w10 21H2 X64 Component : SpeechRecognition Removing Package files... Modifying Package files... Loading Image Registry... Modifying Package Registry... Unloading Image Registry... The operation completed successfully. i removed accesibility and speech recognition. but speech recognition was not removed
Is the ServicePackBuild you are using supported by ToolkitHelper? 19044.1766 Build 19044 SPBuild 1766?