Windows DOS Command Shortcuts, which I Never Want to Forget

CmdIf you navigate in windows explorer to a folder and type “CMD” in the address bar then the command prompt will start in that folder.

You can copy the output of a command (like dir /b) directory to the clipboard with the “| Clip” command.

The “wmic” command is the console version of the Windows Management Instrumentation and can give text outputs like listing all programs loaded with their version numbers is: “wmic product get name,version”.

Power shell commands to deal with hidden files created with MacOS on SD cards are the following: ls -Force lists hidden files, Remove-Item ..Spotlight-V100 -Recurse -Force removes spotlight directory and Remove-Item ..fseventsd -Force -Rec removes the File Events directory.