Skip to content

Instantly share code, notes, and snippets.

@Bengt
Last active March 15, 2023 14:33
Show Gist options
  • Save Bengt/c1033f83c27b33b2116c098b1cc3ec58 to your computer and use it in GitHub Desktop.
Save Bengt/c1033f83c27b33b2116c098b1cc3ec58 to your computer and use it in GitHub Desktop.
This is how I setup Windows ... More or less.

Operating System

  • Download the media creation tool
  • Use it to downgrade Windows 11 to Windows 10

Note: You do not need an USB drive for this.

Updates

  • Run Check for Updates and install all updates.
  • Make sure to also install all optional updates.
  • Reboot
  • Double check that there are all updates installed.
    Sometimes, Windows Update does not catch them all.

Cleanup

  • Remove everything from the taskbar.
  • Unpin everything from the right side start menu.
  • Open Apps and Features and remove any unwanted ones.
  • Open Add or Remove Programs and remove any unwanted ones.

Domain

  • Enter the Windows into the DFKI's domain.
  • Add Bengt to the local adminstrators of this machine.

Installations

Configurations

  • Configure GitBash to alias g to git:

    alias g="git"

Configure Git

  • Set username and email

Set nano as editor

git config --global core.editor "nano"

Set Meld as mergetool

Run in GitBash:

git config --global merge.tool meld
git config --global mergetool.meld.path /c/Program\ Files/Meld/Meld.exe

Configure PyCharm

  • Use license

Configure Windows

Disable keyboard layout switching hotkey

Run this in Start:

powershell -Command Set-ItemProperty -Path 'HKCU:\Keyboard Layout\Toggle' -Name HotKey -Value 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment