Jump to content

open a URL without a browser


Recommended Posts

I feel like this should be a simple thing to do, but it is escaping me at the moment.

I want to be able to send this...

$UpdateString = "start http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))"
Run(@ComSpec & " /c " & $UpdateString,"", @SW_HIDE)

without opening a browser window.

Link to comment
Share on other sites

I want to be able to send this...

$UpdateString = "start http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))"
Run(@ComSpec & " /c " & $UpdateString,"", @SW_HIDE)

without opening a browser window.

Try it using _IECreate:

_IECreate ("http://" & $Array[$i] & "/xbmcCmds/xbmcHttp?command=ExecBuiltIn(CleanLibrary(video))",0,0)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...