Showing results for Desired State Configuration - PowerShell Team

Jan 3, 2014
1
1

Using Event Logs to Diagnose Errors in Desired State Configuration

PowerShell Team
PowerShell Team

Windows PowerShell Desired State Configuration (DSC), just like any other Windows software, records errors and events in logs that can be viewed from the Event Viewer. However, the trick lies in effectively parsing these logs, so we know exactly why a particular operation failed. In this blog, we explain where the DSC event logs are, and how the...

PowerShellDSCDesired State Configuration
Dec 26, 2013
0
0

Holiday Gift – Desired State Configuration (DSC) Resource Kit Wave-1

PowerShell Team
PowerShell Team

Continuing with the tradition of holiday gifts to the PowerShell community, the PowerShell team has just released DSC Resource Kit Wave-1 - a set of PowerShell modules that contain DSC resources and example configurations. The various modules that are part of DSC Resource Kit Wave 1 can be found here. When DSC was introduced in PowerShell v4, we...

PowerShellDSCDesired State Configuration
Dec 9, 2013
0
0

Understanding Meta Configuration in Windows PowerShell Desired State Configuration

PowerShell Team
PowerShell Team

UPDATE 2/6/2018 - The latest information regarding LCM configuration is available in the documentation at the following link: https://docs.microsoft.com/en-us/powershell/dsc/metaconfig .......... LCM and Meta Configuration To understand the concept of Meta Configuration, first we need to know what Local Configuration Manager (LCM) is, and wha...

PowerShellDSCDesired State Configuration
Dec 5, 2013
0
0

How to Deploy and Discover Windows PowerShell Desired State Configuration Resources

PowerShell Team
PowerShell Team

A Windows PowerShell Desired State Configuration (DSC) resource contains a module file (*.psm1), an optional data file (*.psd1),and a *.schema.mof file. Details about what each of those files should look like, and how you can create those files using a DSC Resource Designer Tool, are discussed in an earlier blog post.  In this blog post, we wi...

PowerShellDSCDesired State Configuration
Nov 26, 2013
0
0

Push and Pull Configuration Modes

PowerShell Team
PowerShell Team

// bw + bsl && x + aw - ah / 2 - cw >= bsl ) { c.style.left = x + aw - ah / 2 - cw; } else { c.style.left = x + ah / 2; } if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst ) { c.style.top = y + ah / 2 - ch; } else { c.style.top = y + ah / 2; } c.style.visibility = "visible"; } } } function msoCommentHide(co...

PowerShellDSCDesired State Configuration
Nov 21, 2013
0
0

PowerShell DSC Resource for configuring Pull Server environment

PowerShell Team
PowerShell Team

UPDATE 2/6/2018 - The latest information regarding DSC Pull Service can be found in the DSC documentation using the link - https://docs.microsoft.com/en-us/powershell/dsc/pullserver .......... DSC is a PowerShell extension that is part of Windows Server 2012 R2 and Windows 8.1. DSC enables deploying and managing configuration data for so...

PowerShellDSCDesired State Configuration
Nov 19, 2013
0
0

Resource Designer Tool – A walkthrough writing a DSC resource

PowerShell Team
PowerShell Team

At the heart of Windows PowerShell Desired State Configuration are the resources. It is the resources which act behind the scenes for DSC to achieve its “make it so” philosophy. DSC ships with a number of resources in-box and you can take a look here for the complete list. However, once you get started with DSC, you may want to write your own resou...

PowerShellDSCDesired State Configuration
Nov 15, 2013
0
0

Hungry for more Windows PowerShell Desired State Configuration Resources?

PowerShell Team
PowerShell Team

Now that you understand the value and need of Windows PowerShell Desired State Configuration (DSC), and how to declaratively express the intent of machine configuration via the new configuration keyword, you might be wondering how the configuration happens. Configuration on a machine works because of DSC resources. Windows Server 2012 R2 and Window...

PowerShellDSCDesired State Configuration
Nov 5, 2013
0
0

Understanding CONFIGURATION keyword in Desired State Configuration

PowerShell Team
PowerShell Team

Desired State Configuration is a new management platform in Windows Powershell that enables devOps scenarios on Windows. It enables system administrators and devOps to configure a system declaratively, enforce the configuration and reuse configuration. One core aspect of it is the language extension for Configuration keyword in Powershell. You can...

PowerShellDSCDesired State Configuration
Nov 1, 2013
0
0

Configuration in a DevOps world – Windows PowerShell Desired State Configuration

PowerShell Team
PowerShell Team

Some background A new breed of configuration management tools has been created to manage the platforms, applications, and infrastructure of the cloud, and keep the cloud running with high availability. The need for these new tools and infrastructure comes from the increase in scale, rapid rate of change, and complexity of the cloud. But exist...

PowerShellDSCDesired State Configuration