In the following lines I will explain you the fastest way to open a new Windows application from a desktop shortcut: using some of the Windows key shortcuts you won't waste time minimizing and maximizing windows one by one.
The Windows keyboard shortcut "Windows + D" will minimize all of your
On the other hand, there are a couple of Windows keyboard shortcuts that will allow you toview all your desktop shortcuts, open a new Windows application, and then restore the size and position of all your previously open windows.
The minimize keyboard shortcut "Windows + M" doesn't work like a window visibility toggle: you won't be able to restore the position of your windows by clicking "Windows + M" again. But the advantage of using this shortcut is that you can restore the size and position of your windows by pressing the Windows maximize keyboard shortcut "Windows + Shift + M".
So the typical scenario to quickly open a new Windows application using shortcut keys is as follows:
- Press first the "Windows Key + M" shortcut to minimize all your open Windows.
- Any shortcut icon on your desktop will be visible now. Click any shortcut to open a new window.
- Finally, restore the visibility of your previous windows maximizing them again, thanks to the "Windows Key + Shift + M" shortcut.
By default, this creates a file with an icon like this icon, depending on your own system icon configuration set.
Now, whenever we want to close every Windows process specified in the file, we only need to double click that file, and it will perform the automatic process killing for us.
Running a .BAT file is like running the Windows command prompt code to close all the processes, but these batch files perform all the necessary actions automatically, in no time.
We can also check a complete and detailed list of the values and parameters that we could add after "TASKKILL" just clicking in Start / Run (Windows + R), typing cmd (to run the Windows command prompt), and typing at this window: TASKKILL/?.
Running processes with .BAT
If we want to reopen every Windows process previously killed with our .BAT file, with no need to reboot Windows, we can automatically perform the reverse operation, creating another .BAT(same process as before) this way:
START "Name" "C:\...path.exe" START "Name" "C:\...path.exe" START "Name" "C:\...path.exe"
To specify the full path of the target program we can only use ASCII text, with no accents or other special characters.
Example:
START "Paint" "C:\WINDOWS\System32\mspaint.exe" START "Notepad" "C:\WINDOWS\notepad.exe" START "Calculadora" "C:\WINDOWS\System32\calc.exe"
NOTE: This trick to run or kill Windows process also works to create a .BAT file to automatically open our most used apps (using the "START" Windows command), and another .BAT to kill these programs (the TASKKILL command file).
No comments:
Post a Comment