From EduTechWiki - Reading time: 4 min
Windows 10, according to [ Wikipedia] “is a personal computer operating system developed and released by Microsoft as part of the Windows NT family of operating systems. It was released on July 29, 2015 [..]”
The purpose of this page is to write down a few configuration tricks, as well as some "essentials".
Note from the main author of this article. Personally I don't like any OS in particular and I do not care much. My big desktop machine runs Ubuntu. Otherwise I use Win 7, 8 and 10 on my laptops, Android and Ios on small devices.
Things that I use frequently:
See Slicers and user interfaces for 3D printers
Free (close/open source, free/commercial)
Commercial
With the message saying that "office 16 click-to-run extensibility component" should be removed. Of course, the system will not tell which program uses this component :(
To figure which program blocks you will have to find this information in the installation directory. A regular search for this component will not help.
Add columns, then select "Choose columns" and finally add "Subject".Now you should see "Office 16 Click-to-Run Extensibility Component". Do not uninstall the 64bit version of this. Take the one without mention, i.e. the 32bit version.
In addition there were five different Office 365 programs installed. Uninstalling these was easy but ate another 10 minutes. Cannot even uninstall by bundles. Also why the hell do they believe that I can speak Dutch and other weird languages like French or German ? (The Uninstaller cannot speak English).
I just wonder how normal folks can cope with this crap. This was experienced with a brand new high end Dell XPS 15 laptop just fresh out of the box... I always thought that Linux/Unbuntu was not very friendly in some situations, but getting this from Win10 was not expected and is not acceptable. Why can't Microsoft just propose to uninstall these useless things that came with the computer.
If that happens after turning the power on, unplug the USB-C adapter and plug it in again.
One main problem with Win10 is privacy. You may consider installing a tool,
Many operation require admin privileges. Even if you have admin rights, you are not automatically an admin
To use a power shell in admin mode:
Windows Powershell (admin)To use the command promt (french: invite de commande) in admin mode:
cmd in the search box. Do not press return !See also: TenForums
The system UI language defines default language for new users. It will not affect existing users.
Notice: One can see the UI language for a user in Settings > Time & Language > Language.
In the powershell: Get-WinSystemLocale
In the command prompt: dism /online /get-intl
To change the System Locale, type: Set-WinSystemLocale fr-CH (for example). This could be dangerous, if the languages are not installed.
See also:
Detecting and setting the UI language through the settings panel (In french: "Paramètres")
Settings > Time & Language > Language (In french: Paramètres, heure et langage, langage)Using the powershell:
get-Culture | Format-List -Property * will show the current language settings for the current user, i.e. UI language (e.g. fr-CH) and the keyboard (e.g. 4108)Get-WinUserLanguageList. The first item in the list the one that defines the default UI language.Get-WinUILanguageOverride command shows an override, but that was not set in my system. Set-WinUILanguageOverride -Language de-DE overrides the current settings, but we do not understand what that means. I does not seem to affect UI settings. Set-WinUILanguageOverride will reset it. Example:PS C:\WINDOWS\system32> Get-WinUILanguageOverride
PS C:\WINDOWS\system32> Set-WinUILanguageOverride -Language fr-CH PS C:\WINDOWS\system32> Get-WinUILanguageOverride LCID Name DisplayName ---- ---- ----------- 4108 fr-CH Français (Suisse)
PS C:\> $OldList = Get-WinUserLanguageList
PS C:\> $OldList.Add("fr-FR")
PS C:\> Set-WinUserLanguageList -LanguageList $OldList
Seems to be impossible (except for proofing which is not good enough, one ought to be able to work from start in another language).