' Copyright (c) 2021 ActivePDF, Inc. ' ActivePDF Server 2013 ' Example generated 03/05/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") ' Setup the FTP request supplying credentials if needed oSVR.AddFTPRequest "127.0.0.1", "/folder" oSVR.SetFTPCredentials "user", "pass" ' Set which files will upload with the FTP request ' To attach a binary file use AddFTPBinaryAttachment oSVR.FTPAttachOutput = true oSVR.AddFTPAttachment strPath & "file.txt" ' Convert the PostScript file into PDF Set results = oSVR.ConvertPSToPDF(strPath & "PS.ps", strPath & "ftp.pdf") If results.ServerStatus <> 0 Then ErrorHandler "ConvertPSToPDF", results, results.ServerStatus End If ' Options available to clear or remove FTP requests are only ' needed if the object remains instantiated. oSVR.RemoveFTP "127.0.0.1", "/folder" oSVR.ClearFTPAttachments oSVR.ClearFTPs ' 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