DEV Community

Saisanthosh Saikumar
Saisanthosh Saikumar

Posted on

⏰Time saving hack

We Techies, will mostly keep our system either in hibernate or in sleep, which affect system performance, And by the same time we can't resume where we left by end of the yesterday or last closed works. I partially found a solution for this, on which with a single click you can open all your necessary apps in a single click.

Curious on how 🤔 💭....
Follow below

Create a fileName.bat file with following.

@echo off
start notepad++
start code
start C:\Users\SAISANTHOSH\AppData\Local\slack\slack.exe
start "C:\Users\SAISANTHOSH\AppData\Local\Programs\Microsoft VS Code\Code.exe"
start C:\Users\SAISANTHOSH\AppData\Local\GitHubDesktop\GitHubDesktop.exe

Enter fullscreen mode Exit fullscreen mode

By doing this all the above mentioned 5 apps opened at once, In the same you can add multiple applications.

If you're struggling to find the location
goto start -> Find the application (slack) -> right click and select open file location -> select .exe (slack.exe) -> alt + enter -> a model opens copy & paste the Target location in it.

Below screenshot

Image description

Image description

Note: These tools were my priorities on my system, you can modify on your needs.

🔖 Don't forget to bookmark this for future references.
Give me follow on dev.to if you like this blog.

Learn & Grow together🤓🧠
Thanks 🤝🤝🤝!!!

Top comments (1)

Collapse
 
shrihari profile image
Shrihari Mohan

Nice one , hope windows make something similar to shortcuts on mac.