Hi All, As anounced the Microsoft common attachment filter has been updated with 53 default File Extensions and 219 File Extensions that can be selected. That's a huge improvement to what was available end of last Year.
Exchange Online Protection Common Attachment Filter Update
https://blog.icewolf.ch/archive/2021/11/12/exchange-online-protection-common-attachment-filter-update.aspx
Anti-malware protection in EOP
https://docs.microsoft.com/en-us/microsoft-365/security/office-365-security/anti-malware-protection?view=o365-worldwide#anti-malware-policies I want to remind you - it's your responsability to define the Policy. Be aware that blocking *.bin Files can cause unintended affects
Hi All, A few hours ago, Microsoft has released a new version of the Microsoft.Online.SharePoint.PowerShell Module.
Microsoft.Online.SharePoint.PowerShell 16.0.22810.12000
https://www.powershellgallery.com/packages/Microsoft.Online.SharePoint.PowerShell/16.0.22810.12000
Check the installed Version and what is available on PowerShell Gallery Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Find-Module Microsoft.Online.SharePoint.PowerShell
Uninstall the old PowerShell Module and install the new one Uninstall-Module Microsoft.Online.SharePoint.PowerShell
Install-Module Microsoft.Online.SharePoint.PowerShell
Get-InstalledModule Microsoft.Online.SharePoint.PowerShell
Connect to Sharepoint Online Connect-SPOService -Url https://icewolfch-admin.sharepoint.com
List the SharePoint Online tenant settings Get-SPOTenant | fl
Regards Andres Bohren
Hi All, Switch the Swiss Registrar for .ch and .li Domains has published the Domains on a Open Data Policy. You can download the top 1'000 Domains or use a Zone Transfer
Switch Open Data
https://www.switch.ch/open-data/#tab-c5442a19-67cf-11e8-9cf6-5254009dc73c-3
You need to create the TSIG Key
# filename ch_zonedata.keykey tsig-zonedata-ch-public-21-01 { algorithm hmac-sha512; secret "stZwEGApYumtXkh73qMLPqfbIDozWKZLkqRvcjKSpRnsor6A6MxixRL6C2HeSVBQNfMW4wer+qjS0ZSfiWiJ3Q=="; }; then use dig to initiate the Zone Transfer dig -k ch_zonedata.key @zonedata.switch.ch +noall +answer +noidnout +onesoa AXFR ch.
Hi All, On beginning of August, Microsoft had released AAD Connect 2.1.16.0. I was exited, because that is the first 2.x version that did support "auto-upgrade"
Azure AD Connect: Version release history
https://docs.microsoft.com/en-us/azure/active-directory/hybrid/reference-connect-version-history Microsoft Azure Active Directory Connect Download
https://www.microsoft.com/en-us/download/details.aspx?id=47594
I've checked the Version of AAD Connect on the Server with Powershell
Import-Module ADSync
(Get-Item "C:\Program Files\Microsoft Azure AD Sync\Bin\miiserver.exe").VersionInfo Set-ADSyncAutoUpgrade -AutoUpgradeState Enabled Get-ADSyncAutoUpgrade
After a while i've realized that the AutoUpgrade was reseted to suspended.
Hi All, On beginning of August, Microsoft has announced the Microsoft Outlook Lite Version on Android.
Microsoft Outlook Introduces Lite Version of Android App
https://techcommunity.microsoft.com/t5/outlook-blog/microsoft-outlook-introduces-lite-version-of-android-app/ba-p/3582948 They say the App is: - Small - Fast - Low battery usage - Works on all Networks incl. 2G / 3G
It's unclear what Options are not supported or what's the downside of using this app.
Microsoft Outlook Lite - Google Play
https://play.google.com/store/apps/details?id=com.microsoft.outlooklite&hl=de&gl=MX
Regards Andres Bohren
Hi All, A few Days ago Jabra has released theyr August Version of Jabra Direct
Versionshinweise für Jabra Direct
https://www.jabraheadsets.ch/support/release-notes/release-note-jabra-direct
Regards Andres Bohren
Hi All, Yesterday, Microsoft has released a new Version of theyr PowerShell Modules for Microsoft.Graph
PowerShell Gallery Microsoft.Graph
https://www.powershellgallery.com/packages/Microsoft.Graph/1.11.1
Releases
https://github.com/microsoftgraph/msgraph-sdk-powershell/releases Let's check the installed Version and what's available on the PowerShell Gallery
Get-InstalledModule Microsoft.Graph Find-Module Microsoft.Graph To install the newest Version of the PowerShell Modules and also uninstalling the old Versions, you can use my GitHub Script
#Run Script directly from GitHub
$ScriptFromGitHub = Invoke-WebRequest "https://raw.githubusercontent.com/BohrenAn/GitHub_PowerShellScripts/main/ExchangeOnline/GraphAPI/Cleanup-GraphModules.ps1"
Invoke-Expression $($ScriptFromGitHub.Content) Let's check
Hi All, VMware has released a Security Advisory to address the CVE-2022-31676. You need to upgrade to VMware Tools 12.1.0 to fix the Issue.
https://www.vmware.com/security/advisories/VMSA-2022-0024.html
VMware Tools 12.1.0 Download
https://customerconnect.vmware.com/downloads/details?downloadGroup=VMTOOLS1210&productId=1259&rPId=92824
After you have downloaded the ZIP file mount the vmwaretools.iso and run the Setup64.exe (or setup.exe on x86 Processors)
On my Server i had to restart and relaunch the Setup
Looks good after the Reboot and again launched setup64.exe
Let's check in VCSA
Hi All, With Citrix Workspace for Windows 2206, citrix had released the improved Auto-Update. https://docs.citrix.com/en-us/citrix-workspace-app-for-windows/about.html#2206
This Morning i saw the Message, that Citrix Client has been upgraded
And i've checked the Version. Right, 2207 is now installed. Nice.
You can also grab it from here
Citrix Workspace app 2207 for Windows
https://www.citrix.com/de-de/downloads/workspace-app/windows/workspace-app-for-windows-latest.html
Regards Andres Bohren
Hi All, MicrosoftTeams 4.6.1-preview
https://www.powershellgallery.com/packages/MicrosoftTeams/4.6.1-preview
Show installed Module and what is available on PowerShell Gallery
Get-InstalledModule MicrosoftTeams Find-Module MicrosoftTeams -AllowPrerelease
Install the Preview with the Force Parameter
Install-Module MicrosoftTeams -AllowPrerelease -Force Get-InstalledModule MicrosoftTeams Get-InstalledModule MicrosoftTeams -AllVersions Import-Module Get-Module
Testing Connect-MicrosoftTeams Get-Team
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line* Regards Andres Bohren