Adjust the appearance and performance of windows –> Turn off “animate controlls and elements inside windows”
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 |
Action | Shortcut |
---|---|
Create new folder | Ctrl Shift n |
Copy file path | Ctrl Shift c |
Action | Shortcut |
---|---|
GoTo | Ctrl p |
Explorer | f10 |
Switch side | Tab |
Command Palette | Ctrl Shift p |
K-Lite | For all common audio and video file formats |
Novation Components | Novation Components |
Wacom | Wacom |
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!
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.