Found groups that a 365 contacts is member of
If you need to found out whitch groups (mailling groups) a contact is member of in Microsoft 365, then you case use these powershell commands: Replace [email protected] with yours mail address.
Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
If you need to found out whitch groups (mailling groups) a contact is member of in Microsoft 365, then you case use these powershell commands: Replace [email protected] with yours mail address.
If you ever have installed a new Exchange server in an Active Directory orgainisation that allready have an Exchange server (That’s not so often anymore), you may have discovered that users get Certificate warning...
Microsoft have public this article: https://support.microsoft.com/da-dk/help/4464186/microsoft-intune-exchange-connector-version-not-supported, that tell you to just download a new version from Microsoft Intune Admin portal. But this warning messages could also happen if you allready have a connector installed...
On a linux box type these two commands The command will return with the username and password in base64 format.Example: So now you need to telnet with OpenSSL to the mailserver: After you have...
If you want to change Mapi, Autodiscover / EWS / OAB / OWA / ECP / Activesync Url, this is how it works Example you have bought a certificate on you external name, and...
Here are a script, that you can include in yours script, to add Exchange management shell, to “normal” powershell scripts.
Today i have a problem that an exchange will not send mails though TLS, no matter what i do. I find out that, somehow this exchange servers where creating new send connector, with forcehelo...
For en liste over alle mail adresse
1 |
Get-recipient -resultsize unlimited | select name -expand emailaddresses | select name,smtpaddress |
For en liste over alle mail adresse på et given domæne
1 |
Get-Recipient | Where{$_.EmailAddresses -match "it-grp.dk"} | select name -expand emailaddresses | select name,smtpaddress | where {$_ -match "kennethdalbjerg.dk"} |
Sidste kommentar