Skip to content

Commit b0a5741

Browse files
authored
Merge branch 'master' into appvsequencer-v-tishe
2 parents df932ae + 3bce2d9 commit b0a5741

File tree

3 files changed

+96
-84
lines changed

3 files changed

+96
-84
lines changed

docset/winserver2022-ps/processmitigations/ConvertTo-ProcessMitigationPolicy.md

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
3-
external help file: ProcessMitigations.dll-Help.xml
3+
external help file: Microsoft.ProcessMitigations.Commands.dll-Help.xml
44
Module Name: ProcessMitigations
55
ms.date: 03/29/2017
66
online version: https://docs.microsoft.com/powershell/module/processmitigations/convertto-processmitigationpolicy?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
@@ -16,7 +16,7 @@ Converts an mitigation policy file formats.
1616
## SYNTAX
1717

1818
```
19-
ConvertTo-ProcessMitigationPolicy -EMETFilePath <String> -OutputFilePath <String> [<CommonParameters>]
19+
ConvertTo-ProcessMitigationPolicy [-EMETFilePath] <String> [-OutputFilePath] <String> [<CommonParameters>]
2020
```
2121

2222
## DESCRIPTION
@@ -34,26 +34,30 @@ Converts EMET file policy.xml to result.xml, may also generate a CI file CI-resu
3434
## PARAMETERS
3535

3636
### -EMETFilePath
37-
{{Fill EMETFilePath Description}}```yaml
37+
Specifies the full path of the Enhanced Mitigation Experience Tool (EMET) file to convert.
38+
39+
```yaml
3840
Type: String
3941
Parameter Sets: (All)
4042
Aliases: f
4143

4244
Required: True
43-
Position: Named
45+
Position: 0
4446
Default value: None
4547
Accept pipeline input: True (ByPropertyName, ByValue)
4648
Accept wildcard characters: False
4749
```
4850
4951
### -OutputFilePath
50-
{{Fill OutputFilePath Description}}```yaml
52+
Specifies the full path of the converted format file.
53+
54+
```yaml
5155
Type: String
5256
Parameter Sets: (All)
5357
Aliases: o
5458

5559
Required: True
56-
Position: Named
60+
Position: 1
5761
Default value: None
5862
Accept pipeline input: True (ByPropertyName, ByValue)
5963
Accept wildcard characters: False
@@ -64,8 +68,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
6468
6569
## INPUTS
6670
67-
### None
68-
71+
### System.String
6972
## OUTPUTS
7073
7174
### System.Object

docset/winserver2022-ps/processmitigations/Get-ProcessMitigation.md

+23-24
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Use this topic to help manage Windows and Windows Server technologies with Windows PowerShell.
3-
external help file: ProcessMitigations.dll-Help.xml
3+
external help file: Microsoft.ProcessMitigations.Commands.dll-Help.xml
44
Module Name: ProcessMitigations
55
ms.date: 03/29/2017
66
online version: https://docs.microsoft.com/powershell/module/processmitigations/get-processmitigation?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
@@ -15,27 +15,27 @@ Gets the current process mitigation settings, either from the registry, from a r
1515

1616
## SYNTAX
1717

18-
### FullPolicySet
18+
### FullPolicy (Default)
1919
```
2020
Get-ProcessMitigation [-FullPolicy] [<CommonParameters>]
2121
```
2222

23-
### IdSet
23+
### NameMode
2424
```
25-
Get-ProcessMitigation [-Id] <Int32[]> [<CommonParameters>]
25+
Get-ProcessMitigation [-Name] <String> [-RunningProcesses] [<CommonParameters>]
2626
```
2727

28-
### NameSet
28+
### IdMode
2929
```
30-
Get-ProcessMitigation [-Name] <String> [-RunningProcesses] [<CommonParameters>]
30+
Get-ProcessMitigation [-Id] <Int32[]> [<CommonParameters>]
3131
```
3232

33-
### SaveSet
33+
### SaveMode
3434
```
3535
Get-ProcessMitigation [-RegistryConfigFilePath <String>] [<CommonParameters>]
3636
```
3737

38-
### SystemSet
38+
### SystemMode
3939
```
4040
Get-ProcessMitigation [-System] [<CommonParameters>]
4141
```
@@ -101,8 +101,8 @@ Returns every processes' current mitigation settings in the registry
101101

102102
```yaml
103103
Type: SwitchParameter
104-
Parameter Sets: FullPolicySet
105-
Aliases:
104+
Parameter Sets: FullPolicy
105+
Aliases: f
106106

107107
Required: False
108108
Position: Named
@@ -116,8 +116,8 @@ Process Id to retrieve current running process mitigation settings from
116116
117117
```yaml
118118
Type: Int32[]
119-
Parameter Sets: IdSet
120-
Aliases:
119+
Parameter Sets: IdMode
120+
Aliases:
121121

122122
Required: True
123123
Position: 0
@@ -131,8 +131,8 @@ Accept wildcard characters: False
131131
132132
```yaml
133133
Type: String
134-
Parameter Sets: NameSet
135-
Aliases:
134+
Parameter Sets: NameMode
135+
Aliases: n
136136

137137
Required: True
138138
Position: 0
@@ -146,8 +146,8 @@ File to save the current registry process mitigation configuration to
146146
147147
```yaml
148148
Type: String
149-
Parameter Sets: SaveSet
150-
Aliases:
149+
Parameter Sets: SaveMode
150+
Aliases: o
151151

152152
Required: False
153153
Position: Named
@@ -156,13 +156,13 @@ Accept pipeline input: False
156156
Accept wildcard characters: False
157157
```
158158
159-
### -RunningProcess
159+
### -RunningProcesses
160160
Pull the current process mitigation settings from a running instance instead of the registry.
161161
162162
```yaml
163163
Type: SwitchParameter
164-
Parameter Sets: NameSet
165-
Aliases:
164+
Parameter Sets: NameMode
165+
Aliases: r
166166

167167
Required: False
168168
Position: Named
@@ -176,8 +176,8 @@ Pulls the current system defaults for process mitigations.
176176
177177
```yaml
178178
Type: SwitchParameter
179-
Parameter Sets: SystemSet
180-
Aliases:
179+
Parameter Sets: SystemMode
180+
Aliases: s
181181

182182
Required: False
183183
Position: Named
@@ -191,12 +191,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
191191
192192
## INPUTS
193193
194-
### System.String
195-
System.Int32\[\]
194+
### System.Int32[]
196195
197196
## OUTPUTS
198197
199-
### Microsoft.Samples.PowerShell.Commands.AppMitigations
198+
### System.Object
200199
201200
## NOTES
202201

0 commit comments

Comments
 (0)