- Learning PowerShell DSC(Second Edition)
- James Pogran
- 320字
- 2021-07-02 18:31:24
The push management model
DSC offers a push-based approach that is controlled by a user workstation initiating an execution on agents on target nodes, but there isn't a central server orchestrating things. Push management is very much an interactive process, where the user directly initiates and executes a specified configuration.
The following diagram shows the Push Deployment model:

This diagram shows the steps to perform a Push Deployment. The next section discusses the DSC workflow, where these steps will be covered, but for now, we see that a push deployment is comprised of three steps:
- Authoring a configuration file
- Compiling the file to an MOF file
- Executing the MOF on the target node
DSC operates in a push scenario when configurations are manually pushed to target nodes using the Start-DscConfiguration cmdlet. It can be executed interactively, where the configuration is executed and the status is reported back to the user as it is running. It can also be initiated in a fire and forget manner as a job on the target node, where the configuration will be executed without reporting the status back to the user directly, but is logged to the DSC event log instead.
Pushing configurations allows a great deal of flexibility. It's the primary way you will test your configurations. Run interactively with the Verbose and Wait parameter; the Start-DscConfiguration cmdlet shows you a log of every step taken by the LCM, the DSC resources it executes, and the entire DSC configuration run. A push-based approach also gives you an absolute time when the target node will have a configuration applied instead of waiting on a schedule. This is useful in server environments when servers are set up once and stay around for a long time.
This is the easiest to set up and the most flexible of the two DSC methods but is the hardest to maintain in large quantities and over the long term.
- 玩轉Scratch少兒趣味編程
- SQL Server 2012數據庫技術及應用(微課版·第5版)
- Reactive Programming with Swift
- SQL for Data Analytics
- 從0到1:HTML+CSS快速上手
- Java程序員面試算法寶典
- C#程序設計
- 數據結構案例教程(C/C++版)
- 移動互聯網軟件開發實驗指導
- 自學Python:編程基礎、科學計算及數據分析(第2版)
- Windows Phone 8 Game Development
- 深入解析Java編譯器:源碼剖析與實例詳解
- WildFly Cookbook
- C語言從入門到精通
- The Statistics and Calculus with Python Workshop