DEV Community

Hemant Govekar
Hemant Govekar

Posted on • Updated on

Small Utility for Productivity

When you switch on your system/laptop/PC you need to open certain websites and directories on your system.

I usually open following websites

  1. https://canva.com
  2. http://google.com
  3. https://stackoverflow.com/
  4. https://dev.to/

and my programming directory in my laptop.
C:\Hemant\CodeBase\

I have created a batch file which opens this when I click it. This saves me a bit of my time and gets me ready to be productive in a second.

You can add your path and website for your utility.

Process to create the batch file.

  1. Create a Utility.txt file
  2. Add following text in the file.
explorer.exe https://canva.com
explorer.exe http://google.com
explorer.exe https://stackoverflow.com/
explorer.exe https://dev.to/
explorer.exe C:\Hemant\CodeBase\
Enter fullscreen mode Exit fullscreen mode
  1. Rename the file to Utility.bat

That's it!!! your own utility bat file is ready.

N.B. : If you need to make any changes in the file right click the file and open it in notepad or any other text editor of your choice.

My website : https://www.productkhareed.com/small-utility-for-productivity/

Let me know how you use this for your productivity. Keep Liking , keep sharing :-)

Top comments (0)