' Copyright (c) 2021 ActivePDF, Inc. ' ActivePDF Server 2013 ' Example generated 03/08/21 Dim FSO, strPath, results ' Get current path Set FSO = CreateObject("Scripting.FileSystemObject") strPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder & "\" Set FSO = Nothing ' Instantiate Object Set oSVR = CreateObject("APServer.Object") ' ActivePDF Service runs under the 'Local System' account, as such it will only see ' certificates located in HKEY_LOCAL_MACHINE. To use certificates located under ' a specific user set the impersonate user options in the GUI or API oSVR.InvisiblySignFile "localhost", "My", true, "Mission Viejo, CA", "Approval", "949-555-1212", 1 ' Convert the PostScript file into PDF Set results = oSVR.ConvertPSToPDF(strPath & "PS.ps", strPath & "Signed.pdf") If results.ServerStatus <> 0 Then ErrorHandler "ConvertPSToPDF", results, results.ServerStatus End If ' Release Object Set oSVR = Nothing ' Process Complete Wscript.Echo("Done!") ' Error Handling Sub ErrorHandler(method, oResult, errorStatus) Wscript.Echo("Error with " & method & ": " & vbcrlf _ & errorStatus & vbcrlf _ & oResult.details) Wscript.Quit 1 End Sub