99xenon99 Posted December 14, 2015 Posted December 14, 2015 Cheers, I have tried that already. It seems that it is only valid for Exchange.
simonmerry Posted January 27, 2016 Posted January 27, 2016 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.
foofighterjim Posted January 27, 2016 Posted January 27, 2016 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).
simonmerry Posted January 27, 2016 Posted January 27, 2016 No we have a Smoothwall appliance here too
foofighterjim Posted January 27, 2016 Posted January 27, 2016 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.
simonmerry Posted January 27, 2016 Posted January 27, 2016 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!)
zag Posted July 8, 2016 Posted July 8, 2016 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!
DSapseid Posted November 30, 2017 Posted November 30, 2017 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. 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!! 1
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now