Command to open windows program?

I’m using the system.net.openURL command to go to the site of an IP camera.
The problem that I have is that opens the URL through the default browser… I can only use Internet Explorer for this system.

Is there a system.??? command to open up IE, then go to the URL?

Thanks.

In this instance, you can use subprocess.Popen()

This example opens Dropbox’s website on my Win10 machine:

import subprocess subprocess.Popen(["C:/Program Files/Internet Explorer/iexplore.exe", "http://www.dropbox.com"])
Hope this helps!

Perfect! Thanks a lot!