I have the following script that I would love to run directly from KiXtart

Is it possible ?

' Auto-Logout script for Windows.

BSPHostName="172.16.50.1"

Set objHTTP = CreateObject("MSXML2.ServerXMLHTTP")
objHTTP.setOption 2, 13056

objHTTP.open "POST", "https://"+BSPHostName+"/portal/logout", False
objHTTP.setRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.send "purl=&submit=Logout"

Set objHTTP = Nothing