检查已完成MFA的AAD用户报告
Get-MsolUser -All | Where-Object {$_.StrongAuthenticationMethods -ne $null -and $_.BlockCredential -eq $False} | Select-Object -Property UserPrincipalName

获取电脑显示器型号和序列号
gwmi WmiMonitorID -Namespace rootwmi | ForEach-Object {($_.UserFriendlyName -ne 0 | foreach {if ($_.gettype().name -ne "Boolean") {[char]$_}}) -join ""; ($_.SerialNumberID -ne 0 | foreach {[char]$_}) -join ""}

根本原因和纠正措施 (RCCA)

记录Exchange Online中User1的邮箱文件夹权限所做的任何更改
set-Mailbox User1 -AuditEnabled $true

Powershell 创建快捷方式
$WshShell = New-Object -comObject WScript.Shell
$Shortcut = $WshShell.CreateShortcut("c:userspublicdesktopOutlook-idolyys.lnk") 快捷方式位置和名称
$Shortcut.TargetPath = "C:Program FilesMicrosoft OfficerootOffice16OUTLOOK.exe" 目标程序位置
$Shortcut.WindowStyle = 1
$Shortcut.IconLocation = "C:Program FilesMicrosoft OfficerootOffice16OUTLOOK.exe, 0"图标显示
$Shortcut.WorkingDirectory = "C:Program FilesMicrosoft OfficerootOffice16"目录位置
$Shortcut.Save()

最后修改:2022 年 09 月 30 日
如果觉得我的文章对你有用,请随意赞赏。备注昵称可进入永久致谢名单。