https://learn.microsoft.com/zh-tw/outlook/troubleshoot/profiles-and-accounts/metered-connection-warning
無法在 Outlook 中傳送或接收電子郵件,並觸發「計量付費連線警告」
設定\網路和網際網路\乙太網路\乙太網路底下找出實際上網用網路卡介面
點進去後可以看到網路設定檔
把裡面的"計量付費網路連線"關掉試試
我以前有碰過win10使用者連上VPN以後不能收信也是出現這樣的訊息,結果是關掉就好了
有遇到過
自己寫一個PowerShell來處理
需要系統管理員權限
Set-ExecutionPolicy RemoteSigned -Scope Process -Force
$acl = Get-Acl -Path "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\Software\Microsoft\SecurityManager"
$acl.SetAccessRuleProtection($false, $true)
Set-Acl -Path "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\Software\Microsoft\SecurityManager" -AclObject $acl
Remove-Item -Path "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\REGISTRY\MACHINE\Software\Microsoft\SecurityManager" -Recurse -Force
Set-ExecutionPolicy Restricted -Scope Process -Force