Jump to content

Recommended Posts

  • 1 month later...
Posted
Interesting, running that command I get an error:

 

Processing data from remote server failed with the following error message: WS-Management connot process the request. The operation failed because of an HTTP error. The HTTP error (12152) is: The server returned an invalid or unrecognized response . For more information, see the about_Remote_Troubleshooting Help topic.
+ CategoryInfo              :   OperationStopped: (Sytem.Manageme...pressionSyncJob:PSInvokeExpressionSyncJob) [], PSRemotingTransportException
+ FullyQualifiedErrorId   :   JobFailure

 

Any ideas anyone? Could it be that my tenancy hasn't been updated to include the IsReplyAllTheDefaultResponse entry yet?

 

Did you figure out this error? I'm seeing exactly the same message.

Posted
Did you figure out this error? I'm seeing exactly the same message.

 

Unfortunately no, it got kicked right down the priority list on the run up to Christmas. I still haven't been able to rule out it being blocked by Smoothwall (unless you are getting this error without a Smoothwall appliance).

Posted
No we have a Smoothwall appliance here too

 

I have ruled out Smoothwall blocking anything (I think), as I added my computers IP to Guardian> Web Filter> Exceptions> Source exception IP addresses and changed my port accordingly. I confirmed that I was bypassing the filter but the Powershell command still returned the same error. I am going to log a case with MS as @sonofsanta suggested it was IIS related, I suggest you do the same.

Posted

Something is timing out somewhere as I was able to do it to a single mailbox using

 

Get-Mailbox -Identity "username@domain" | Set-MailboxMessageConfiguration -IsReplyAllTheDefaultResponse $false

 

Not a great solution I know but beats going around every teacher and non-teaching staff member as requested by my highly IT literate and understanding Business Manager (tone of sarcasm extremely high!)

  • 5 months later...
Posted

What an idiotic user interface feature! Nearly as bad as the clutter feature they introduced and turned on by default.

 

Thanks for the powershell command!

  • 1 year later...
Posted

I have tried following the instructions listed above and it doesnt work as the msonline PS module no longer works. I have found a way round it which i will detail below in case anyone else is trying to do it!

 

Install this https://www.microsoft.com/en-us/download/details.aspx?id=41950

 

Then do the below code

 

set-executionpolicy unrestricted

$cred =get-credential

$session = new-pssession - configurationname Microsoft.Exchange -connectionuri https://ps.outlook.com/powershell -credential $cred -authentication basic -allowredirection

import-pssession $session

install-module -name azuread
install-module -name office365connect

 

You can then use the below commands for individual accounts or everyone as previously mentioned above.

 


Get-Mailbox -Identity "username@domain" | Set-MailboxMessageConfiguration -IsReplyAllTheDefaultResponse $false

Get-Mailbox -ResultSize unlimited | Set-MailboxMessageConfiguration -IsReplyAllTheDefaultResponse $false

 

I did find a nice front end that someone had made that exports all the current staff and shows whether it is turned on or not and exports it is a html file.

 

I found it here , if you scroll down halfway there is a big orange download button. If you run that after the first bit of code above you can then ignore option 0 on the menu and just look at the other 5 options.

 

PS-O365.PNG

 

I tested with one user before i tried everyone and would recommend that you do as well, i did a test with the code and also with option 1 from the above. This should hopefully stop it breaking anything!

 

Hopefully this will help someone else!!

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...