• Thanks for this article. I have doubt after the line "OK, I understand, let's move on." -- where need to use the below code? It is not in CPUpct.vbs.

    Sub RaiseError (msg, sev)

    Set objShell = CreateObject("WScript.Shell")

    query = "raiserror(" + "'" + msg + "'" + "," + sev + "," + "1) with log"

    progStr = "sqlcmd -E -q " + """" + query + """"

    objShell.exec(progStr)

    End Sub

    Q2: Can I use this windows 2008 R2 ( I see this is written for 32 bit - it will work for 64 bit also)

    Thanks