Category: Office 365
Hi, Okay, it isn’t so easy, but the following help you to the right track. If you don’t have a separate service-account for Local AD connection, then you can use this: dsquery user -name MSOL_AD_sync If you have a service-account,…
Note for my self and others 😉 https://technet.microsoft.com/en-us/library/jj898489%28v=exchg.150%29.aspx
Connect to Exchange Online with powershell $session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri “https://ps.outlook.com/powershell/” -Credential $cred -Authentication Basic -AllowRedirection Import-PSSession $session To change: get-mailbox|where {$_.recipientTypeDetails -eq “roomMailbox”} | Set-CalendarProcessing -BookingWindowInDays 365 To check the windows: get-mailbox|where {$_.recipientTypeDetails -eq “roomMailbox”} | Get-CalendarProcessing…
This one is easy. Well hard to find, but easy. When connecting to Exchange with powershell (Onprem or Office365) get-calendarprocessing mailboxname | fl You will get the following listing: And ProcessExternalMeetingMessages with be set to False Just type set-calendarprocessing mailboxname…
So you have generated users in your ad that you want to move to Office 365. Before you dirsync the user to the Cloud you can change mail-attribute. But after the user in synced to Office365 you cannot do this…
Hi again, Today I got in the middle of a problem. CRM client told me: But at the same time Web interface was working correctly. After some investigation i found that CRM for Outlook version have been updated to…
Does this look familiar to You? If so you are not alone and the fix is. Delete Relaying Party Trust for Office 365: And then update federation data with this.
1 |
Update-MSOLFederatedDomain -DomainName <Federated Domain Name> |
or
1 |
Update-MSOLFederatedDomain –DomainName:<Federated Domain Name> –supportmultipledomains |
http://support.microsoft.com/kb/2647048 And it works also with ADFS…
Get-ADUser -Filter {UserPrincipalName -like “*@domain.local”} -SearchBase “OU=whateverisright,DC=contoso,DC=com” | ForEach-Object { $UPN = $_.UserPrincipalName.Replace(“domain.local”,”newdomain.local”) Set-ADUser $_ -UserPrincipalName $UPN } Easy as opening a banana, right? https://www.youtube.com/watch?v=nBJV56WUDng 🙂
If you have many users synced to Office 365. It will be more efficient to user powershell to license them. This is how: connect-msolservice and enter crendentials. Get-MsolAccountSku will display the license types. And then: $AccountSkuId = “tenantname:STANDARDWOFFPACK_STUDENT” $UsageLocation =…
Source: http://lyncuc.blogspot.fi/2013/01/lync-and-exchange-web-services-ews-and.html there is always confusion in how Lync is crawling Exchange Web Services (EWS). Generally it is necessary to understand how DNS must be implemented: Just remember, identify if you have DNS Split configuration, different internal and external DNS…