Share via

I have some old .pub files which I want to convert to pdf before the MS Publisher expires.

Anonymous
2025-03-07T05:20:40+00:00

I used to use MS Publisher several computers ago. Now that MS Pub is being retired, I want to archive them before they become completely inaccessible. The suggestion from MS is to export these files in pdf format, but I don't have a copy of MS Publisher nor does it seem available.

I have tried a couple of the AI suggested workarounds, but none seems to preserve the formatting and so the output (at least the format) is nonsense.

Where can I get a copy of Publisher to use simply for the conversion process, as it is no longer available as part of Office 365.

Alternatively, is MS going to open up MS publisher (maybe in a restricted form) to allow people to convert their old files before they remove the ability to access them?

Microsoft 365 and Office | Publisher | Other

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

2 answers

Sort by: Most helpful
  1. Anonymous
    2025-03-07T18:26:10+00:00

    I'm going through the same process. I cobbled together the following powershell script using copilot, but it requires the Publisher application to be already installed. Just helps covert the PUB file to PDF in the existing folder structure. I'm sure there are improvements that can be made to the script...

    $publisher = New-Object -ComObject Publisher.Application

    $files = Get-ChildItem "C:\PubFiles" -Recurse -Filter *.pub

    foreach ($file in $files) {

        try{

            $doc = $publisher.Open($file.FullName)

            $pdfPath = [System.IO.Path]::ChangeExtension($file.FullName, ".pdf")

            $doc.ExportAsFixedFormat([Microsoft.Office.Interop.Publisher.PbFixedFormatType]::pbFixedFormatTypePDF, $pdfPath)

            $doc.Close()

            } catch {

                Write-Error "Failed to convert $($file.FullName)"

            }

    }

    $publisher.Quit()

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2025-03-07T07:41:59+00:00

    Hello PeterOsv,

    Welcome to the Microsoft Community.

    If you have a Microsoft 365 subscription, after October 2026, Microsoft Publisher will no longer be available for installation or download. However, you will be able to access and use Publisher normally through your Microsoft 365 subscription until October 2026.

    Also, you may wish to know that if you have a permanent version of Publisher (e.g., Publisher 2021/2019), you will be able to install and use the application even if Publisher support is terminated, and continue to edit Publisher files after that date. The downside, however, is that you may not be able to get application support or updates or use the Internet connectivity features.

    If you only need to convert some files, then purchasing a Publisher copy specifically for this purpose may indeed be unnecessary. If you have a friend or family member who has purchased Microsoft 365 or Office /2016/2019/2021. I recommend that you use someone else's subscription or computer to help you with the conversion of your files. The process is as follows:

    1. Open Publisherfile.
    2. Go to FileSave as.
    3. Choose a location to save the file.
    4. Select PDFas the file type and Save.

    PDF can only be used for viewing, then you can convert it to Word format to continue editing:

    1. Open Word.
    2. Go to FileOpen.
    3. Locate and open the PDF file.
    4. Select OK in the dialog box.
    • From here your document will open as a Word file. **Note:**The converted Word document will be optimized for text editing. As a result, its layout may vary from the original PDF—particularly if the document includes many graphics.

    Alternatively, some community members have mentioned that some non-Microsoft third-party applications can open and edit .pub documents directly. And may have better results than Word. Some of them are open source and free with no additional expenses.

    So I thought it might be worth a look.

    Publisher alternative in 2026 - Microsoft Community

    Image

    I hope this is useful and please feel free to ask any questions.

    Best regards,

    Ian - MSFT | Microsoft Community Support Specialist

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments