[[start:knowledge|<< Back]] ====== Windows ====== ===== Make Windows feel snappier ===== Adjust the appearance and performance of windows --> Turn off "animate controlls and elements inside windows" ===== Shortcuts ===== ==== General ==== ^ Action ^ Shortcut ^ | Display desktop | Windows d | | Open file explorer | Windows e | | Delete whole word | Ctrl Backspace | | Select characters | Shift arrow | | Select words | Ctrl Shift arrow | | Move Desktop | Ctrl windows <- or -> | | Show symbols | Windows . | | Always on top | Windows Ctrl t | ==== File Explorer ==== ^ Action ^ Shortcut ^ | Create new folder | Ctrl Shift n | | Copy file path | Ctrl Shift c | ==== fman ==== ^ Action ^ Shortcut ^ | GoTo | Ctrl p | | Explorer | f10 | | Switch side | Tab | | Command Palette | Ctrl Shift p | ===== Codecs ===== | [[https://codecguide.com/download_kl.htm|K-Lite]] | For all common audio and video file formats | ===== Drivers ===== | [[https://novationmusic.com/en/components|Novation Components]] | Novation Components | | [[https://www.wacom.com/en-us/support/product-support/drivers|Wacom]] | Wacom | [[https://answers.microsoft.com/en-us/windows/forum/all/clean-install-windows-10-11-2024/1c426bdf-79b1-4d42-be93-17378d93e587|Clean install windows]] ===== Command Prompt ===== ==== Show folder structure ==== Move to the folder by using CD\\ Put this behind the file path\\ tree /a /f > output.doc Output.doc is the document file where the entire directory tree is saved.\\ Open it to check out the tree!\\ ==== Delete all “._Thumbs.db” files ==== Open a Command Prompt or Terminal: On Windows, press Win + R, type cmd, and hit Enter. On macOS or Linux, open the Terminal. Navigate to the Directory: Use the cd command to navigate to the directory where your files are located. For example: cd /path/to/your/directory Delete the Files: Run the following command to delete all “._Thumbs.db” files in the directory and its subdirectories: del /s /q ._Thumbs.db /s searches for files in subdirectories. /q suppresses confirmation prompts. If you’re on macOS or Linux, use the rm command instead: find . -type f -name "._Thumbs.db" -exec rm {} \; Confirm Deletion: Verify that the files have been deleted by checking the directory. Remember to replace /path/to/your/directory with the actual path to your file structure. Be cautious when deleting files, especially system files, to avoid unintended consequences.