1 Open your favorite text editor. In our case we are going to use Notepad++
2 Copy the VBScript code from below.
3 Paste the code in the newly created file.
4 Save the file with a ".vbs" extension.
5 Run the script file by double-clicking on it or via the CMD console.
6 That's it!
Advertisement
Code
' This script creates a blank MS Publisher publication.
Sub createBlankPublisherPublication()
' Set variables
Dim appPublisher
' Create new publisher application object
Set appPublisher = Wscript.CreateObject("Publisher.Application")
' Add a new publication
appPublisher.Documents.Add
' Release the publisher application object
Set appPublisher = Nothing
End Sub
' Run the procedure
Call createBlankPublisherPublication()