diff --git a/docset/winserver2025-ps/NetworkATC/Add-NetIntent.md b/docset/winserver2025-ps/NetworkATC/Add-NetIntent.md new file mode 100644 index 0000000000..3080995f1d --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Add-NetIntent.md @@ -0,0 +1,483 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/add-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Add-NetIntent +--- + +# Add-NetIntent + +## SYNOPSIS +Configures network host using intent based tags for adapters + +## SYNTAX + +### ComputerName (Default) + +``` +Add-NetIntent [[-ComputerName] ] -AdapterName -Name [-Wait] [-Compute] + [-Management] [-Storage] [-Switchless] [-Stretch] + [-AdapterPropertyOverrides ] [-QoSPolicyOverrides ] + [-AdapterRssPropertyOverrides ] + [-SwitchPropertyOverrides ] + [-StorageOverrides ] [-SiteOverrides ] + [-StorageVlans ] [-ManagementVlan ] [-SkipNetworkInterfaceValidation] + [-PutGlobal ] [] +``` + +### Global + +``` +Add-NetIntent [[-ComputerName] ] [-ClusterName ] [-Wait] + [-GlobalProxyOverrides ] [-GlobalClusterOverrides ] + [] +``` + +### Cluster + +``` +Add-NetIntent -ClusterName -AdapterName -Name [-Wait] [-Compute] + [-Management] [-Storage] [-Switchless] [-Stretch] + [-AdapterPropertyOverrides ] [-QoSPolicyOverrides ] + [-AdapterRssPropertyOverrides ] + [-SwitchPropertyOverrides ] + [-StorageOverrides ] [-SiteOverrides ] + [-StorageVlans ] [-ManagementVlan ] [-SkipNetworkInterfaceValidation] + [-PutGlobal ] [] +``` + +## DESCRIPTION + +`Add-NetIntent` is used to communicate the default networking configurations required on the host. +Each intent is uniquely identified by the list of physical adapters provided. Which means no two +intents can have overlapping physical nic names. + +Intents are supported per cluster or as a standalone host. + +- For Standalone **ComputerName** should point to the available DNS host Name. (Ensure that the + current used of the script has administrator priviliges on the remote machine) +- For Cluster: **ClusterName** should point to the available DNS ClusterName. Cluster intents are + policies which 'floats' across the cluster and any node which finds compatible (matching names ) + will automatically apply the intended networking configuration on it. +- If **ComputerName** and **ClusterName** are null, clustered hosts will use the name of their + cluster and standalone hosts will use their own host name. + +If you're logged into using a remote session, giving a remote cluster name would very likely result +in a 'double hop issue'. For more information, see +[Understanding Kerberos Double Hop](https://techcommunity.microsoft.com/t5/ask-the-directory-services-team/understanding-kerberos-double-hop/ba-p/395463) + +Cluster DNS name is 'floating' and may be actively registered to any of the node's IP address. If +the active IP does not belong to the node this script is being run, then a remote call will be made. +In a remote session, this is a double hop and will fail. + +As an alternative, you can try giving `-ClusterName ` as the target endpoint. This +will cause the resolution to be forced to the local instance of the cluster. This is different from +calling `-ComputerName `, calling with -ComputerName updates only the local reposity. +Intents in the local repositories are skipped if the ndoe is a part of a cluster. + +Once an intent is created, it may not be modified. The only way to re-do is to do a cleanup using +`Clear-NetIntent` and then applying `Add-NetIntent` again. + +However, configuration changes like providing override for defaults is possible. This can be +achieved by providing _policy overrides_ (see **AdapterPropertyOverrides**, **QoSPolicyOverrides**, +**AdapterRssOverrides**, and **SwitchOverrides**). These can also be supplied during `Add-NetIntent` +and can also be applied post facto using `Add-NetIntentOverride`. + +`Set-NetIntentTracing` can be used to enable / disable tracing for collecting dignostic information +about operations of NetworkAtc + +Intent status is retried a few times and then the engine gives up. This would be marked as +**Failed**. You can query the status by running `Get-NetIntentStatus`. + +## EXAMPLES + +### EXAMPLE 1 + +``` +Add-NetIntent +``` + +## PARAMETERS + +### -AdapterName + +A list of physical network adapters on which this intent will be created. If an intent requires +switch creation, one switch will be created. If a switch is created with multiple adapters, a NIC +teaming will be automatically be created. + +```yaml +Type: System.String[] +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AdapterPropertyOverrides + +{{ Fill AdapterPropertyOverrides Description }} + +```yaml +Type: FabricManager.NetAdapterAdvancedConfiguration +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AdapterRssPropertyOverrides + +{{ Fill AdapterRssPropertyOverrides Description }} + +```yaml +Type: FabricManager.RssConfiguration +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName + +The name of the target cluster for the intents. + +```yaml +Type: System.String +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Compute + +Specifies the intent is for compute. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +The name of the target computer for the intents. + +```yaml +Type: System.String +Parameter Sets: ComputerName, Global +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalClusterOverrides + +{{ Fill GlobalClusterOverrides Description }} + +```yaml +Type: FabricManager.ClusterSettings +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalProxyOverrides + +{{ Fill GlobalProxyOverrides Description }} + +```yaml +Type: FabricManager.WinHttpAdvProxy +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Management + +Specifies the intent is for management. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ManagementVlan + +{{ Fill ManagementVlan Description }} + +```yaml +Type: System.Int32 +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: -1 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +The name of the intent. + +```yaml +Type: System.String +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PutGlobal + +{{ Fill PutGlobal Description }} + +```yaml +Type: System.Boolean +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QoSPolicyOverrides + +{{ Fill QoSPolicyOverrides Description }} + +```yaml +Type: FabricManager.QoSPolicy +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SiteOverrides + +{{ Fill SiteOverrides Description }} + +```yaml +Type: FabricManager.SiteConfiguration[] +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipNetworkInterfaceValidation + +{{ Fill SkipNetworkInterfaceValidation Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Storage + +Specifies the intent is for storage. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageOverrides + +{{ Fill StorageOverrides Description }} + +```yaml +Type: FabricManager.NetAdapterStorageOverride +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageVlans + +{{ Fill StorageVlans Description }} + +```yaml +Type: System.Int32[] +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stretch + +{{ Fill Stretch Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Switchless + +{{ Fill Switchless Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SwitchPropertyOverrides + +{{ Fill SwitchPropertyOverrides Description }} + +```yaml +Type: FabricManager.SwitchConfigurationOverride +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Copy-NetIntent.md b/docset/winserver2025-ps/NetworkATC/Copy-NetIntent.md new file mode 100644 index 0000000000..db480b56af --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Copy-NetIntent.md @@ -0,0 +1,227 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/copy-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Copy-NetIntent +--- + +# Copy-NetIntent + +## SYNOPSIS +Moves (or copies) net intent across different hosts or clusters + +## SYNTAX + +### LocalToLocal (Default) + +``` +Copy-NetIntent [[-Name] ] [-SourceComputerName] [-DestinationComputerName] + [-RemoveSource ] [-Wait] [] +``` + +### ClusterToCluster + +``` +Copy-NetIntent [[-Name] ] [-SourceClusterName] [-DestinationClusterName] + [-RemoveSource ] [-Wait] [] +``` + +### ClusterToLocal + +``` +Copy-NetIntent [[-Name] ] [-SourceClusterName] [-DestinationComputerName] + [-RemoveSource ] [-Wait] [] +``` + +### LocalToCluster + +``` +Copy-NetIntent [[-Name] ] [-SourceComputerName] [-DestinationClusterName] + [-RemoveSource ] [-Wait] [] +``` + +### GlobalClusterToLocal + +``` +Copy-NetIntent [-GlobalOverrides] [-SourceClusterName] [-DestinationComputerName] + [-RemoveSource ] [-Wait] [] +``` + +### GlobalClusterToCluster + +``` +Copy-NetIntent [-GlobalOverrides] [-SourceClusterName] [-DestinationClusterName] + [-RemoveSource ] [-Wait] [] +``` + +### GlobalLocalToCluster + +``` +Copy-NetIntent [-GlobalOverrides] [-SourceComputerName] [-DestinationClusterName] + [-RemoveSource ] [-Wait] [] +``` + +### GlobalLocalToLocal + +``` +Copy-NetIntent [-GlobalOverrides] [-SourceComputerName] [-DestinationComputerName] + [-RemoveSource ] [-Wait] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 + +``` +Copy-NetIntent +``` + +## PARAMETERS + +### -DestinationClusterName + +The name of the cluster that the intent is copied to. + +```yaml +Type: System.String +Parameter Sets: ClusterToCluster, LocalToCluster, GlobalClusterToCluster, GlobalLocalToCluster +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DestinationComputerName + +The name of the computer that the intent is copied to. + +```yaml +Type: System.String +Parameter Sets: LocalToLocal, ClusterToLocal, GlobalClusterToLocal, GlobalLocalToLocal +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: GlobalClusterToLocal, GlobalClusterToCluster, GlobalLocalToCluster, GlobalLocalToLocal +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Name + +The name of the intent to be copied. + +```yaml +Type: System.String +Parameter Sets: LocalToLocal, ClusterToCluster, ClusterToLocal, LocalToCluster +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -RemoveSource + +Indicates that the source needs to be removed after the copy. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceClusterName + +The name of the cluster that the intent is copied from. + +```yaml +Type: System.String +Parameter Sets: ClusterToCluster, ClusterToLocal, GlobalClusterToLocal, GlobalClusterToCluster +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SourceComputerName + +The name of the computer that the intent is copied from. + +```yaml +Type: System.String +Parameter Sets: LocalToLocal, LocalToCluster, GlobalLocalToCluster, GlobalLocalToLocal +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +The copy & removal operation of the intent is not a transacted operation\`. + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Get-AllNetIntents.md b/docset/winserver2025-ps/NetworkATC/Get-AllNetIntents.md new file mode 100644 index 0000000000..1094a2cf7f --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Get-AllNetIntents.md @@ -0,0 +1,99 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/get-allnetintents?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-AllNetIntents +--- + +# Get-AllNetIntents + +## SYNOPSIS +Looks up all intent requests configurations available + +## SYNTAX + +``` +Get-AllNetIntents [[-ClusterName] ] [[-ComputerName] ] [-GlobalOverrides] + [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Get-HUDSwitchlessMapping.md b/docset/winserver2025-ps/NetworkATC/Get-HUDSwitchlessMapping.md new file mode 100644 index 0000000000..bca56f7f44 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Get-HUDSwitchlessMapping.md @@ -0,0 +1,70 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/get-hudswitchlessmapping?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-HUDSwitchlessMapping +--- + +# Get-HUDSwitchlessMapping + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-HUDSwitchlessMapping [-ClusterName] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Get-NetIntent.md b/docset/winserver2025-ps/NetworkATC/Get-NetIntent.md new file mode 100644 index 0000000000..8b2225f863 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Get-NetIntent.md @@ -0,0 +1,122 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/get-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetIntent +--- + +# Get-NetIntent + +## SYNOPSIS +Gets the current set of intents configured on the node / cluster + +## SYNTAX + +### ComputerName (Default) + +``` +Get-NetIntent [[-ComputerName] ] [-Name ] [-GlobalOverrides] [] +``` + +### Cluster + +``` +Get-NetIntent [-ClusterName] [-Name ] [-GlobalOverrides] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Get-NetIntentAllGoalStates.md b/docset/winserver2025-ps/NetworkATC/Get-NetIntentAllGoalStates.md new file mode 100644 index 0000000000..8675f82cd9 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Get-NetIntentAllGoalStates.md @@ -0,0 +1,80 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/get-netintentallgoalstates?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetIntentAllGoalStates +--- + +# Get-NetIntentAllGoalStates + +## SYNOPSIS +Looks up all intent goal state configurations available + +## SYNTAX + +``` +Get-NetIntentAllGoalStates [[-ClusterName] ] [[-ComputerName] ] [] +``` + +## DESCRIPTION + +Long description + +## EXAMPLES + +### EXAMPLE 1 + +``` + +``` + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Get-NetIntentStatus.md b/docset/winserver2025-ps/NetworkATC/Get-NetIntentStatus.md new file mode 100644 index 0000000000..5d6bb7c3b5 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Get-NetIntentStatus.md @@ -0,0 +1,125 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/get-netintentstatus?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Get-NetIntentStatus +--- + +# Get-NetIntentStatus + +## SYNOPSIS +Displays consolidated status of all the intent configurations for a node or across multiple nodes in +case of a cluster. + +## SYNTAX + +### ComputerName (Default) + +``` +Get-NetIntentStatus [[-Name] ] [[-ComputerName] ] [-GlobalOverrides] + [] +``` + +### Cluster + +``` +Get-NetIntentStatus [[-Name] ] [-ClusterName] [-GlobalOverrides] + [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/NetworkATC.md b/docset/winserver2025-ps/NetworkATC/NetworkATC.md new file mode 100644 index 0000000000..3de994fd8e --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/NetworkATC.md @@ -0,0 +1,87 @@ +--- +Download Help Link: https://aka.ms/winsvr-2025-pshelp +Help Version: 5.1.0.2025 +Locale: en-US +Module Guid: 74bd14cc-e0b8-42f9-b940-0ad938bb852b +Module Name: NetworkATC +ms.date: 02/21/2024 +title: NetworkATC module +--- + +# NetworkATC Module +## Description +{{ Fill in the Description }} + +## NetworkATC Cmdlets + +### [Add-NetIntent](Add-NetIntent.md) +Configures network host using intent based tags for adapters + +### [Copy-NetIntent](Copy-NetIntent.md) +Moves (or copies) net intent across different hosts or clusters + +### [Get-AllNetIntents](Get-AllNetIntents.md) +Looks up all intent requests configurations available + +### [Get-HUDSwitchlessMapping](Get-HUDSwitchlessMapping.md) +{{ Fill in the Synopsis }} + +### [Get-NetIntent](Get-NetIntent.md) +Gets the current set of intents configured on the node / cluster + +### [Get-NetIntentAllGoalStates](Get-NetIntentAllGoalStates.md) +Looks up all intent goal state configurations available + +### [Get-NetIntentStatus](Get-NetIntentStatus.md) +Displays consolidated status of all the intent configurations for a node or across multiple nodes in case of a cluster. + +### [New-NetIntentAdapterPropertyOverrides](New-NetIntentAdapterPropertyOverrides.md) +Creates a new instance of AdapterPropertyOverrides which can be used to supply granular values to `Set-NetIntent`. + +### [New-NetIntentAdapterRssOverrides](New-NetIntentAdapterRssOverrides.md) +Creates a new instance of Rss overrides which can be used to supply granular values to `Set-NetIntent`. + +### [New-NetIntentGlobalClusterOverrides](New-NetIntentGlobalClusterOverrides.md) +Creates a new instance of ClusterSettings which can be used to supply granular values to `Add-NetIntent` and `Set-NetIntent`. + +### [New-NetIntentGlobalProxyOverrides](New-NetIntentGlobalProxyOverrides.md) +{{ Fill in the Synopsis }} + +### [New-NetIntentQoSPolicyOverrides](New-NetIntentQoSPolicyOverrides.md) +Creates a new instance of **QoSPolicyOverrides** which can be used to supply granular values to `Set-NetIntent` + +### [New-NetIntentSiteOverrides](New-NetIntentSiteOverrides.md) +Creates a new instance of SiteConfiguration which can be used to supply granular values to `Set-NetIntent`. + +### [New-NetIntentStorageOverrides](New-NetIntentStorageOverrides.md) +Creates a new instance of **NetAdapterStorageOverride** which can be used to supply granular values to `Set-NetIntent`. + +### [New-NetIntentSwitchConfigurationOverrides](New-NetIntentSwitchConfigurationOverrides.md) +Creates a new instance of **SwitchConfigurationOverride** which can be used to supply granular values to `Set-NetIntent`. + +### [Remove-NetIntent](Remove-NetIntent.md) +Removes the requested net intent. + +### [Set-NetIntent](Set-NetIntent.md) +Allows provisioning of override values for given intents + +### [Set-NetIntentRetryState](Set-NetIntentRetryState.md) +Changes the provisioning state of the goal state for an intent on a given host. + +### [Set-NetIntentTracing](Set-NetIntentTracing.md) +Starts and stops Atc tracing sessions on the host + +### [Start-NetworkAtc](Start-NetworkAtc.md) +Starts the Atc Service on all hosts for a cluster or a given single node. + +### [Stop-NetworkAtc](Stop-NetworkAtc.md) +Stops the Atc Service on all hosts for a cluster or a given single node. + +### [Update-NetIntentAdapter](Update-NetIntentAdapter.md) +{{ Fill in the Synopsis }} + +### [Update-NetIntentType](Update-NetIntentType.md) +{{ Fill in the Synopsis }} + +### [Update-NetworkATC](Update-NetworkATC.md) +{{ Fill in the Synopsis }} diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterPropertyOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterPropertyOverrides.md new file mode 100644 index 0000000000..059903a9e9 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterPropertyOverrides.md @@ -0,0 +1,574 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentadapterpropertyoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentAdapterPropertyOverrides +--- + +# New-NetIntentAdapterPropertyOverrides + +## SYNOPSIS + +Creates a new instance of AdapterPropertyOverrides which can be used to supply granular values to +`Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentAdapterPropertyOverrides [-EncapsulatedPacketTaskOffload ] + [-EncapsulatedPacketTaskOffloadNvgre ] [-EncapsulatedPacketTaskOffloadVxlan ] + [-FlowControl ] [-InterruptModeration ] [-IPChecksumOffloadIPv4 ] + [-JumboPacket ] [-LsoV2IPv4 ] [-LsoV2IPv6 ] [-NetworkDirect ] + [-NetworkDirectTechnology ] [-NumaNodeId ] [-PacketDirect ] + [-PriorityVLANTag ] [-PtpHardwareTimestamp ] [-QOS ] [-QosOffload ] + [-ReceiveBuffers ] [-RscIPv4 ] [-RscIPv6 ] [-RssOnHostVPorts ] + [-Sriov ] [-TCPUDPChecksumOffloadIPv4 ] [-TCPUDPChecksumOffloadIPv6 ] + [-UDPChecksumOffloadIPv4 ] [-UDPChecksumOffloadIPv6 ] [-TransmitBuffers ] + [-UsoIPv4 ] [-UsoIPv6 ] [-VMQ ] [-VxlanUDPPortNumber ] + [-VlanID ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -EncapsulatedPacketTaskOffload + +{{ Fill EncapsulatedPacketTaskOffload Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncapsulatedPacketTaskOffloadNvgre + +{{ Fill EncapsulatedPacketTaskOffloadNvgre Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EncapsulatedPacketTaskOffloadVxlan + +{{ Fill EncapsulatedPacketTaskOffloadVxlan Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FlowControl + +{{ Fill FlowControl Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InterruptModeration + +{{ Fill InterruptModeration Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IPChecksumOffloadIPv4 + +{{ Fill IPChecksumOffloadIPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JumboPacket + +{{ Fill JumboPacket Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LsoV2IPv4 + +{{ Fill LsoV2IPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LsoV2IPv6 + +{{ Fill LsoV2IPv6 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkDirect + +{{ Fill NetworkDirect Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetworkDirectTechnology + +{{ Fill NetworkDirectTechnology Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NumaNodeId + +{{ Fill NumaNodeId Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PacketDirect + +{{ Fill PacketDirect Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PriorityVLANTag + +{{ Fill PriorityVLANTag Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PtpHardwareTimestamp + +{{ Fill PtpHardwareTimestamp Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QOS + +{{ Fill QOS Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QosOffload + +{{ Fill QosOffload Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReceiveBuffers + +{{ Fill ReceiveBuffers Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RscIPv4 + +{{ Fill RscIPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RscIPv6 + +{{ Fill RscIPv6 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RssOnHostVPorts + +{{ Fill RssOnHostVPorts Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sriov + +{{ Fill Sriov Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TCPUDPChecksumOffloadIPv4 + +{{ Fill TCPUDPChecksumOffloadIPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TCPUDPChecksumOffloadIPv6 + +{{ Fill TCPUDPChecksumOffloadIPv6 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TransmitBuffers + +{{ Fill TransmitBuffers Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UDPChecksumOffloadIPv4 + +{{ Fill UDPChecksumOffloadIPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UDPChecksumOffloadIPv6 + +{{ Fill UDPChecksumOffloadIPv6 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UsoIPv4 + +{{ Fill UsoIPv4 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UsoIPv6 + +{{ Fill UsoIPv6 Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VlanID + +{{ Fill VlanID Description }} + +```yaml +Type: System.UInt16 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VMQ + +{{ Fill VMQ Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VxlanUDPPortNumber + +{{ Fill VxlanUDPPortNumber Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterRssOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterRssOverrides.md new file mode 100644 index 0000000000..ca7d970261 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentAdapterRssOverrides.md @@ -0,0 +1,165 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentadapterrssoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentAdapterRssOverrides +--- + +# New-NetIntentAdapterRssOverrides + +## SYNOPSIS +Creates a new instance of Rss overrides which can be used to supply granular values to +`Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentAdapterRssOverrides [-RssEnabled ] [-BaseProcessorGroup ] + [-BaseProcessorNumber ] [-MaxProcessorGroup ] [-MaxProcessorNumber ] + [-MaxProcessors ] [-Profile ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BaseProcessorGroup + +{{ Fill BaseProcessorGroup Description }} + +```yaml +Type: System.UInt16 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BaseProcessorNumber + +{{ Fill BaseProcessorNumber Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxProcessorGroup + +{{ Fill MaxProcessorGroup Description }} + +```yaml +Type: System.UInt16 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxProcessorNumber + +{{ Fill MaxProcessorNumber Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxProcessors + +{{ Fill MaxProcessors Description }} + +```yaml +Type: System.UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Profile + +{{ Fill Profile Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RssEnabled + +{{ Fill RssEnabled Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalClusterOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalClusterOverrides.md new file mode 100644 index 0000000000..af6067ab20 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalClusterOverrides.md @@ -0,0 +1,151 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentglobalclusteroverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentGlobalClusterOverrides +--- + +# New-NetIntentGlobalClusterOverrides + +## SYNOPSIS +Creates a new instance of ClusterSettings which can be used to supply granular values to +`Add-NetIntent` and `Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentGlobalClusterOverrides [[-EnableNetworkNaming] ] + [[-EnableLiveMigrationNetworkSelection] ] + [[-EnableVirtualMachineMigrationPerformanceSelection] ] + [[-VirtualMachineMigrationPerformanceOption] ] [[-MaximumVirtualMachineMigrations] ] + [[-MaximumSMBMigrationBandwidthInGbps] ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -EnableLiveMigrationNetworkSelection + +{{ Fill EnableLiveMigrationNetworkSelection Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableNetworkNaming + +{{ Fill EnableNetworkNaming Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableVirtualMachineMigrationPerformanceSelection + +{{ Fill EnableVirtualMachineMigrationPerformanceSelection Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaximumSMBMigrationBandwidthInGbps + +{{ Fill MaximumSMBMigrationBandwidthInGbps Description }} + +```yaml +Type: System.UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaximumVirtualMachineMigrations + +{{ Fill MaximumVirtualMachineMigrations Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -VirtualMachineMigrationPerformanceOption + +{{ Fill VirtualMachineMigrationPerformanceOption Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalProxyOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalProxyOverrides.md new file mode 100644 index 0000000000..9165d866d6 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentGlobalProxyOverrides.md @@ -0,0 +1,127 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentglobalproxyoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentGlobalProxyOverrides +--- + +# New-NetIntentGlobalProxyOverrides + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### Default (Default) + +``` +New-NetIntentGlobalProxyOverrides -ProxyServer [-ProxyBypass ] [-AutoDetect] + [] +``` + +### AutoDetect + +``` +New-NetIntentGlobalProxyOverrides [-AutoDetect] -AutoConfigUrl [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AutoConfigUrl + +{{ Fill AutoConfigUrl Description }} + +```yaml +Type: System.String +Parameter Sets: AutoDetect +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AutoDetect + +{{ Fill AutoDetect Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyBypass + +{{ Fill ProxyBypass Description }} + +```yaml +Type: System.String +Parameter Sets: Default +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyServer + +{{ Fill ProxyServer Description }} + +```yaml +Type: System.String +Parameter Sets: Default +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentQoSPolicyOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentQoSPolicyOverrides.md new file mode 100644 index 0000000000..550132bb43 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentQoSPolicyOverrides.md @@ -0,0 +1,134 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentqospolicyoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentQoSPolicyOverrides +--- + +# New-NetIntentQoSPolicyOverrides + +## SYNOPSIS + +Creates a new instance of **QoSPolicyOverrides** which can be used to supply granular values to +`Set-NetIntent` + +## SYNTAX + +``` +New-NetIntentQoSPolicyOverrides [-PriorityValue8021Action_SMB ] + [-PriorityValue8021Action_Cluster ] [-BandwidthPercentage_SMB ] + [-BandwidthPercentage_Cluster ] [-NetDirectPortMatchCondition ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BandwidthPercentage_Cluster + +{{ Fill BandwidthPercentage_Cluster Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BandwidthPercentage_SMB + +{{ Fill BandwidthPercentage_SMB Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NetDirectPortMatchCondition + +{{ Fill NetDirectPortMatchCondition Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PriorityValue8021Action_Cluster + +{{ Fill PriorityValue8021Action_Cluster Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PriorityValue8021Action_SMB + +{{ Fill PriorityValue8021Action_SMB Description }} + +```yaml +Type: System.Byte +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentSiteOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentSiteOverrides.md new file mode 100644 index 0000000000..5d65b25a06 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentSiteOverrides.md @@ -0,0 +1,117 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentsiteoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentSiteOverrides +--- + +# New-NetIntentSiteOverrides + +## SYNOPSIS + +Creates a new instance of SiteConfiguration which can be used to supply granular values to +`Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentSiteOverrides [[-StorageVLAN] ] [[-StretchVLAN] ] + [[-ManagementVLAN] ] [[-Name] ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ManagementVLAN + +{{ Fill ManagementVLAN Description }} + +```yaml +Type: System.UInt16 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageVLAN + +{{ Fill StorageVLAN Description }} + +```yaml +Type: System.UInt16[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StretchVLAN + +{{ Fill StretchVLAN Description }} + +```yaml +Type: System.UInt16[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentStorageOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentStorageOverrides.md new file mode 100644 index 0000000000..257e0e6862 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentStorageOverrides.md @@ -0,0 +1,68 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentstorageoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentStorageOverrides +--- + +# New-NetIntentStorageOverrides + +## SYNOPSIS + +Creates a new instance of **NetAdapterStorageOverride** which can be used to supply granular values +to `Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentStorageOverrides [-EnableAutomaticIPGeneration ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -EnableAutomaticIPGeneration + +{{ Fill EnableAutomaticIPGeneration Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/New-NetIntentSwitchConfigurationOverrides.md b/docset/winserver2025-ps/NetworkATC/New-NetIntentSwitchConfigurationOverrides.md new file mode 100644 index 0000000000..c854f9d1ed --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/New-NetIntentSwitchConfigurationOverrides.md @@ -0,0 +1,164 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/new-netintentswitchconfigurationoverrides?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: New-NetIntentSwitchConfigurationOverrides +--- + +# New-NetIntentSwitchConfigurationOverrides + +## SYNOPSIS + +Creates a new instance of **SwitchConfigurationOverride** which can be used to supply granular +values to `Set-NetIntent`. + +## SYNTAX + +``` +New-NetIntentSwitchConfigurationOverrides [-EnableSoftwareRsc ] + [-DefaultQueueVrssMaxQueuePairs ] [-DefaultQueueVrssMinQueuePairs ] + [-DefaultQueueVrssQueueSchedulingMode ] [-EnableIov ] + [-EnableEmbeddedTeaming ] [-LoadBalancingAlgorithm ] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -DefaultQueueVrssMaxQueuePairs + +{{ Fill DefaultQueueVrssMaxQueuePairs Description }} + +```yaml +Type: System.UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultQueueVrssMinQueuePairs + +{{ Fill DefaultQueueVrssMinQueuePairs Description }} + +```yaml +Type: System.UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultQueueVrssQueueSchedulingMode + +{{ Fill DefaultQueueVrssQueueSchedulingMode Description }} + +```yaml +Type: System.UInt32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableEmbeddedTeaming + +{{ Fill EnableEmbeddedTeaming Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableIov + +{{ Fill EnableIov Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableSoftwareRsc + +{{ Fill EnableSoftwareRsc Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LoadBalancingAlgorithm + +{{ Fill LoadBalancingAlgorithm Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Remove-NetIntent.md b/docset/winserver2025-ps/NetworkATC/Remove-NetIntent.md new file mode 100644 index 0000000000..a5433e463d --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Remove-NetIntent.md @@ -0,0 +1,153 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/remove-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Remove-NetIntent +--- + +# Remove-NetIntent + +## SYNOPSIS + +Removes the requested net intent. + +## SYNTAX + +### ComputerName (Default) + +``` +Remove-NetIntent [-Name] [[-ComputerName] ] [-SkipServiceStop ] + [] +``` + +### Cluster + +``` +Remove-NetIntent [-Name] [-ClusterName] [-SkipServiceStop ] + [] +``` + +### Global + +``` +Remove-NetIntent [-GlobalOverrides] [-SkipServiceStop ] [] +``` + +## DESCRIPTION + +This command removes the given Intent. + +If the a **ClusterName** is specified, then the removal would impact all the nodes on the given +cluster. Otherwise, only net intents for a given node will be removed. + +`Remove-NetIntent` doesn't remove the provisioning on the target hosts. The device administrator +should remove any old intent configuration from the node manually. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: Global +Aliases: + +Required: False +Position: 2 +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipServiceStop + +{{ Fill SkipServiceStop Description }} + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: True +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Set-NetIntent.md b/docset/winserver2025-ps/NetworkATC/Set-NetIntent.md new file mode 100644 index 0000000000..778facb8d5 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Set-NetIntent.md @@ -0,0 +1,318 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/set-netintent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetIntent +--- + +# Set-NetIntent + +## SYNOPSIS +Allows provisioning of override values for given intents + +## SYNTAX + +### ComputerName (Default) + +``` +Set-NetIntent [-Name] [[-ComputerName] ] + [-AdapterPropertyOverrides ] [-QoSPolicyOverrides ] + [-AdapterRssOverrides ] [-SwitchOverrides ] + [-StorageOverrides ] [-SiteOverrides ] + [-StorageVlans ] [-ManagementVlan ] [-Wait] [] +``` + +### Cluster + +``` +Set-NetIntent [-Name] [-ClusterName] + [-AdapterPropertyOverrides ] [-QoSPolicyOverrides ] + [-AdapterRssOverrides ] [-SwitchOverrides ] + [-StorageOverrides ] [-SiteOverrides ] + [-StorageVlans ] [-ManagementVlan ] [-Wait] [] +``` + +### Global + +``` +Set-NetIntent [[-ComputerName] ] [[-ClusterName] ] + [-GlobalProxyOverrides ] [-GlobalClusterOverrides ] [-Wait] + [] +``` + +## DESCRIPTION + +All properties inside the override objects are nullable. Only the properties which are not set will +be applied + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AdapterPropertyOverrides + +{{ Fill AdapterPropertyOverrides Description }} + +```yaml +Type: FabricManager.NetAdapterAdvancedConfiguration +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AdapterRssOverrides + +{{ Fill AdapterRssOverrides Description }} + +```yaml +Type: FabricManager.RssConfiguration +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: Global +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName, Global +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalClusterOverrides + +{{ Fill GlobalClusterOverrides Description }} + +```yaml +Type: FabricManager.ClusterSettings +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalProxyOverrides + +{{ Fill GlobalProxyOverrides Description }} + +```yaml +Type: FabricManager.WinHttpAdvProxy +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ManagementVlan + +{{ Fill ManagementVlan Description }} + +```yaml +Type: System.Int32 +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: -1 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -QoSPolicyOverrides + +{{ Fill QoSPolicyOverrides Description }} + +```yaml +Type: FabricManager.QoSPolicy +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SiteOverrides + +{{ Fill SiteOverrides Description }} + +```yaml +Type: FabricManager.SiteConfiguration[] +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageOverrides + +{{ Fill StorageOverrides Description }} + +```yaml +Type: FabricManager.NetAdapterStorageOverride +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageVlans + +{{ Fill StorageVlans Description }} + +```yaml +Type: System.Int32[] +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SwitchOverrides + +{{ Fill SwitchOverrides Description }} + +```yaml +Type: FabricManager.SwitchConfigurationOverride +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +Once the request has been successfully placed, all services will eventually detect and apply the +updated override policies. Use `Get-NetIntentStatus` to see if the current status. It may take +several minutes for policy application. + +To force update policy application, use the `Set-NetIntentRetryState` to put a given policy in a +retry pending state in which case the policy will be forcefully applied. + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Set-NetIntentRetryState.md b/docset/winserver2025-ps/NetworkATC/Set-NetIntentRetryState.md new file mode 100644 index 0000000000..513c53c33f --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Set-NetIntentRetryState.md @@ -0,0 +1,173 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/set-netintentretrystate?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetIntentRetryState +--- + +# Set-NetIntentRetryState + +## SYNOPSIS +Changes the provisioning state of the goal state for an intent on a given host. + +## SYNTAX + +### ComputerName (Default) + +``` +Set-NetIntentRetryState [-ComputerName ] -Name [-Wait] [] +``` + +### Global + +``` +Set-NetIntentRetryState [-ClusterName ] [-ComputerName ] [-NodeName ] [-Wait] + [-GlobalOverrides] [] +``` + +### Cluster + +``` +Set-NetIntentRetryState [-ClusterName ] -Name -NodeName [-Wait] [] +``` + +## DESCRIPTION + +Use this to reset failed provisioning. The state of the request is reset to `RetryRequired`. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Global, Cluster +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName, Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GlobalOverrides + +{{ Fill GlobalOverrides Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName, Cluster +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NodeName + +{{ Fill NodeName Description }} + +```yaml +Type: System.String +Parameter Sets: Global +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md b/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md new file mode 100644 index 0000000000..c0f5954e70 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Set-NetIntentTracing.md @@ -0,0 +1,75 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/set-netintenttracing?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Set-NetIntentTracing +--- + +# Set-NetIntentTracing + +## SYNOPSIS +Starts and stops Atc tracing sessions on the host + +## SYNTAX + +``` +Set-NetIntentTracing [-StopTracing] [[-ComputerName] ] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StopTracing + +{{ Fill StopTracing Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Start-NetworkAtc.md b/docset/winserver2025-ps/NetworkATC/Start-NetworkAtc.md new file mode 100644 index 0000000000..7107da2a3f --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Start-NetworkAtc.md @@ -0,0 +1,90 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/start-networkatc?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Start-NetworkAtc +--- + +# Start-NetworkAtc + +## SYNOPSIS +Starts the Atc Service on all hosts for a cluster or a given single node. + +## SYNTAX + +### ComputerName (Default) + +``` +Start-NetworkAtc [[-ComputerName] ] [] +``` + +### Cluster + +``` +Start-NetworkAtc [-ClusterName] [] +``` + +## DESCRIPTION + +Starts the Atc Service on all hosts for a cluster or a given single node. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Stop-NetworkAtc.md b/docset/winserver2025-ps/NetworkATC/Stop-NetworkAtc.md new file mode 100644 index 0000000000..be6954835d --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Stop-NetworkAtc.md @@ -0,0 +1,90 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/stop-networkatc?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Stop-NetworkAtc +--- + +# Stop-NetworkAtc + +## SYNOPSIS +Stops the Atc Service on all hosts for a cluster or a given single node. + +## SYNTAX + +### ComputerName (Default) + +``` +Stop-NetworkAtc [[-ComputerName] ] [] +``` + +### Cluster + +``` +Stop-NetworkAtc [-ClusterName] [] +``` + +## DESCRIPTION + +Stops the Atc Service on all hosts for a cluster or a given single node. + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Update-NetIntentAdapter.md b/docset/winserver2025-ps/NetworkATC/Update-NetIntentAdapter.md new file mode 100644 index 0000000000..ed01308c8c --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Update-NetIntentAdapter.md @@ -0,0 +1,135 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/update-netintentadapter?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Update-NetIntentAdapter +--- + +# Update-NetIntentAdapter + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Update-NetIntentAdapter [-AdapterName] [[-ClusterName] ] [[-ComputerName] ] + [-Name] [-Wait] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AdapterName + +{{ Fill AdapterName Description }} + +```yaml +Type: System.String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Update-NetIntentType.md b/docset/winserver2025-ps/NetworkATC/Update-NetIntentType.md new file mode 100644 index 0000000000..9b41f9e3c6 --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Update-NetIntentType.md @@ -0,0 +1,193 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/update-netintenttype?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Update-NetIntentType +--- + +# Update-NetIntentType + +## SYNOPSIS + +{{ Fill in the Synopsis }} + +## SYNTAX + +### ComputerName (Default) + +``` +Update-NetIntentType [-Name] [[-ComputerName] ] [-Wait] [-Compute] [-Management] + [-Storage] [-Stretch] [] +``` + +### Cluster + +``` +Update-NetIntentType [-Name] [-ClusterName] [-Wait] [-Compute] [-Management] + [-Storage] [-Stretch] [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ClusterName + +{{ Fill ClusterName Description }} + +```yaml +Type: System.String +Parameter Sets: Cluster +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Compute + +{{ Fill Compute Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ComputerName + +{{ Fill ComputerName Description }} + +```yaml +Type: System.String +Parameter Sets: ComputerName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Management + +{{ Fill Management Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name + +{{ Fill Name Description }} + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Storage + +{{ Fill Storage Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Stretch + +{{ Fill Stretch Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait + +{{ Fill Wait Description }} + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/NetworkATC/Update-NetworkATC.md b/docset/winserver2025-ps/NetworkATC/Update-NetworkATC.md new file mode 100644 index 0000000000..56e8770f7e --- /dev/null +++ b/docset/winserver2025-ps/NetworkATC/Update-NetworkATC.md @@ -0,0 +1,87 @@ +--- +external help file: NetworkAtc-help.xml +Module Name: NetworkATC +ms.date: 02/21/2024 +online version: https://learn.microsoft.com/powershell/module/networkatc/update-networkatc?view=windowsserver2025-ps&wt.mc_id=ps-gethelp +schema: 2.0.0 +title: Update-NetworkATC +--- + +# Update-NetworkATC + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Update-NetworkATC [[-DriftTimerInMinutes] ] [[-ConfigurationChangeInSeconds] ] + [] +``` + +## DESCRIPTION + +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 + +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ConfigurationChangeInSeconds + +{{ Fill ConfigurationChangeInSeconds Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DriftTimerInMinutes + +{{ Fill DriftTimerInMinutes Description }} + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters + +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). + +## INPUTS + +### None + +## OUTPUTS + +### System.Object + +## NOTES + +## RELATED LINKS diff --git a/docset/winserver2025-ps/OSConfiguration/Get-OSConfiguration.md b/docset/winserver2025-ps/OSConfiguration/Get-OSConfiguration.md index 360801269e..7c5f88dd2e 100644 --- a/docset/winserver2025-ps/OSConfiguration/Get-OSConfiguration.md +++ b/docset/winserver2025-ps/OSConfiguration/Get-OSConfiguration.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/get-osconfiguration?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocument.md b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocument.md index 6ae21ba606..2c1b1fa70a 100644 --- a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocument.md +++ b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocument.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/get-osconfigurationdocument?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentContent.md b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentContent.md index f14297a82c..3a574d32ff 100644 --- a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentContent.md +++ b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentContent.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/get-osconfigurationdocumentcontent?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentResult.md b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentResult.md index 395e893c63..79d07962ea 100644 --- a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentResult.md +++ b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationDocumentResult.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/get-osconfigurationdocumentresult?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationProperty.md b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationProperty.md index 3cd3f34acb..40e2efab58 100644 --- a/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationProperty.md +++ b/docset/winserver2025-ps/OSConfiguration/Get-OsConfigurationProperty.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/get-osconfigurationproperty?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/OSConfiguration.md b/docset/winserver2025-ps/OSConfiguration/OSConfiguration.md index f9af0d21ec..8e31c39935 100644 --- a/docset/winserver2025-ps/OSConfiguration/OSConfiguration.md +++ b/docset/winserver2025-ps/OSConfiguration/OSConfiguration.md @@ -3,12 +3,12 @@ Download Help Link: https://aka.ms/winsvr-2025-pshelp Help Version: 5.1.0.2025 Locale: en-US Module Guid: 1c9ff8ee-e567-4883-a532-4087d40bc5d6 -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 -title: OSConfiguration module +title: OsConfiguration module --- -# OSConfiguration Module +# OsConfiguration Module ## Description {{ Fill in the Description }} @@ -36,4 +36,3 @@ title: OSConfiguration module ### [Set-OsConfigurationProperty](Set-OsConfigurationProperty.md) {{ Fill in the Description }} - diff --git a/docset/winserver2025-ps/OSConfiguration/Remove-OsConfigurationDocument.md b/docset/winserver2025-ps/OSConfiguration/Remove-OsConfigurationDocument.md index ab091124b9..d54779951e 100644 --- a/docset/winserver2025-ps/OSConfiguration/Remove-OsConfigurationDocument.md +++ b/docset/winserver2025-ps/OSConfiguration/Remove-OsConfigurationDocument.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/remove-osconfigurationdocument?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationDocument.md b/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationDocument.md index 328ac3bd70..ffa6cb8304 100644 --- a/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationDocument.md +++ b/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationDocument.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/set-osconfigurationdocument?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0 diff --git a/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationProperty.md b/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationProperty.md index 2e0a300ae5..744b7ab550 100644 --- a/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationProperty.md +++ b/docset/winserver2025-ps/OSConfiguration/Set-OsConfigurationProperty.md @@ -1,6 +1,6 @@ --- external help file: Microsoft.Management.OsConfiguration.Commands.dll-Help.xml -Module Name: OSConfiguration +Module Name: OsConfiguration ms.date: 02/21/2024 online version: https://learn.microsoft.com/powershell/module/osconfiguration/set-osconfigurationproperty?view=windowsserver2025-ps&wt.mc_id=ps-gethelp schema: 2.0.0