this post was submitted on 19 Oct 2025
268 points (100.0% liked)

196

4657 readers
1753 users here now

Community Rules

You must post before you leave

Be nice. Assume others have good intent (within reason).

Block or ignore posts, comments, and users that irritate you in some way rather than engaging. Report if they are actually breaking community rules.

Use content warnings and/or mark as NSFW when appropriate. Most posts with content warnings likely need to be marked NSFW.

Most 196 posts are memes, shitposts, cute images, or even just recent things that happened, etc. There is no real theme, but try to avoid posts that are very inflammatory, offensive, very low quality, or very "off topic".

Bigotry is not allowed, this includes (but is not limited to): Homophobia, Transphobia, Racism, Sexism, Abelism, Classism, or discrimination based on things like Ethnicity, Nationality, Language, or Religion.

Avoid shilling for corporations, posting advertisements, or promoting exploitation of workers.

Proselytization, support, or defense of authoritarianism is not welcome. This includes but is not limited to: imperialism, nationalism, genocide denial, ethnic or racial supremacy, fascism, Nazism, Marxism-Leninism, Maoism, etc.

Avoid AI generated content.

Avoid misinformation.

Avoid incomprehensible posts.

No threats or personal attacks.

No spam.

Moderator Guidelines

Moderator Guidelines

  • Don’t be mean to users. Be gentle or neutral.
  • Most moderator actions which have a modlog message should include your username.
  • When in doubt about whether or not a user is problematic, send them a DM.
  • Don’t waste time debating/arguing with problematic users.
  • Assume the best, but don’t tolerate sealioning/just asking questions/concern trolling.
  • Ask another mod to take over cases you struggle with, if you get tired, or when things get personal.
  • Ask the other mods for advice when things get complicated.
  • Share everything you do in the mod matrix, both so several mods aren't unknowingly handling the same issues, but also so you can receive feedback on what you intend to do.
  • Don't rush mod actions. If a case doesn't need to be handled right away, consider taking a short break before getting to it. This is to say, cool down and make room for feedback.
  • Don’t perform too much moderation in the comments, except if you want a verdict to be public or to ask people to dial a convo down/stop. Single comment warnings are okay.
  • Send users concise DMs about verdicts about them, such as bans etc, except in cases where it is clear we don’t want them at all, such as obvious transphobes. No need to notify someone they haven’t been banned of course.
  • Explain to a user why their behavior is problematic and how it is distressing others rather than engage with whatever they are saying. Ask them to avoid this in the future and send them packing if they do not comply.
  • First warn users, then temp ban them, then finally perma ban them when they break the rules or act inappropriately. Skip steps if necessary.
  • Use neutral statements like “this statement can be considered transphobic” rather than “you are being transphobic”.
  • No large decisions or actions without community input (polls or meta posts f.ex.).
  • Large internal decisions (such as ousting a mod) might require a vote, needing more than 50% of the votes to pass. Also consider asking the community for feedback.
  • Remember you are a voluntary moderator. You don’t get paid. Take a break when you need one. Perhaps ask another moderator to step in if necessary.

founded 9 months ago
MODERATORS
 

Imagine if you paid for a piece of software and the people who made it decided they're just going to remotely uninstall it.

top 25 comments
sorted by: hot top controversial new old
[–] wolfeh@lemmy.blahaj.zone 2 points 18 hours ago

If I really ever need to use Publisher (rather than Scribus or Inkscape), I'll bust out my paid-for copy of Microsoft Publisher 98. Now if only I could find an optical drive...

[–] NKBTN@feddit.uk 73 points 3 days ago (2 children)

I can understand no further updates and no more support, but let us keep the latest version FFS! I have a stock of custom made TTRPG character sheets I'd like to keep and be able to edit.

BTW, they've released a powershell script for converting pubs to pdfs, but I'm an idiot and can't work out how to use it. If anyone can write out a step by step guide, I'd hugely appreciate it

[–] tiramichu@sh.itjust.works 24 points 2 days ago* (last edited 2 days ago) (1 children)

If you own the perpetual version of Publisher you can still install and run it after that date :)

If you have the cloud subscription version, you're sadly out of luck.

I can see why MS did this, because for the subscription version, if they allow you to keep accessing the final version under subscription license it means they also have to continue to security patch that version like the rest of the suite, because they are still responsible for it.

Legally, it's a very different paradigm from software that you sell one-time as an installer, and then have no further responsibility for.

And that is not a defense of Microsoft - rather, it's a criticism of the intrinsic reality of cloud software.

The only commercial software that will never betray the user is software that comes with an offline installer, and a perpetual license (and even then, only if it doesn't need the Internet to activate. Looking at you, Adobe...)

[–] isVeryLoud@lemmy.ca 11 points 2 days ago

They could totally just send everyone with a Publisher subscription perpetual licence keys.

[–] Cevilia@lemmy.blahaj.zone 19 points 3 days ago (1 children)

You shouldn't need to use Powershell if you still have Publisher: https://support.microsoft.com/en-gb/office/save-as-or-convert-a-publication-to-pdf-or-xps-using-publisher-657332d0-d2c2-464a-9870-e9b3d22e6469

Basically you just open it, then click Export where you'd normally click Save, and save it as a PDF.

There are converters online too IIRC

[–] NKBTN@feddit.uk 4 points 2 days ago (1 children)

I know how to do that, but doing them all would take... ok, probably a little over and hour. So not THAT long, but I'd much prefer to leave a script running

[–] KyuubiNoKitsune@lemmy.blahaj.zone 2 points 2 days ago* (last edited 2 days ago) (1 children)

I haven't seen an official script, but found one on the MS learn site that should work.

https://learn.microsoft.com/en-us/answers/questions/5399481/i-have-some-old-pub-files-which-i-want-to-convert

You need to have publisher installed.

Copy all your PUB files into a folder.

Press Start and type in powershell, and open powershell.

Copy the code below into notepad and replace C:\PubFiles with the path to your folder, then copy the script and paste it into the powershell window by right clicking on the window (it pastes when you right click).

(You might need to press enter after pasting it)

$PubFilePath = "C:\PubFiles"

$publisher = New-Object -ComObject Publisher.Application

$files = Get-ChildItem $PubFilePath -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()
[–] rtxn@lemmy.world 0 points 2 days ago (1 children)

Handling a running application like it's just some object in the memory feels so deeply cursed for some reason.

I kinda like it

[–] BeigeAgenda@lemmy.ca 62 points 3 days ago (2 children)

I can see one upside: pub files will eventually mean public keys.

And by uninstalling Publisher, they force people to pirate or install Scribus.

[–] SnotFlickerman@lemmy.blahaj.zone 35 points 3 days ago* (last edited 3 days ago) (2 children)

to pirate or install Scribus.

Took me a few times of re-reading this before I realized you didn't mean "to pirate ... Scribus" and I kept thinking "why would you need to pirate Scribus??"

[–] BeigeAgenda@lemmy.ca 27 points 3 days ago (1 children)

The FitGirl version of Scribus just runs better...

[–] Dojan@pawb.social 12 points 3 days ago

That’s why they’re repacked. Some of that FitGirl energy is included for some extra performance zoopies.

[–] Feathercrown@lemmy.world 5 points 2 days ago

For the thrill of the heist?

[–] Cevilia@lemmy.blahaj.zone 10 points 3 days ago

I'm always in favour of a fit girl.

[–] TomMasz@piefed.social 41 points 3 days ago (1 children)

Unintentional promotion of open-source.

[–] Cevilia@lemmy.blahaj.zone 43 points 3 days ago (1 children)

Not-especially-hot take: Everything Microsoft's been doing for roughly the last 18 months or so has been promoting open source. I've been a Windows user since Me, and I was happy with Windows 11. I jumped ship to Linux in April last year when I saw which way the wind was blowing.

[–] vzqq@lemmy.blahaj.zone 13 points 2 days ago

s/18 months/43 years/

[–] regdog@lemmy.world 15 points 2 days ago

Breaking News: Publisher about to become unpublished

[–] pineapplelover@lemmy.dbzer0.com 5 points 2 days ago (1 children)

Honestly, I have never used Publisher and not sure what it even does

For making, like, posters and stuff.

Most of the functionality is duplicated in powerpoint.

[–] Psythik@lemmy.world 8 points 2 days ago

Publisher still exists!?

[–] sem@lemmy.blahaj.zone 10 points 3 days ago
[–] FalschgeldFurkan@lemmy.world 1 points 2 days ago (1 children)

I thought this was about an actual publisher for a second

[–] Agent641@lemmy.world 2 points 2 days ago

John Microsoft, the publisher of Windows, has reached retirement age. He will close his laptop and every copy of windows worldwide will just delete itself.