It feels like most answers on this site come from robots or from moderators who barely know anything. I still have to see a good, on point, answer there from someone who really knows things.
I have, but they never come from Microsoft employees. Story time:
Let's say you administer an Exchange server and need to make a configuration change to a mailbox. Normally, the Information Store will cache mailbox state for up to 20 minutes and you'll have to wait for your change to take effect. But let's say you really really need that change to happen right fucking now, then what?
Well, Microsoft support has your back: restart the Information Store service. While effective, this will also boot everyone's MAPI connections from the server and consequently pop up a giant scary warning dialog to all your Outlook users. Good job there guys.
Fortunately, there are knowledgeable wizards casually dropping in to these support threads every once in a while who can give you a real solution. In this case, it's running `Update-StoreMailboxState -Database <dbname> -Identity <mailbox GUID>`. Yeah, Microsoft actually made a fucking powershell commandlet that does exactly the thing you need, but support has no idea it exists and just throws up their hands and tells you to interrupt the workflow of the entire organization and generate a bunch of calls to the help desk.
If I ever meet the person who posted that answer, I owe them a few beers.
AnIdiotOnTheNet|6 years ago
Let's say you administer an Exchange server and need to make a configuration change to a mailbox. Normally, the Information Store will cache mailbox state for up to 20 minutes and you'll have to wait for your change to take effect. But let's say you really really need that change to happen right fucking now, then what?
Well, Microsoft support has your back: restart the Information Store service. While effective, this will also boot everyone's MAPI connections from the server and consequently pop up a giant scary warning dialog to all your Outlook users. Good job there guys.
Fortunately, there are knowledgeable wizards casually dropping in to these support threads every once in a while who can give you a real solution. In this case, it's running `Update-StoreMailboxState -Database <dbname> -Identity <mailbox GUID>`. Yeah, Microsoft actually made a fucking powershell commandlet that does exactly the thing you need, but support has no idea it exists and just throws up their hands and tells you to interrupt the workflow of the entire organization and generate a bunch of calls to the help desk.
If I ever meet the person who posted that answer, I owe them a few beers.
DanBC|6 years ago