Quickly Find Out The Current Working Directory When Using Windows Command Prompt

For finding/printing the current working directory in Linux, we have pwd command to use. Ever wondered what is the equivalent for Windows command prompt? 1. Open Windows command prompt and type the following : echo %cd% This will print out the current working directory in Windows command prompt. This is by the way more useful when logged in remotely and wanting to check the current directory as compared...

How To Quickly Display A List Of Installed Drivers In Windows

Here is a quick way to collect details of all the drivers installed on Windows system : 1. Open command prompt. 2. Type in :  driverquery > c:\driverdetails.txt What the above command does by default is show a whole list of all installed drivers, by using the redirection >, the output will now be redirected to any file of your choice (driverdetails.txt in this example). (You can use this...