Office 365 – Status der mobilen Endgeräte

Zeigt Gerät, Benutzer und Status aller Active Sync Geräte

$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/pow...
Import-PSSession $Session -DisableNameChecking
Get-MobileDevice -ResultSize unlimited | Format-Table -Auto DeviceModel,UserDisplayName,DeviceAccessState > Pfad\MobileDevicesStatus.txt
Remove-PSSession $Session

Exchange 2019 – MoMT exceeded the maximum of 500 objects of type Folder

Man kann per Registry den Wert erhöhen, im folgenden Beispiel auf 3000 (6x Standardwert):

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchangeIS\ParametersSystem\MaxObjsPerMapiSession]
"objtFolder"=dword:00000bb8
"objtFolderView"=dword:00000bb8
"objtMessage"=dword:000005dc
"objtMessageView"=dword:00000bb8
"objtAttachment"=dword:00000bb8
"objtAttachmentView"=dword:00000bb8

Anzahl der Ordner eines Postfachs überprüfen:

Get-MailboxFolderStatistics USER@DOMAIN.DOM | Sort-Object FolderPath -Descending   | ft Name, ItemsInFolder, FolderPath > C:_ORDNERNAMEUSER.csv

Office 365 – Shared Mailbox – Postfach – Sprache – Zeitzone

Stimmt bei einem (freigegebenen) Postfach bei Office 365 die Sprache und Zeitzone nicht kann man sie wie folgt auf der Powershell einstellen.

Überprüfen:

Get-Mailbox | Where-Object {$_.RecipientTypeDetails -eq "SharedMailbox"} | Get-MailboxRegionalConfiguration

Auf deutsch einstellen

Set-MailboxRegionalConfiguration -id USER@DOMAIN.DOM -LocalizeDefaultFolderName:$true -Language de-DE –TimeZone "W. Europe Standard Time"

Office 2019 Standard – Office Deployment Tool

Office Deployment Tool herunterladen und Office2019Standard.xml erstellen

<Configuration>
  <Add OfficeClientEdition="64" Channel="PerpetualVL2019">
    <Product ID="Standard2019Volume" PIDKEY="#####-#####-#####-#####-#####">
      <Language ID="de-de" />
    </Product>
  </Add>
  <!--  <RemoveMSI All="True" /> -->
  <!--  <Display Level="None" AcceptEULA="TRUE" />  -->
  <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->
</Configuration>

Download:

 .\setup /download Office2019Standard.xml

Installation:

.\setup.exe /configure Office2019Standard.xml

Hier findet man das Office Customization Tool von Microsoft zur Erstellung eines xml Files.