FIX FOR WINDOWS BATCH FILE THAT DOES NOT CONTINUE LAUNCHING

September 9, 2016   /   by Marco  / Categories :  Software, Technology, TIP AND TRICKS, Windows
FIX FOR WINDOWS BATCH FILE THAT DOES NOT CONTINUE LAUNCHING

Windows batch files are great for basic automation, especially if you add it to your Windows Startup. However, I just ran into a problem with executing multiple commands in a batch file – they would not continue and just pause until the program is exited.

Here is an example of the original batch file:

@echo off
echo ------------------------------------------------
echo - Launching Link by Business Legions -
echo ------------------------------------------------
timeout /t 10 /nobreak
"C:\website.lnk"
exit

The batch file simply waits for 10 seconds before opening up a shortcut link which points to a particular website. Chrome is used to open up the website.

The additional requirements was to wait for 5 minutes and then close the website and open another.

So I thought the commands would be this:

@echo off
echo ------------------------------------------------
echo - Launching Link by Business Legions -
echo ------------------------------------------------
timeout /t 10 /nobreak
"C:\website.lnk"
timeout /t 600 /nobreak
taskkill /f /im chrome.exe
"C:\website2.lnk"
exit

The problem with the above batch file was it would just get stuck when the website opens up. If you closed the browser then it would continue. After searching around for the best possible solution I figured out that all I needed to use was the following command:

start “” “C:\website.lnk”

It is important to make sure you have “” after start because this refers to the TITLE of the window so if you don’t have this, the link won’t open.

Finally, the working solution with all the commands used in the batch file is below:

@echo off
echo ------------------------------------------------
echo - Launching Link by Business Legions -
echo ------------------------------------------------
timeout /t 10 /nobreak
start "" "C:\website.lnk"
timeout /t 600 /nobreak
taskkill /f /im chrome.exe
start "" "C:\website2.lnk"
exit

 

Business Legions Batch File IssueIf you need any help with this leave me a comment and I’ll try my best to help.

 

DO YOU LIKE WHAT YOU'VE READ?
Join our subscription list and receive our content right in your mailbox. If you like to receive some Great deals our Freebies then subscribe now!

Our Sponsors

  • Follow us:

OTHER ARTICLES YOU MAY LIKE


BUGS IN TIKTOK WEB APP

BUGS IN TIKTOK WEB APP

In this article, I will discuss the bugs I have encountered while using the Tik Tok web app. When using the TikTok web app, I encountered a frustrating issue where I was unable to follow back users. This problem has persisted, leaving me with zero following despite my efforts to engage with the platform. As […]

read more
THE BEST WOOCOMMERCE AFFILIATE AFFILIATE RETAILER PLUGIN FOR MAXIMUM PROFITS

THE BEST WOOCOMMERCE AFFILIATE AFFILIATE RETAILER PLUGIN FOR MAXIMUM PROFITS

In today’s highly competitive e-commerce landscape, leveraging the power of affiliate marketing has become a crucial strategy for online retailers to maximize their profits. And when it comes to running an efficient and lucrative affiliate program on your WooCommerce store, choosing the right plugin is paramount. The best WooCommerce affiliate retailer plugin that stands out […]

read more

Like our Page