Example code is for an older version of Server, newer code is available.
' Copyright (c) 2021 ActivePDF, Inc.
' ActivePDF Server 2009
' Example generated 03/05/21
Dim FSO, strPath, intPSToPDF
' Get current path
Set FSO = CreateObject("Scripting.FileSystemObject")
strPath = FSO.GetFile(Wscript.ScriptFullName).ParentFolder & "\"
Set FSO = Nothing
' Instantiate Object
Set oSVR = CreateObject("APServer.Object")
' The below font options only work with conversions that
' go through the printer or postscript file conversions
' Whether to embed all fonts other than base14 fonts
oSVR.EmbedAllFonts = true
' Whether to embed Base14 fonts
oSVR.EmbedBase14Fonts = false
' Whether embedded fonts should be a subset
oSVR.SubsetFonts = true
' If TrueType fonts should be substituting for the version in the
' x:\windows\fonts folder
oSVR.SubstituteTTFonts = false
' Convert the PostScript file into PDF
intPSToPDF = oSVR.PSToPDF(strPath & "PS.ps", strPath & "metadata.pdf")
If intPSToPDF <> 0 Then
ErrorHandler "PSToPDF", intPSToPDF
End If
' Release Object
Set oSVR = Nothing
' Process Complete
Wscript.Echo("Done!")
' Error Handling
Sub ErrorHandler(method, outputCode)
Wscript.Echo("Error in " & method & ": " & outputCode)
End Sub