1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-10-10 18:01:22 +02:00

windows: moved for general windows

This commit is contained in:
2023-03-13 19:11:22 +01:00
parent bdc7bdffbf
commit 4dea98d2c7
3 changed files with 28 additions and 15 deletions

View File

@@ -0,0 +1,24 @@
# File explorer
## Cleanup
The windows file explorer comes with OneDrive and Shortcuts attached to the left-hand side of the window.
There is no easy way to remove it, so you have to make changes to the registry.
### Remove Onedrive Shortcut
- `win-r` - open the run command
- insert `regedit` to the opened window
- in the registry-editor navigate to `Computer/HKEY_CLASSES_ROOT/CLSID/018D5C66-4533-4307-9B53-224DE2ED1FE6`
- Change `System.isPinnedToNameSpaceTree` to `0`
Of course you can change it back to `1` to reenable it.
### Remove Quickaccess
- `win-r` - open the run command
- insert `regedit` to the opened window
- in the registry-editor navigate to `Computer/HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion/Explorer`
- Add a new DWORD-Entry with the name `HubMode` and set its value to `0`
Of course you can change it back to `1` or just remove the entry to reenable it.

28
wiki/windows/windows.md Normal file
View File

@@ -0,0 +1,28 @@
# Windows
[Windows](https://windows.com/) is an operating system developed by
[Microsoft](https://www.microsoft.com/).
## Telemetry
Windows has a `Windows Compatibility Telemetry` process running in the
background.
To disable it follow this
[guide](https://answers.microsoft.com/en-us/windows/forum/windows_10-performance/permanently-disabling-windows-compatibility/6bf71583-81b0-4a74-ae2e-8fd73305aad1):
- Start the `Task Scheduler`
- In the `Task Scheduler` navigate to the path
`Task Scheduler Library\Microsoft\Windows\Application Experience`
- Look for the `Microsoft Compatibility Appraiser` on the `Application Experience`
folder, right-click it and select `Disable`.
## Make Windows compatible with UTC
Making Windows use UTC can be useful for dual-boot systems.
This can be done by running the following command in the Windows command prompt.
```txt
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /d 1 /t REG_DWORD /f
```
Disabling of UTC time is done with the same command with a `0` instead of a `1`.