The Publish-DscConfiguration cmdlet publishes a Windows PowerShell Desired State Configuration
(DSC) configuration document on set of computers. This cmdlet does not apply the configuration.
Configurations are applied by either the Start-DscConfiguration cmdlet when it is used with the
UseExisting parameter or when the DSC engine runs its consistency cycle. The DSC engine is also
known as the Local Configuration Manager (LCM).
This cmdlet is especially useful when fragments of multiple configuration documents are delivered.
When multiple configuration documents fragments are delivered, they overwrite the older
configuration document fragments.
Examples
Example 1: Publish a configuration to a remote computer
This command publishes a configuration to a remote computer. The user who runs the cmdlet should be
administrator on the remote computer.
Parameters
-CimSession
Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session
object, such as the output of a New-CimSession or
Get-CimSession cmdlet. The default is the current
session on the local computer.
Forces the cmdlet to finish. If the Local Configuration Manager refresh mode is set to PULL, usage
of this parameter changes it to PUSH and enables publication of the DSC configuration. Also, if a
pending DSC configuration exists, usage of this parameter overwrites that pending configuration.
Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If
this parameter is omitted or a value of 0 is entered, then Windows PowerShell calculates an
optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the
computer. The throttle limit applies only to the current cmdlet, not to the session or to the
computer.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.