von MedienDeZign | Mai 8, 2019 | Microsoft
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
von MedienDeZign | Apr. 25, 2019 | Apple
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
von MedienDeZign | Apr. 11, 2019 | Microsoft
Hat man keine Verbindung zum W-Lan und im Ereignisprotokoll eine Event ID mit 5010 und Netwtw04, der Netzwerkadapter hat einen ungültigen Wert beim Treiber zurückgegeben, hilft bisweilen ein
netsh int ip reset
von MedienDeZign | Apr. 6, 2019 | Microsoft
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
von MedienDeZign | Apr. 5, 2019 | GNU/Linux, Hardware
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