As an agent, I’m sure there are many times when you want to access multiple insurance company websites simultaneously. An example that comes to mind is quoting a small commercial policy – you must go to individual carrier websites if you’re not using a comparative quoting platform.
Windows has the capability of running a batch file, which can be used to automate the process of opening multiple websites in your default browser with a single click. Here are the steps:
@echo off
start https://www.website-1.com
start https://www.website-2.com
start https://www.website-3.com
Depending on your specific needs, you can create multiple shortcut files like this.
Yes, this is a bit geeky; however, it’s an example of how automating some simple tasks can save you a little bit of time and frustration that frequently build up during the day.
What other ideas do you have for using this capability? Leave your thoughts in the comments.