Morning,
When running a VBScript that simply does the below:
set conn = CreateObject("ADODB.Connection")
conn.open "DSN=MyDSN"
conn.close
set conn = nothing
Msgbox "done"
It takes 5 seconds to close WScript.exe from task manager (that is after I have selected ok to the msgbox)
Is this typical WScript behavouir or is there a fix for this?
Thank you!
Dan