|
| 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 |
0 commit comments