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
von MedienDeZign | Apr. 4, 2019 | Microsoft
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"