Comments
-
Hi grahampriley, The error 'Bad input parameter. The supplied Category is invalid' most likely represents missing performance counter. The other error code 0xc000BC6 means invalid data. I'm not sure about this one, it can represent missing counter as well. First of all, I recommend to use perfom.exe and check if the…
-
The easiest workaround is using ODBC User Experience Monitor. Just edit the monitor and modify the default Connection String to Driver={SQL Server};Server=${IP},1433;DataBase={Northwind};Uid=${USER};Pwd=${PASSWORD}; Replace 1433 with your actual SQL Server port number.
-
Hi, it seems that following line in the script is wrong: strSearch = Wscript.Arguments.Named("error") 'Get search string form argument and should be strSearch = Wscript.Arguments.Named("search") 'Get search string form argument Use space as separator in Script Arguments. HTH,