Microsoft Store or you can say that Windows 10 store is the official market for downloading apps, games, music, movies, TV shows and books. But what if Microsoft Store stops working or disappears from Windows 10? Several users report: “The Microsoft Store application no longer exists, but other applications are still there, especially after the recent Windows 10 1903 update” Microsoft Store icon is missing “. And the main cause of this problem seems to be that the Windows Store files get corrupted in some way.
Main Windows command prompt tricks
Create a folder with or not delectable with CMD
In Windows you cannot create a folder named with or you cannot rename a folder to with . This is because it is a variable name used by Windows programming.
Another variable name includes lp1, lpt2, lpt3 until lpt9, aux . Therefore, Windows cannot allow you to make a folder with this name.
But with the help of the two command we can create a folder with that name.
Create folder WITH
Press the Windows button and run CMD as administrator.
Now type Command
C:> md. D: with
Here D is the location of your drive and con is the name of your folder
To delete with folder
You cannot delete this folder manually using Windows. To delete this folder, type the following command at the command prompt.
C:> rd .D: with Hide / Show a folder with the CMD command
We can play some cool tricks with the command prompt. Hiding a folder is one of them. By hiding a folder, you can also save your data from other users.
You can do it by typing the following command: attrib + s + h D: Srikant
Where D is my drive letter and srikant is the name of the directory we want to hide.
To show the folder
If we can also show the hidden folder using the command prompt. To display the folder, type the following command: attrib -s -h D: Srikant
Open command prompt from current folder
When you open the command prompt, it opens to the User or System folder, depending on whether you ran it as an administrator or not.
Now the thing is, if you want to run a file in a particular folder, you would have to use the change directory (cd) command to navigate to the folder, which can be a problem if the directory is nested too deep. To make things easier, you can open the folder in your Windows Explorer, hold down the Shift key when you right-click the folder and select Run Windows of command here to directly open the CMD prompt with the path to that folder directly.
Shut down the computer with commands
You can also shut down your computer using the command prompt. Type the following command at the command prompt.
To turn off off -s (parameter S tells the computer to shut down)
To restart shutdown -r (the R parameter tells the computer to restart Windows)
And the command to to close session -l (the L parameter tells the computer to log out of Windows)
Shut down the computer at a specific time with CMD
You can also shut down your computer at a specific time using the command prompt. If you want to shut down your computer after 10 minutes, type the following
command.
off -s -t 600
Save a command to a file
If you want to save the results of a command in a .txt for future reference. So it’s pretty easy that you need to run this after the command> (destination / filename with extension .txt) ยป
for instance ipconfig / all> D / srikant.txt
This will create a text file on drive D called srikant.txt
Check the IP address of any website
You can see the IP address of any website by simply entering the command “nslookup” along with the name of the website.>
For example, you can type “nslookupwindows101tricks.com” to find your IP address.
Run command prompt as administrator
Many commands require that you run the command prompt as an administrator. When you search for CMD in the Start menu, apart from selecting Run as administrator from the context menu, you can simply press Ctrl + Shift + Enter to open it with administrator privileges. This trick will work for all programs installed on your system.
Get help for any valid command
This is especially useful for beginners, as you know a command, but are not sure how it works. Not a problem, you can easily get information about almost all the commands you provide at the command prompt. The information includes full details of what a command is.
To get the help, just type “/?” at the end of the command and run it. If the command is valid, the command prompt will give you all the information related to it.
Use function keys in command prompt to get different results
1. F1: paste the last command used by character
2. F2: paste the last used command only to a specified command character
3. F3: paste the last command used
4. F4: Delete command only to a specified command character
5. F5: paste the last command used without cycling
6. F6: Pasta ^ Z
7. F7: provides a list of commands already used (selectable)
8. F: 8 Paste used cyclable commands
9. F9: will allow you to paste commands from the list of recently used commands
Check the list of installed drivers
Scribe driverquery command to see the list of installed drivers Execute commands simultaneously
You can put && between two commands and run them one after the other. The command to the left will be executed first, followed by the command to the right of the double ampersand.
for example you can type “ipconfig && dir” to run both commands one after the other
Create a Wi-Fi access point using command prompt
At the command prompt, enter the following command to enable the Wi-Fi access point.
“Netsh wlan set hosted network mode = allow ssid = access point name key = password”
Once enabled, you can start the Wi-Fi access point by entering the command “netsh wlan start Hostednetwork” or stop it by entering the command “netsh wlan stop Hostednetwork”. You will also need to share your Internet connection to this access point for everyone to use. Go to the “Network and Sharing” option from the “Control Panel” and then click “Change adapter settings” on the left panel.
Here, right click on the Internet connection you are using and click on “Properties”. In the properties, go to the Sharing tab and check the “Allow other network users to connect through this computer’s Internet connection” option to share your Internet connection.
Assoc CMD Command
There are many programs installed on our computer. Each program has its own file extension. It’s hard to remember every file extension. If you want to know which file is associated with which program, then we can do so by typing the following command: Assoc>
This command provides you with a list of programs and their associated files.
View command history
You can see the last commands used in a session using the navigation buttons, but if you want to see a list of all the commands, you can get them by pressing the F7 button.
Alternatively, you can use the command doskey / history to list these commands at the command prompt.
Here are some of the best Windows command prompt commands that make Windows easier. Windows command prompt tutorial will definitely help you understand command prompt in a better way.