Jump to content

Recommended Posts

Posted

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.

Posted

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)

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
×
×
  • Create New...