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

OS X Mojave Installationsmedium erstellen

USB Stick rein -> löschen und eine BEZEICHNUNG geben -> OS X Update laden, aber nicht installieren -> folgendes als root ausführen

sudo /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/BEZEICHNUNG  --applicationpath /Applications/Install\ macOS\ Mojave.app 

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

Sophos UTM – SMTP / POP3 Proxy startet nicht

Startet der SMTP oder POP3 Proxy auf der Sophos UTM nicht, kann ein Neuaufbau der Postgres Datenbank helfen:

/etc/init.d/postgresql92 rebuild

und dann:

psql -Upostgres -c"reindex database smtp;" smtp 
psql -Upostgres -c"reindex database pop3;" pop3 
psql -Ureporting -c"reindex database reporting;" reporting 
psql -Upostgres -c"vacuum;" smtp 
psql -Upostgres -c"vacuum;" pop3 
psql -Ureporting -c"vacuum;" reporting