Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

windows.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

Windows Snippets

Prevent keyboard layout changes by shortcut (German)

  1. Windowstaste drücken -> "Eingabeeinstellungen" schreiben und mit Enter bestätigen
  2. Unter "Weitere Tastatureinstellungen" auf "Erweiterte Tastatureinstellungen" klicken
  3. Unter "Wechseln der Eingabemethode" auf "Sprachleistenoptionen" klicken
  4. Den Reiter "Erweiterte Tastatureinstellungen" anklicken
  5. "Tastenkombination ändern"
  6. "Nicht zugewiesen" und "Nicht zugewiesen" auswählen, mit OK bestätigen

Source

Export folder structure as text

  1. Open folder from which you want to create the tree in the explorer
  2. Type cmd in the address-bar of the explorer (which will open the bash inside this folder)
  3. Run tree /a /f > c:\output\tree.txt to create the tree.

Alternatively:

  1. Open the bash (Windows-Key + R) --> cmd

  2. Run

    tree d:\demo /a /f > d:\output.txt