Document Automation Made Simple

Microsoft Publisher end of life: convert .pub files to PDF before October 2026

Microsoft Publisher reaches end of life on October 13, 2026, and Microsoft 365 versions will stop opening .pub files entirely. Learn what the retirement means, which replacement tools to consider, and how to batch convert your Publisher archive to PDF with a single API call.

Tomas, CEO

Microsoft Publisher reaches end of life on October 13, 2026. This is not the usual "no more updates" retirement: if you use Publisher through a Microsoft 365 subscription, the application will stop opening and editing .pub files altogether after that date. Every newsletter, brochure, flyer, and menu saved as a .pub file becomes unreadable on those machines - and no other Microsoft application can open the format.

This guide covers what exactly stops working, which tools can replace Publisher for new documents, and the most practical way to keep your existing files usable: converting them to PDF with the PUB to PDF API - no Publisher installation required.

What is happening to Microsoft Publisher

Microsoft announced that Publisher will no longer be supported after October 2026. What that means depends on how you got Publisher:

Your version After October 13, 2026
Microsoft 365 subscription Publisher stops working - you can no longer open or edit .pub files
Perpetual license (Publisher 2016, 2019, 2021) Keeps running, but receives no security updates or support

There is no successor application. The .pub format is proprietary, Word and PowerPoint do not open it, and Microsoft is not migrating the format anywhere. Microsoft's own recommendation is to convert Publisher files to other formats, PDF first among them, before the deadline.

Your three options before the deadline

  1. Convert your existing .pub files to PDF. PDF preserves the exact layout, opens on every device, and is the format Microsoft recommends for keeping Publisher documents accessible. This is the right move for archives, regardless of what you pick for future documents.
  2. Choose a replacement tool for new designs. See the list below - but note that none of them fully imports legacy .pub files.
  3. Keep a perpetual Publisher install. Works as a stopgap if you own Publisher 2016-2021 outright, but an unsupported, unpatched Office application is not a long-term plan.

Most organizations end up doing 1 and 2 together: convert the archive to PDF now, recreate the handful of documents that still change regularly in a new tool.

Microsoft Publisher replacements for new documents

  • Microsoft Word or PowerPoint - Microsoft's suggested path for simple layouts like flyers and newsletters. Free if you already have Microsoft 365.
  • Affinity Publisher - one-time purchase, professional desktop publishing, the closest like-for-like replacement.
  • Adobe InDesign - the industry standard for print layout, subscription-based.
  • Canva - browser-based and template-driven, the easiest option for non-designers.
  • Scribus - free and open source desktop publishing.

The catch: none of these opens .pub files reliably. Scribus and LibreOffice Draw can partially import some .pub documents, but fonts, text flow, and graphics often shift. For files you need to keep, convert them to PDF while the format is still fully supported end to end.

Convert a .pub file to PDF without Publisher

The PUB to PDF API renders Publisher documents in the cloud, so nothing needs to be installed locally - no Publisher, no Office. One curl command converts a file:

curl -X POST https://v2.convertapi.com/convert/pub/to/pdf \
 -H "Authorization: Bearer api_token" \
 -F "File=@/path/to/newsletter.pub"

The response contains the finished PDF. In our test run, a 240 KB Publisher document came back as a 237 KB PDF in about five seconds, with layout, fonts, and graphics intact.

Useful parameters when you need more control:

  • Password - opens password-protected Publisher files
  • ConvertMetadata - carries the document's title, author, and keywords into the PDF (on by default)
  • EmbedFonts and SubsetFonts - keep the output self-contained while trimming unused glyphs
  • PdfVersion, PdfResolution, ColorSpace - match the PDF flavor your downstream systems expect

For regulated archives, chain the result through the PDF to PDF/A converter to get standards-compliant archival files.

Batch convert an entire Publisher archive

The real problem is rarely one file - it is the folder tree with years of .pub documents. A short script clears it out.

C#

Install the ConvertAPI .NET SDK from NuGet:

dotnet add package ConvertApi
using ConvertApiDotNet;

var convertApi = new ConvertApi("api_token");

foreach (var pubFile in Directory.EnumerateFiles(@"C:\archive", "*.pub", SearchOption.AllDirectories))
{
    var result = await convertApi.ConvertAsync("pub", "pdf",
        new ConvertApiFileParam(pubFile)
    );
    await result.SaveFilesAsync(Path.GetDirectoryName(pubFile));
}

Python

pip install convertapi
import convertapi
from pathlib import Path

convertapi.api_credentials = 'api_token'

for pub_file in Path('/archive').rglob('*.pub'):
    convertapi.convert('pdf', {
        'File': str(pub_file)
    }, from_format = 'pub').save_files(str(pub_file.parent))

Node.js

npm install convertapi
const convertapi = require('convertapi')('api_token');

convertapi.convert('pdf', {
    File: './archive/newsletter.pub'
}, 'pub').then(function(result) {
    return result.saveFiles('./archive');
});

Each converted PDF lands next to its source file, so the archive keeps its structure. PHP, Java, Go, and Ruby SDKs are available on the converter page.

Need images instead of PDFs?

The same engine renders Publisher pages to images - handy for thumbnails, web previews, or embedding a page into another document: PUB to JPG, PUB to PNG, and PUB to TIFF all take the same File and Password parameters plus image resolution and scaling controls.

Frequently asked questions

Can I open a .pub file without Publisher?

Not directly - there is no free viewer from Microsoft, and Word cannot open the format. The practical answer is to convert the file to PDF and open that anywhere. LibreOffice Draw can import some .pub files, but fidelity is hit-and-miss.

Will my installed Publisher stop working on October 13, 2026?

If it came with a Microsoft 365 subscription: yes - Microsoft states you will no longer be able to open or edit .pub files in it. If you bought Publisher 2016, 2019, or 2021 outright, it keeps running but becomes unsupported software with no security updates.

What does Microsoft recommend I do with my .pub files?

Convert them to another format before the deadline. Microsoft's guidance names PDF as the primary target, since it preserves the layout exactly as designed.

Can I convert password-protected Publisher files?

Yes. Pass the document password in the Password parameter and the API will open and convert the file.

Does the conversion need Publisher installed on my machine?

No. Conversion runs entirely in the cloud via a REST API, so it works the same from a Windows server, a Linux container, or a CI pipeline - before and after Publisher's retirement.

Conclusion

Publisher's retirement has a hard edge that most Office retirements do not: for Microsoft 365 users, .pub files stop opening at all. Converting your archive to PDF is a one-afternoon job with a script and costs nothing to start - sign up for a free trial and test the PUB to PDF API in the browser, where the interactive demo generates working code for your language. Do it before October 2026 turns your archive into a folder of files nothing can read.


Related converters

Ready to Streamline Your File Conversions?