Tag: command
How to open Quick Access folder from command line in Windows 10 ?
In Windows 10 , you can use the command userinit to open the Quick access folder in the File explorer. How to open Quick Access folder from command line in Windows 10 ? The Quick Access folder is a kind of favourites that contains the Frequent folders and the recent files that the user has viewed. Example of the usage. D:\>userinit D:\>
How to read file contents from command line in Windows 10 ?
You can use the command “type” in the command line to read the contents of the text file in Windows 10. How to read file contents from command line in Windows 10 ? Lets say , you want to print the contents of the file d:\ac.txt. Below is the command that you will be using. type d:\ac.txt D:\>type ac.txt Welcome to abundantcode.com D:\>