A desktop publishing application from Microsoft that focuses on page layout and graphic design.
The context does not contain any information about the “Export Publisher PUB to PDF” app from DW Apps Australia, so no assessment of that specific Store app can be provided.
However, converting Publisher files to PDF can be done using built-in Publisher features or the official sample PowerShell script, without relying on third‑party Store apps:
- Use Publisher’s built‑in PDF export
- In newer versions of Publisher:
- Select File > Export > Create PDF/XPS Document > Create PDF/XPS.
- Enter a File name.
- For Save as type, select PDF.
- Click Options and choose:
- Minimum Size (online viewing)
- Standard (online + desktop printing)
- High Quality Printing (desktop/copy shop)
- Commercial Press (largest, highest quality)
- Select OK, then Publish.
- In newer versions of Publisher:
- Use the official bulk‑conversion PowerShell script
- Ensure a working, licensed version of Publisher is installed.
- Download the sample script
Convert-PubFileToPDF.ps1from the Microsoft article about Publisher retirement. - Open PowerShell with the required execution policies.
- Run the script against files or folders, for example:
- Single file:
-
Convert-PubFileToPDF.ps1 -Filter "C:\\Documents\\MyFile.pub"
-
- All
.pubfiles in current folder:-
Convert-PubFileToPDF.ps1 -Filter "*.pub"
-
- All
.pubfiles in current folder and subfolders:-
Convert-PubFileToPDF.ps1 -Filter "*.pub" -Recurse
-
- All
.pubfiles in a specific folder:-
Convert-PubFileToPDF.ps1 -Filter "C:\\Documents\\*.pub"
-
- All
.pubfiles in a folder and subfolders:-
Convert-PubFileToPDF.ps1 -Filter "C:\\Documents\\*.pub" -Recurse
-
- Single file:
- The script continues on errors and reports which files converted or failed. If a PDF with the same name already exists, it will not overwrite it and will show an error; rename or delete the existing file and rerun.
- For advanced scenarios, parameters from Document.ExportAsFixedFormat or Document.SaveAs can be adjusted (e.g.,
PbFixedFormatType,PbFixedFormatIntent, orPbFileFormat).
- About PDF/XPS outputs
- PDF and XPS are read‑only formats designed for high‑quality printing, embedding fonts, preserving metadata, and supporting hyperlinks.
- Resulting PDF/XPS files cannot be edited in Publisher.
Using these built‑in and Microsoft‑provided options avoids the need to rely on an unvetted third‑party Store app for Publisher‑to‑PDF conversion.
References:
- Microsoft Publisher will no longer be supported after October 2026
- Save As or convert a publication to .pdf or .xps using Publisher
- Save or convert to PDF or XPS in Office Desktop apps
- Make a brochure using Publisher
- I have thousands of Publisher files; I'm not opening each one individually to convert them. What is this BS about retiring publisher and losing access to all those files? This is 20 years of work that my business is going to lose, we won't recover from th - Microsoft Q&A