在 適用於端點的 Microsoft Defender 中檢視裝置控制事件和資訊

適用於端點的 Microsoft Defender 裝置控制可允許或防止特定裝置連線到使用者的計算機,以協助保護貴組織免於潛在的數據遺失、惡意代碼或其他網路威脅。 您可以使用進階搜捕或使用裝置控制項報告來檢視裝置控制件事件的相關信息。

若要存取 Microsoft Defender 入口網站,您的訂用帳戶必須包含 Microsoft 365 for E5 報告。

選取每個索引標籤,以深入瞭解進階搜捕和裝置控件報告。

進階搜捕

適用於:

觸發裝置控制原則時,不論事件是由系統或登入的使用者所起始,都可透過進階搜捕來顯示事件。 本節包含一些您可以在進階搜捕中使用的查詢範例。

範例 1:磁碟和文件系統層級強制執行所觸發的卸除式儲存原則

RemovableStoragePolicyTriggered發生動作時,可取得有關磁碟和文件系統層級強制執行的事件資訊。

提示

目前,在進階搜捕中,每個裝置每天針對事件限製為 RemovableStoragePolicyTriggered 300個事件。 使用裝置控制項報表來檢視其他數據。


//RemovableStoragePolicyTriggered: event triggered by Disk and file system level enforcement for both Printer and Removable storage based on your policy
DeviceEvents
| where ActionType == "RemovableStoragePolicyTriggered"
| extend parsed=parse_json(AdditionalFields)
| extend RemovableStorageAccess = tostring(parsed.RemovableStorageAccess)
| extend RemovableStoragePolicyVerdict = tostring(parsed.RemovableStoragePolicyVerdict)
| extend MediaBusType = tostring(parsed.BusType)
| extend MediaClassGuid = tostring(parsed.ClassGuid)
| extend MediaClassName = tostring(parsed.ClassName)
| extend MediaDeviceId = tostring(parsed.DeviceId)
| extend MediaInstanceId = tostring(parsed.DeviceInstanceId)
| extend MediaName = tostring(parsed.MediaName)
| extend RemovableStoragePolicy = tostring(parsed.RemovableStoragePolicy)
| extend MediaProductId = tostring(parsed.ProductId)
| extend MediaVendorId = tostring(parsed.VendorId)
| extend MediaSerialNumber = tostring(parsed.SerialNumber)
|project Timestamp, DeviceId, DeviceName, InitiatingProcessAccountName, ActionType, RemovableStorageAccess, RemovableStoragePolicyVerdict, MediaBusType, MediaClassGuid, MediaClassName, MediaDeviceId, MediaInstanceId, MediaName, RemovableStoragePolicy, MediaProductId, MediaVendorId, MediaSerialNumber, FolderPath, FileSize
| order by Timestamp desc

範例 2:抽取式記憶體檔案事件

發生 RemovableStorageFileEvent 動作時,辨識項檔案的相關信息可用於印表機保護和卸除式記憶體。 以下是您可以搭配進階搜捕使用的範例查詢:


//information of the evidence file
DeviceEvents
| where ActionType contains "RemovableStorageFileEvent"
| extend parsed=parse_json(AdditionalFields)
| extend Policy = tostring(parsed.Policy)
| extend PolicyRuleId = tostring(parsed.PolicyRuleId)
| extend MediaClassName = tostring(parsed.ClassName)
| extend MediaInstanceId = tostring(parsed.InstanceId)
| extend MediaName = tostring(parsed.MediaName)
| extend MediaProductId = tostring(parsed.ProductId)
| extend MediaVendorId = tostring(parsed.VendorId)
| extend MediaSerialNumber = tostring(parsed.SerialNumber)
| extend FileInformationOperation = tostring(parsed.DuplicatedOperation)
| extend FileEvidenceLocation = tostring(parsed.TargetFileLocation)
| project Timestamp, DeviceId, DeviceName, InitiatingProcessAccountName, ActionType, Policy, PolicyRuleId, FileInformationOperation, MediaClassName, MediaInstanceId, MediaName, MediaProductId, MediaVendorId, MediaSerialNumber, FileName, FolderPath, FileSize, FileEvidenceLocation, AdditionalFields
| order by Timestamp desc

提示

想要深入了解? Engage 技術社群中的 Microsoft 安全性社群:適用於端點的 Microsoft Defender 技術社群。

另請參閱