Skip to content

Commit 221dc53

Browse files
authored
Merge pull request #3765 from MicrosoftDocs/main
Publish to live
2 parents ee787b0 + 9d1567c commit 221dc53

34 files changed

+4118
-12
lines changed

docset/winserver2025-ps/NetworkATC/Add-NetIntent.md

+483
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
---
2+
external help file: NetworkAtc-help.xml
3+
Module Name: NetworkATC
4+
ms.date: 02/21/2024
5+
online version: https://learn.microsoft.com/powershell/module/networkatc/copy-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
6+
schema: 2.0.0
7+
title: Copy-NetIntent
8+
---
9+
10+
# Copy-NetIntent
11+
12+
## SYNOPSIS
13+
Moves (or copies) net intent across different hosts or clusters
14+
15+
## SYNTAX
16+
17+
### LocalToLocal (Default)
18+
19+
```
20+
Copy-NetIntent [[-Name] <String>] [-SourceComputerName] <String> [-DestinationComputerName] <String>
21+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
22+
```
23+
24+
### ClusterToCluster
25+
26+
```
27+
Copy-NetIntent [[-Name] <String>] [-SourceClusterName] <String> [-DestinationClusterName] <String>
28+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
29+
```
30+
31+
### ClusterToLocal
32+
33+
```
34+
Copy-NetIntent [[-Name] <String>] [-SourceClusterName] <String> [-DestinationComputerName] <String>
35+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
36+
```
37+
38+
### LocalToCluster
39+
40+
```
41+
Copy-NetIntent [[-Name] <String>] [-SourceComputerName] <String> [-DestinationClusterName] <String>
42+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
43+
```
44+
45+
### GlobalClusterToLocal
46+
47+
```
48+
Copy-NetIntent [-GlobalOverrides] [-SourceClusterName] <String> [-DestinationComputerName] <String>
49+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
50+
```
51+
52+
### GlobalClusterToCluster
53+
54+
```
55+
Copy-NetIntent [-GlobalOverrides] [-SourceClusterName] <String> [-DestinationClusterName] <String>
56+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
57+
```
58+
59+
### GlobalLocalToCluster
60+
61+
```
62+
Copy-NetIntent [-GlobalOverrides] [-SourceComputerName] <String> [-DestinationClusterName] <String>
63+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
64+
```
65+
66+
### GlobalLocalToLocal
67+
68+
```
69+
Copy-NetIntent [-GlobalOverrides] [-SourceComputerName] <String> [-DestinationComputerName] <String>
70+
[-RemoveSource <Boolean>] [-Wait] [<CommonParameters>]
71+
```
72+
73+
## DESCRIPTION
74+
75+
{{ Fill in the Description }}
76+
77+
## EXAMPLES
78+
79+
### EXAMPLE 1
80+
81+
```
82+
Copy-NetIntent
83+
```
84+
85+
## PARAMETERS
86+
87+
### -DestinationClusterName
88+
89+
The name of the cluster that the intent is copied to.
90+
91+
```yaml
92+
Type: System.String
93+
Parameter Sets: ClusterToCluster, LocalToCluster, GlobalClusterToCluster, GlobalLocalToCluster
94+
Aliases:
95+
96+
Required: True
97+
Position: 3
98+
Default value: None
99+
Accept pipeline input: False
100+
Accept wildcard characters: False
101+
```
102+
103+
### -DestinationComputerName
104+
105+
The name of the computer that the intent is copied to.
106+
107+
```yaml
108+
Type: System.String
109+
Parameter Sets: LocalToLocal, ClusterToLocal, GlobalClusterToLocal, GlobalLocalToLocal
110+
Aliases:
111+
112+
Required: True
113+
Position: 3
114+
Default value: None
115+
Accept pipeline input: False
116+
Accept wildcard characters: False
117+
```
118+
119+
### -GlobalOverrides
120+
121+
{{ Fill GlobalOverrides Description }}
122+
123+
```yaml
124+
Type: System.Management.Automation.SwitchParameter
125+
Parameter Sets: GlobalClusterToLocal, GlobalClusterToCluster, GlobalLocalToCluster, GlobalLocalToLocal
126+
Aliases:
127+
128+
Required: True
129+
Position: Named
130+
Default value: False
131+
Accept pipeline input: True (ByPropertyName, ByValue)
132+
Accept wildcard characters: False
133+
```
134+
135+
### -Name
136+
137+
The name of the intent to be copied.
138+
139+
```yaml
140+
Type: System.String
141+
Parameter Sets: LocalToLocal, ClusterToCluster, ClusterToLocal, LocalToCluster
142+
Aliases:
143+
144+
Required: False
145+
Position: 1
146+
Default value: None
147+
Accept pipeline input: True (ByPropertyName, ByValue)
148+
Accept wildcard characters: False
149+
```
150+
151+
### -RemoveSource
152+
153+
Indicates that the source needs to be removed after the copy.
154+
155+
```yaml
156+
Type: System.Boolean
157+
Parameter Sets: (All)
158+
Aliases:
159+
160+
Required: False
161+
Position: Named
162+
Default value: False
163+
Accept pipeline input: False
164+
Accept wildcard characters: False
165+
```
166+
167+
### -SourceClusterName
168+
169+
The name of the cluster that the intent is copied from.
170+
171+
```yaml
172+
Type: System.String
173+
Parameter Sets: ClusterToCluster, ClusterToLocal, GlobalClusterToLocal, GlobalClusterToCluster
174+
Aliases:
175+
176+
Required: True
177+
Position: 2
178+
Default value: None
179+
Accept pipeline input: False
180+
Accept wildcard characters: False
181+
```
182+
183+
### -SourceComputerName
184+
185+
The name of the computer that the intent is copied from.
186+
187+
```yaml
188+
Type: System.String
189+
Parameter Sets: LocalToLocal, LocalToCluster, GlobalLocalToCluster, GlobalLocalToLocal
190+
Aliases:
191+
192+
Required: True
193+
Position: 2
194+
Default value: None
195+
Accept pipeline input: False
196+
Accept wildcard characters: False
197+
```
198+
199+
### -Wait
200+
201+
{{ Fill Wait Description }}
202+
203+
```yaml
204+
Type: System.Management.Automation.SwitchParameter
205+
Parameter Sets: (All)
206+
Aliases:
207+
208+
Required: False
209+
Position: Named
210+
Default value: False
211+
Accept pipeline input: False
212+
Accept wildcard characters: False
213+
```
214+
215+
### CommonParameters
216+
217+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
218+
219+
## INPUTS
220+
221+
## OUTPUTS
222+
223+
## NOTES
224+
225+
The copy & removal operation of the intent is not a transacted operation\`.
226+
227+
## RELATED LINKS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
---
2+
external help file: NetworkAtc-help.xml
3+
Module Name: NetworkATC
4+
ms.date: 02/21/2024
5+
online version: https://learn.microsoft.com/powershell/module/networkatc/get-allnetintents?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
6+
schema: 2.0.0
7+
title: Get-AllNetIntents
8+
---
9+
10+
# Get-AllNetIntents
11+
12+
## SYNOPSIS
13+
Looks up all intent requests configurations available
14+
15+
## SYNTAX
16+
17+
```
18+
Get-AllNetIntents [[-ClusterName] <String>] [[-ComputerName] <String>] [-GlobalOverrides]
19+
[<CommonParameters>]
20+
```
21+
22+
## DESCRIPTION
23+
24+
{{ Fill in the Description }}
25+
26+
## EXAMPLES
27+
28+
### Example 1
29+
30+
```powershell
31+
PS C:\> {{ Add example code here }}
32+
```
33+
34+
{{ Add example description here }}
35+
36+
## PARAMETERS
37+
38+
### -ClusterName
39+
40+
{{ Fill ClusterName Description }}
41+
42+
```yaml
43+
Type: System.String
44+
Parameter Sets: (All)
45+
Aliases:
46+
47+
Required: False
48+
Position: 1
49+
Default value: None
50+
Accept pipeline input: False
51+
Accept wildcard characters: False
52+
```
53+
54+
### -ComputerName
55+
56+
{{ Fill ComputerName Description }}
57+
58+
```yaml
59+
Type: System.String
60+
Parameter Sets: (All)
61+
Aliases:
62+
63+
Required: False
64+
Position: 2
65+
Default value: None
66+
Accept pipeline input: False
67+
Accept wildcard characters: False
68+
```
69+
70+
### -GlobalOverrides
71+
72+
{{ Fill GlobalOverrides Description }}
73+
74+
```yaml
75+
Type: System.Management.Automation.SwitchParameter
76+
Parameter Sets: (All)
77+
Aliases:
78+
79+
Required: False
80+
Position: Named
81+
Default value: False
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### CommonParameters
87+
88+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
89+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
90+
-WarningAction, and -WarningVariable. For more information, see
91+
[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
92+
93+
## INPUTS
94+
95+
## OUTPUTS
96+
97+
## NOTES
98+
99+
## RELATED LINKS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
external help file: NetworkAtc-help.xml
3+
Module Name: NetworkATC
4+
ms.date: 02/21/2024
5+
online version: https://learn.microsoft.com/powershell/module/networkatc/get-hudswitchlessmapping?view=windowsserver2025-ps&wt.mc_id=ps-gethelp
6+
schema: 2.0.0
7+
title: Get-HUDSwitchlessMapping
8+
---
9+
10+
# Get-HUDSwitchlessMapping
11+
12+
## SYNOPSIS
13+
{{ Fill in the Synopsis }}
14+
15+
## SYNTAX
16+
17+
```
18+
Get-HUDSwitchlessMapping [-ClusterName] <String> [<CommonParameters>]
19+
```
20+
21+
## DESCRIPTION
22+
23+
{{ Fill in the Description }}
24+
25+
## EXAMPLES
26+
27+
### Example 1
28+
29+
```powershell
30+
PS C:\> {{ Add example code here }}
31+
```
32+
33+
{{ Add example description here }}
34+
35+
## PARAMETERS
36+
37+
### -ClusterName
38+
39+
{{ Fill ClusterName Description }}
40+
41+
```yaml
42+
Type: System.String
43+
Parameter Sets: (All)
44+
Aliases:
45+
46+
Required: True
47+
Position: 0
48+
Default value: None
49+
Accept pipeline input: False
50+
Accept wildcard characters: False
51+
```
52+
53+
### CommonParameters
54+
55+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
56+
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
57+
-WarningAction, and -WarningVariable. For more information, see
58+
[about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
59+
60+
## INPUTS
61+
62+
### None
63+
64+
## OUTPUTS
65+
66+
### System.Object
67+
68+
## NOTES
69+
70+
## RELATED LINKS

0 commit comments

Comments
 (0)