How to prevent Windows from installing language related updates?

  • Thread starter Thread starter arenaboy007
  • Start date Start date
A

arenaboy007

Guest
Is there a setting I can modify to prevent windows from installing updates such as:
LanguageFeatureOnDemand - Windows 10 version 1607 for AMD64-based Systems - (KB318003)
and
Update for Japanese Microsoft IME Standard Dictionary (KB2734786)
 
Disable the service Windows Update.
Maybe removing IME and Language Pack would be not enough if Windows Updates reinstalls these components.
 
Code:
SCHTASKS /Change /DISABLE /TN "Microsoft\Windows\LanguageComponentsInstaller\Installation"
SCHTASKS /Change /DISABLE /TN "Microsoft\Windows\LanguageComponentsInstaller\Uninstallation"
SCHTASKS /Change /DISABLE /TN "Microsoft\Windows\LanguageComponentsInstaller\ReconcileLanguageResources"
 
Back
Top