User Profile
Schnittlauch
Iron Contributor
Joined 5 years ago
User Widgets
Recent Discussions
Re: Policy for limiting external domains and allowing particular external receivers
Hi Sofia, I'm having a understanding issue what your goal is and what you'd like to achieve. Could you update your post to a more structured description? I understood: You want to forward all emails which are sent to "email address removed for privacy reasons" to "email address removed for privacy reasons" but only from specific domains? Why dont you enable full-forwarding for Mailbox1 and just create a transport rule which applies for Mailbox1 to reject respective domains? BR Schnittlauch29Views0likes0CommentsRe: Forcing Outlook Fonts via Intune
Im familiar with PowerShell but I have no experience at all with this. I'd contact the creator itself, he is familiar with this, maybe there is an easy fix. My AI says powershell can handle those hex numbers. I'll leave the suggested code from my AI but I highly recommend to test it only in DEV Environments aswell as contact your linkedin contact. function Convert-HexCsvToByteArray { param([string]$Csv) $Csv -split ',' | Where-Object { $_ -ne '' } | ForEach-Object { [Convert]::ToByte(($_ -replace '\s',''), 16) } } $bytesSimple = Convert-HexCsvToByteArray $ValueSimple $bytesComposeComplex = Convert-HexCsvToByteArray $ValueComposeComplex $bytesReplyComplex = Convert-HexCsvToByteArray $ValueReplyComplex $bytesTextComplex = Convert-HexCsvToByteArray $ValueTextComplex $registryPath = 'HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\mailsettings' $Name1Simple = "ComposeFontSimple" $Name1Complex = "ComposeFontComplex" $Name2Simple = "ReplyFontSimple" $Name2Complex = "ReplyFontComplex" $Name3Simple = "TextFontSimple" $Name3Complex = "TextFontComplex" if (-not (Test-Path $registryPath)) { New-Item -Path $registryPath -Force | Out-Null New-ItemProperty -Path $registryPath -Name NewTheme -Value '' -PropertyType String -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name1Simple -Value $bytesSimple -PropertyType Binary -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name2Simple -Value $bytesSimple -PropertyType Binary -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name3Simple -Value $bytesSimple -PropertyType Binary -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name1Complex -Value $bytesComposeComplex -PropertyType Binary -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name2Complex -Value $bytesReplyComplex -PropertyType Binary -Force | Out-Null New-ItemProperty -Path $registryPath -Name $Name3Complex -Value $bytesTextComplex -PropertyType Binary -Force | Out-Null } else { Set-ItemProperty -Path $registryPath -Name NewTheme -Value $null New-ItemProperty -Path $registryPath -Name ThemeFont -Value 2 -PropertyType DWord -Force | Out-Null Set-ItemProperty -Path $registryPath -Name $Name1Simple -Value $bytesSimple Set-ItemProperty -Path $registryPath -Name $Name2Simple -Value $bytesSimple Set-ItemProperty -Path $registryPath -Name $Name3Simple -Value $bytesSimple Set-ItemProperty -Path $registryPath -Name $Name1Complex -Value $bytesComposeComplex Set-ItemProperty -Path $registryPath -Name $Name2Complex -Value $bytesReplyComplex Set-ItemProperty -Path $registryPath -Name $Name3Complex -Value $bytesTextComplex }0Views0likes0CommentsRe: Bring back Cortana
thanks for your AI Summary :) I'm gonna help you, even tho I hate cortana. :D Post your whishes on the microsoft feedbackhub, where people can vote for it, eventually microsoft will come back to it. https://support.microsoft.com/en-us/windows/send-feedback-to-microsoft-with-the-feedback-hub-app-f59187f8-8739-22d6-ba93-f6661294933210Views0likes0CommentsRe: Locked out of Azure account for 5 months! Spent hours on phone, still no resolution! PLEASE HELP!!!
Thats really heavy. Have you tried to contact the new buyer of the backup domain? I mean its nearly impossible to get past microsoft. If you are a big company, you could try to get a local microsoft manager or related to make internal pressure. But they are also following a strict protocoll. Can you maybe prove that you own the credit card of payments so far? You need to pressure, its sadly "your fault", microsoft will not come proactive to you with solutions. Feel free to update, once you're having a solution BR Schnittlauch23Views0likes0CommentsRe: Migration Exchange 2016 to 2019 then SE
Is this problem also happening when using OWA? There are many workarounds within the article aswell as the comments. Have you already tried the following? Just found a working Workaround to this problem. exchange cache mode in outlook MUST be disabled. after that you need to go to registry and delete the following key: HKCU\Software\Microsoft\Office"version"\Outlook\Search and search for the key where *.ost is the name. delete this key while outlook is open (it didn't worked for me when outlook was allready closed) after deletion restart outlook and search is working again. how what where. i really don't know but untill MS comes with a solution this could achieve your goal. Furthermore: Are those mailboxes very large mailboxes with 100k+ items or all mailboxes, even small ones?116Views0likes1CommentRe: New-MgBookingBusinessService | Customer Information Questions
Hey, sorry I dont have a fix for this. I'm only requesting to remove sensitive date like on line 12, 91. Furthermore I didnt full understand the problem and I'm curious, why doesn't the normal "booking with me" setup fit for your meets? Thanks in advance Florian50Views0likes0CommentsDefender: Exploit of HAFNIUM on newest MS Exchange Version?
Hi all, I'm running an exchange on Windows Server 2022, on Exchange Build 15.2.1544.14 (Nov 2024 CU) I've just received an MS Defender EDR High Incident of possible infection of the exchange server. I've checked the Version and Patchmanagement, everything looks fine, even Defender says in the device page "missing kbs" that there is nothing to update. Can I ignore that? I'd say yes, but why would defender create a high incident for that? BR SchnittlauchSolved203Views0likes2CommentsRe: Exchange Online (hybrid vs. cloud conundrum)
Hi there, the msExch* attributes are part of exchange onPrem. When you decide to remove the exchange and uninstall it, it will automaticall remove all Exchange Attributes. With the other questions I cannot assist, hope this is something what helped you. BR Schnittlauch86Views0likes0CommentsRe: Exchange Online recipient limits
Hi there, looks like its related to antispam policies. Have you checked out https://security.microsoft.com/antispam Choose "Anti-Spam Outbound Policy" (if you didnt create an own one). Edit the policy and you'll see internal rate limits. Eventually you'll need security administrator to edit. BR Schnittlauch Edit: was a few seconds too late :(138Views1like1CommentRe: Connecting to multiple Microsoft services with the same session
First of all: The Parameter "userprimaryname" doesn't exist in the EXO Module. Secondly, I can reproduze this error. My device is entra joined. When logging in with my Office user logged in on this device, i can SSO into Azure Module and EXO Module. When trieing the same way with my Entra Global admin, i get prompted to log in twice. No idea why. If you want to achieve automatically Logon, you can take a look at the "-InlineCredential" Param (Only working in PS7, see docs) or instantly work with certs references: Connect to Exchange Online PowerShell | Microsoft Learn App-only authentication in Exchange Online PowerShell and Security & Compliance PowerShell | Microsoft Learn123Views1like1Comment
Recent Blog Articles
No content to show