Hi,
I wrote some vbscript last spring that queries the wsus 2.0 database
using sqloledb
and generates some csv files.
I'm not sure how to connect to the windows internal database for wsus
3.0 from vbscript using the SQLOLEDB provider. I think windows
internal db is really sql 2005 express embedded edition.
Here's some code that used to work, any advice on what would work for
connecting to sql 2005 express embedded edition?
Set objConnection = CreateObject("ADODB.Connection")
objConnection.ConnectionTimeout = 25
objConnection.Provider = "SQLOLEDB"
objConnection.Properties("Data Source").Value = strComputerName &
"\WSUS"
objConnection.Properties("Integrated Security").Value = "SSPI"
thanks,
Bruce