[Solved] How to get the value from NoteProperty?

I do not have a way to test it right now, but one way to do that might be like this: Get-Mailbox | select EmailAddresses, UserPrincipalName, DisplayName, PrimarySmtpAddress, @{Name=”SIPAddress”;Expression={$PSItem.EmailAddresses -match “sip:”}} solved How to get the value from NoteProperty?

[Solved] GetObject(, “Word.Application”) Office 365

SOLVED ! Search in the registry for correct application name. On windows 7 you can find it in “HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\RegisteredApplicati‌​ons”. Then replace the new name in “Set wrd = GetObject(, “Word.Application”) Thanks to @pavanc It was called Word.Application.16 instead of Word.Application solved GetObject(, “Word.Application”) Office 365

[Solved] How can I create group mail alias using office 365 API in C#

In this case, you can consider using the Microsoft Graph – Create Group First, ensure you have assigned the “Microsoft Graph” > “Read and write all groups” permission to app in Azure AD. Code for your reference: string authority = “https://login.windows.net/yourdomain.onmicrosoft.com”; string clientId = “{client_id}”; Uri redirectUri = new Uri(“http://localhost”); string resourceUrl = “https://graph.microsoft.com”; HttpClient … Read more