Verify a Script Signature in Windows
You can use any of the VBScript programs below in ActiveXperts Network Monitor. Click here for an explanation about how to include scripts in ActiveXperts Network Monitor.
Verify a Script Signature in Windows using VBScript, WMI and LDAPExample(s)
blnShowGUI = False Set objSigner = WScript.CreateObject("Scripting.Signer") blnIsSigned = objSigner.VerifyFile("C:\Scripts\CreateUser.vbs", blnShowGUI) If blnIsSigned Then WScript.Echo "Script has been signed." Else WScript.Echo " Script has not been signed." End If