@@ -34,7 +34,7 @@ FIM baselines start by identifying characteristics of a known-good state for the
34
34
35
35
36
36
| Policy Name | Registry Setting|
37
- | --------------------------------------- | -------------|
37
+ | ----------------------------| -----------------|
38
38
| Domain controller: Refuse machine account password changes| MACHINE\System\CurrentControlSet\Services \Netlogon\Parameters\RefusePasswordChange|
39
39
| Domain member: Digitally encrypt or sign secure channel data (always)| MACHINE\System\CurrentControlSet\Services \Netlogon\Parameters\RequireSignOrSeal|
40
40
| Domain member: Digitally encrypt secure channel data (when possible)| MACHINE\System\CurrentControlSet\Services \Netlogon\Parameters\SealSecureChannel|
@@ -51,7 +51,7 @@ FIM baselines start by identifying characteristics of a known-good state for the
51
51
52
52
To configure FIM to monitor registry baselines:
53
53
54
- 1 . In the ** Add Windows Registry for Change Tracking** window, in the ** Windows Registry Key** text box, enter the following registry key:
54
+ - In the ** Add Windows Registry for Change Tracking** window, in the ** Windows Registry Key** text box, enter the following registry key:
55
55
56
56
```
57
57
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters
@@ -73,36 +73,27 @@ In the example in the following figure,
73
73
File Integrity Monitoring data resides within the Azure Log Analytics / ConfigurationChange table set.
74
74
75
75
1. Set a time range to retrieve a summary of changes by resource.
76
- In the following example, we are retrieving all changes in the last fourteen days in the categories of registry and files:
77
76
78
- <code>
77
+ In the following example, we are retrieving all changes in the last fourteen days in the categories of registry and files:
79
78
80
- > ConfigurationChange
81
-
82
- > | where TimeGenerated > ago(14d)
83
-
84
- > | where ConfigChangeType in ('Registry', 'Files')
85
-
86
- > | summarize count() by Computer, ConfigChangeType
87
-
88
- </code>
79
+ ```
80
+ ConfigurationChange
81
+ | where TimeGenerated > ago(14d)
82
+ | where ConfigChangeType in ('Registry', 'Files')
83
+ | summarize count() by Computer, ConfigChangeType
84
+ ```
89
85
90
86
1. To view details of the registry changes:
91
87
92
88
1. Remove **Files** from the **where** clause,
93
89
1. Remove the summarization line and replace it with an ordering clause:
94
90
95
- <code>
96
-
97
- > ConfigurationChange
98
-
99
- > | where TimeGenerated > ago(14d)
100
-
101
- > | where ConfigChangeType in ('Registry')
102
-
103
- > | order by Computer, RegistryKey
104
-
105
- </code>
91
+ ```
92
+ ConfigurationChange
93
+ | where TimeGenerated > ago(14d)
94
+ | where ConfigChangeType in ('Registry')
95
+ | order by Computer, RegistryKey
96
+ ```
106
97
107
98
Reports can be exported to CSV for archival and/or channeled to a Power BI report.
108
99
0 commit comments