Version information
This version is compatible with:
- Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x
- Puppet >= 6.0.0 < 8.0.0
Start using this module
Add this module to your Puppetfile:
mod 'dsc-graniresource', '3.7.11-0-0'
Learn more about managing modules with a PuppetfileDocumentation
graniresource
Table of Contents
Description
This is an auto-generated module, using the Puppet DSC Builder to vendor and expose the GraniResource PowerShell module's DSC resources as Puppet resources. The functionality of this module comes entirely from the vendored PowerShell resources, which are pinned at v3.7.11.0. The PowerShell module describes itself like this:
DSC Resource for Windows Configuration Management.
For information on troubleshooting to determine whether any encountered problems are with the Puppet wrapper or the DSC resource, see the troubleshooting section below.
Requirements
This module, like all auto-generated Puppetized DSC modules, relies on two important technologies in the Puppet stack: the Puppet Resource API and the puppetlabs/pwshlib Puppet module.
The Resource API provides a simplified option for writing types and providers and is responsible for how this module is structured. The Resource API ships inside of Puppet starting with version 6. While it is technically possible to add the Resource API functionality to Puppet 5.5.x, the DSC functionality has not been tested in this setup. For more information on the Resource API, review the documentation.
The module also depends on the pwshlib module. This Puppet module includes two important things: the ruby-pwsh library for running PowerShell code from ruby and the base provider for DSC resources, which this module leverages.
All of the actual work being done to call the DSC resources vendored with this module is in this file from the pwshlib module. This is important for troubleshooting and bug reporting, but doesn't impact your use of the module except that the end result will be that nothing works, as the dependency is not installed alongside this module!
Long File Path Support
Several PowerShell modules with DSC Resources end up with very long file paths once vendored, many of which exceed the 260 character limit for file paths. Luckily in Windows 10 (build 1607+), Windows Server 2016 (build 1607+), and Windows Server 2019 there is now an option for supporting long file paths transparently!
We strongly recommend enabling long file path support on any machines using this module to avoid path length issues.
You can set this value using the Puppet registry_value
resource:
registry_value { 'HKLM\System\CurrentControlSet\Control\FileSystem\LongPathsEnabled':
ensure => 'present',
data => [1],
provider => 'registry',
type => 'dword',
}
You can also set this value outside of Puppet by following the Microsoft documentation.
Usage
You can specify any of the DSC resources from this module like a normal Puppet resource in your manifests. The examples below use DSC resources from from the PowerShellGet repository, regardless of what module you're looking at here; the syntax, not the specifics, is what's important.
For reference documentation about the DSC resources exposed in this module, see the Reference Forge tab, or the REFERENCE.md file.
# Include a meaningful title for your resource declaration
dsc_psrepository { 'Add team module repo':
dsc_name => 'foo',
dsc_ensure => present,
# This location is nonsense, can be any valid folder on your
# machine or in a share, any location the SourceLocation param
# for the DSC resource will accept.
dsc_sourcelocation => 'C:\Program Files',
# You must always pass an enum fully lower-cased;
# Puppet is case sensitive even when PowerShell isn't
dsc_installationpolicy => untrusted,
}
dsc_psrepository { 'Trust public gallery':
dsc_name => 'PSGallery',
dsc_ensure => present,
dsc_installationpolicy => trusted,
}
dsc_psmodule { 'Make Ruby manageable via uru':
dsc_name => 'RubyInstaller',
dsc_ensure => present,
}
Credentials
Credentials are always specified as a hash of the username and password for the account. The password must use the Puppet Sensitive type; this ensures that logs and reports redact the password, displaying it instead as <Sensitive [value redacted]>.
dsc_psrepository { 'PowerShell Gallery':
dsc_name => 'psgAllery',
dsc_installationpolicy => 'Trusted',
dsc_psdscrunascredential => {
user => 'apple',
password => Sensitive('foobar'),
},
}
Class-Based Resources
Class-based DSC Resources can be used like any other DSC Resource in this module, with one important note:
Due to a bug in calling class-based DSC Resources by path instead of module name, each call to Invoke-DscResource
needs to temporarily munge the system-level environment variable for PSModulePath
;
the variable is reset prior to the end of each invocation.
CIM Instances
Because the CIM instances for DSC resources are fully mapped, the types actually explain fairly precisely what the shape of each CIM instance has to be - and, moreover, the type definition means that you get checking at catalog compile time. Puppet parses CIM instances are structured hashes (or arrays of structured hashes) that explicitly declare their keys and the valid types of values for each key.
So, for the dsc_accesscontrolentry
property of the dsc_ntfsaccessentry
type, which has a MOF type of NTFSAccessControlList[]
, Puppet defines the CIM instance as:
Array[Struct[{
accesscontrolentry => Array[Struct[{
accesscontroltype => Enum['Allow', 'Deny'],
inheritance => Enum['This folder only', 'This folder subfolders and files', 'This folder and subfolders', 'This folder and files', 'Subfolders and files only', 'Subfolders only', 'Files only'],
ensure => Enum['Present', 'Absent'],
cim_instance_type => 'NTFSAccessControlEntry',
filesystemrights => Array[Enum['AppendData', 'ChangePermissions', 'CreateDirectories', 'CreateFiles', 'Delete', 'DeleteSubdirectoriesAndFiles', 'ExecuteFile', 'FullControl', 'ListDirectory', 'Modify', 'Read', 'ReadAndExecute', 'ReadAttributes', 'ReadData', 'ReadExtendedAttributes', 'ReadPermissions', 'Synchronize', 'TakeOwnership', 'Traverse', 'Write', 'WriteAttributes', 'WriteData', 'WriteExtendedAttributes']]
}]],
forceprincipal => Optional[Boolean],
principal => Optional[String],
}]]
A valid example of that in a puppet manifest looks like this:
dsc_accesscontrollist => [
{
accesscontrolentry => [
{
accesscontroltype => 'Allow',
inheritance => 'This folder only',
ensure => 'Present',
filesystemrights => 'ChangePermissions',
cim_instance_type => 'NTFSAccessControlEntry',
},
],
principal => 'veryRealUserName',
},
]
For more information about using a built module, check out our narrative documentation.
Properties
Note that the only properties specified in a resource declaration which are passed to Invoke-Dsc are all prepended with dsc.
If a property does _not start with dsc_ it is used to control how Puppet interacts with DSC/other Puppet resources - for example,
specifying a unique name for the resource for Puppet to distinguish between declarations or Puppet metaparameters (notifies,
before, etc).
Validation Mode
By default, these resources use the property validation mode, which checks whether or not the resource is in the desired state the same way most Puppet resources are validated;
by comparing the properties returned from the system with those specified in the manifest.
Sometimes, however, this is insufficient;
many DSC Resources return data that does not compare properly to the desired state (some are missing properties, others are malformed, some simply cannot be strictly compared).
In these cases, you can set the validation mode to resource
, which falls back on calling Invoke-DscResource
with the Test
method and trusts that result.
When using the resource
validation mode, the resource is tested once and will then treat all properties of that resource as in sync (if the result returned true
) or not in sync.
This loses the granularity of change reporting for the resource but prevents flapping and unexpected behavior.
# This will flap because the DSC resource never returns name in SecurityPolicyDsc v2.10.0.0
dsc_securityoption { 'Enforce Anonoymous SID Translation':
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
# This will idempotently apply
dsc_psrepository { 'PowerShell Gallery':
validation_mode => 'resource',
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
It is important to note that this feature is only supported with a version of puppetlabs-pwshlib
equal to or higher than 0.9.0
, in which the supporting code for the DSC Base Provider to implement custom insync was shipped.
Finally, while this module's metadata says that the supported Puppet versions are 6.0.0 and up, the implementation of the validation_mode
parameter relies on the custom_insync
feature of the Puppet Resource API.
The custom_insync
feature first shipped in the puppet-resource_api
version 1.8.14
, which itself is only included in Puppet versions equal to or newer than 6.23.0
and 7.8.0
for the 6x and 7x platforms respectively.
Using this module against older Puppet versions will result in a warning (example below) and only use the default property-by-property change reporting, regardless of the setting of validation_mode
.
Warning: Unknown feature detected: ["custom_insync"]
Troubleshooting
In general, there are three broad categories of problems:
- Problems with the way the underlying DSC resource works.
- Problems with the type definition, where you can't specify a valid set of properties for the DSC resource
- Problems with calling the underlying DSC resource - the parameters aren't being passed correctly or the resource can't be found
Unfortunately, problems with the way the underlying DSC resource works are something we can't help directly with. You'll need to file an issue with the upstream maintainers for the PowerShell module.
Problems with the type definition are when a value that should be valid according to the DSC resource's documentation and code is not accepted by the Puppet wrapper. If and when you run across one of these, please file an issue with the Puppet DSC Builder; this is where the conversion happens and once we know of a problem we can fix it and regenerate the Puppet modules. To help us identify the issue, please specify the DSC module, version, resource, property and values that are giving you issues. Once a fix is available we will regenerate and release updated versions of this Puppet wrapper.
Problems with calling the underlying DSC resource become apparent by comparing <value passed in in puppet>
with <value received by DSC>
.
In this case, please file an issue with the puppetlabs/pwshlib module, which is where the DSC base provider actually lives.
We'll investigate and prioritize a fix and update the puppetlabs/pwshlib module.
Updating to the pwshlib version with the fix will immediately take advantage of the improved functionality without waiting for this module to be reconverted and published.
For specific information on troubleshooting a generated module, check the troubleshooting guide for the puppet.dsc module.
Known Limitations
Currently, because of the way Puppet caches files on agents, use of the legacy puppetlabs-dsc
module is not compatible with this or any auto-generated DSC module.
Inclusion of both will lead to pluginsync conflicts.
Right now, if you have the same version of a PowerShell module with class-based DSC Resources in your PSModulePath as vendored in a Puppetized DSC Module, you cannot use those class-based DSC Resources from inside of Puppet due to a bug in DSC which prevents using a module by path reference instead of name. Instead, DSC will see that there are two DSC Resources for the same module and version and then error out.
Configuring the LCM
In order for a Puppetized DSC module to function, the DSC Local Configuration Manager (LCM) RefreshMode
must be set to either Push
or Disabled
.
The default value for RefreshMode
in WMF 5.0 and WMF 5.1 is Push
- so if it has not been set to anything else then there is no action needed on your part.
However if the value of the LCM has been set to anything other than Push
then the module will not function and so the value must either be changed back or disabled.
The Puppetized DSC modules use the Invoke-DscResource
cmdlet to invoke DSC Resources of the target machine.
If the RefreshMode
is set to Pull
, DSC Resources will only run from a DSC Pull Server - in this setting DSC does not allow any DSC Resources to be run interactively on the host.
Module Installation
If you're using this module with Puppet Enterprise and Code Manager, everything should "just work" - no errors or issues acquiring and deploying this or any Puppetized DSC module to nodes.
Unfortunately, due a bug in minitar which prevents it from unpacking archives with long file paths, both r10k
and serverless Puppet (via puppet module install
) methods of installing modules with long path names will fail.
In short, minitar is unable to unpack modules that contain long file paths (though it can create them).
As a workaround, you can retrieve DSC modules from the forge via PowerShell and 7zip:
$ModuleAuthor = 'dsc'
$ModuleName = 'xremotedesktopsessionhost'
$ModuleVersion = '2.0.0-0-1'
$ArchiveFileName = "$ModuleAuthor-$ModuleName-$ModuleVersion.tar.gz"
$DownloadUri = "https://forge.puppet.com/v3/files/$ArchiveFileName"
# Download the module tar.gz to the current directory
Invoke-WebRequest -Uri $DownloadUri -OutFile ./$ArchiveFileName
# Use 7zip to extract the module to the current directory
& 7z x $ArchiveFileName -so | & 7z x -aoa -si -ttar
Reference
Table of Contents
Resource types
dsc_cacl
: The DSC cACL resource type. Automatically generated from version 3.7.11.0dsc_ccredentialmanager
: The DSC cCredentialManager resource type. Automatically generated from version 3.7.11.0dsc_cdomainjoin
: The DSC cDomainJoin resource type. Automatically generated from version 3.7.11.0dsc_cdotnetframework
: The DSC cDotNetFramework resource type. Automatically generated from version 3.7.11.0dsc_cdownload
: The DSC cDownload resource type. Automatically generated from version 3.7.11.0dsc_cgithubapicontent
: The DSC cGitHubApiContent resource type. Automatically generated from version 3.7.11.0dsc_chostsfile
: The DSC cHostsFile resource type. Automatically generated from version 3.7.11.0dsc_cinheritacl
: The DSC cInheritACL resource type. Automatically generated from version 3.7.11.0dsc_cpendingreboot
: The DSC cPendingReboot resource type. Automatically generated from version 3.7.11.0dsc_cpfximport
: The DSC cPfxImport resource type. Automatically generated from version 3.7.11.0dsc_cregistrykey
: The DSC cRegistryKey resource type. Automatically generated from version 3.7.11.0dsc_cs3content
: The DSC cS3Content resource type. Automatically generated from version 3.7.11.0dsc_cscheduletask
: The DSC cScheduleTask resource type. Automatically generated from version 3.7.11.0dsc_cscheduletasklog
: The DSC cScheduleTaskLog resource type. Automatically generated from version 3.7.11.0dsc_cscriptonosversion
: The DSC cScriptOnOSVersion resource type. Automatically generated from version 3.7.11.0dsc_csymboliclink
: The DSC cSymbolicLink resource type. Automatically generated from version 3.7.11.0dsc_ctcpackfrequency
: The DSC cTCPAckFrequency resource type. Automatically generated from version 3.7.11.0dsc_ctopshelf
: The DSC cTopShelf resource type. Automatically generated from version 3.7.11.0dsc_cwebpi
: The DSC cWebPI resource type. Automatically generated from version 3.7.11.0dsc_cwebpilauncher
: The DSC resource type. Automatically generated from version 3.7.11.0
Resource types
dsc_cacl
The DSC cACL resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cacl
type.
dsc_access
Data type: Optional[Enum['Allow', 'Deny']]
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
dsc_inherit
Data type: Optional[Boolean]
dsc_recurse
Data type: Optional[Boolean]
dsc_rights
Data type: Optional[Enum['ReadAndExecute', 'Modify', 'FullControl']]
dsc_strict
Data type: Optional[Boolean]
Parameters
The following parameters are available in the dsc_cacl
type.
dsc_account
namevar
Data type: String
dsc_path
namevar
Data type: String
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_ccredentialmanager
The DSC cCredentialManager resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_ccredentialmanager
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Ensure Target entry is Present or Absent.
dsc_target
Data type: String
Credential Manager entry identifier link to Credential.
Parameters
The following parameters are available in the dsc_ccredentialmanager
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Credential to save.
dsc_instanceidentifier
namevar
Data type: String
Configuration Instance Identifier to handle same Target with multiple PsDscRunCredential.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cdomainjoin
The DSC cDomainJoin resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cdomainjoin
type.
dsc_domainname
Data type: Optional[String]
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Describe Status is in desired state.
dsc_name
Data type: Optional[String]
dsc_restart
Data type: Optional[Boolean]
dsc_workgroupname
Data type: Optional[String]
Parameters
The following parameters are available in the dsc_cdomainjoin
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_identifier
namevar
Data type: String
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_unjoincredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cdotnetframework
The DSC cDotNetFramework resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cdotnetframework
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Describe going to install DotnetFramework or not.
dsc_installerpath
Data type: Optional[String]
Describe Path to the offline installation file. It only use for installation.
dsc_logpath
Data type: Optional[String]
Describe installation log file|Directory Path.
dsc_norestart
Data type: Optional[Boolean]
Describe restart after install/uninstall.
Parameters
The following parameters are available in the dsc_cdotnetframework
type.
dsc_kb
namevar
Data type: String
Describe FotNetFramework KB.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cdownload
The DSC cDownload resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cdownload
type.
dsc_allowredirect
Data type: Optional[Boolean]
Specify if you want to control Redirect.
dsc_cachelocation
Data type: Optional[String]
Specify CacheLocation to hold your last configuration result.
dsc_contenttype
Data type: Optional[String]
Specify ContentType for Web Request.
dsc_destinationpath
Data type: String
File Path to output Donwloaded item.
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Describe File is exist on DestinationPath or not.
dsc_header
Data type: Optional[Struct[{ key => Optional[String], value => Optional[String], }]]
Specify Headers for Web Request.
dsc_useragent
Data type: Optional[String]
Specify User-Agent for Web Request
Parameters
The following parameters are available in the dsc_cdownload
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Specify Basic Authorization Credential Web Request.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_uri
namevar
Data type: String
Request Uri to obtain file.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cgithubapicontent
The DSC cGitHubApiContent resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cgithubapicontent
type.
dsc_allowredirect
Data type: Optional[Boolean]
Specify if you want to control Redirect. Default is true as Github requires. refer : https://developer.github.com/v3/#http-redirects
dsc_branch
Data type: Optional[String]
Specify Branch name for the content. Default is master. refer : https://developer.github.com/v3/repos/contents/
dsc_cachelocation
Data type: Optional[String]
Specify CacheLocation to hold your last configuration result.
dsc_contentpath
Data type: String
Path to the content. If README.md under root, then just README.md. Make sure path is case-sensitive. refer : https://developer.github.com/v3/repos/contents/
dsc_contenttype
Data type: Optional[Enum['application/json', 'application/vnd.github+json', 'application/vnd.github.v3.raw', 'application/vnd.github.v3.html']]
Select Media Type to access GitHub API Default is application/json. You need change for each content type. refer : https://developer.github.com/v3/media/
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Describe File is exist on DestinationPath or not.
dsc_header
Data type: Optional[Struct[{ key => Optional[String], value => Optional[String], }]]
Specify Headers for Web Request. if you need any 'if' or other header control. refer : https://developer.github.com/v3/
dsc_repository
Data type: String
GitHub Repository name to access. refer : https://developer.github.com/v3/repos/contents/
dsc_repositoryowner
Data type: String
GitHub Repository Owner Name which content owns. refer : https://developer.github.com/v3/repos/contents/
dsc_useragent
Data type: Optional[String]
Specify User-Agent for Web Request. Default is powerShell user-agent default. refer : https://developer.github.com/v3/#user-agent-required
Parameters
The following parameters are available in the dsc_cgithubapicontent
type.
dsc_destinationpath
namevar
Data type: String
File Path to output Donwloaded item.
dsc_oauth2token
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
OAuth2 access token for GitHub Api Authorization. UserName value will not been in use. refer : https://developer.github.com/v3/#authentication
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_chostsfile
The DSC cHostsFile resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_chostsfile
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Ensure Host Entry is Present or Absent.
dsc_ipaddress
Data type: String
IP Address for reference.
dsc_reference
Data type: Optional[Enum['DnsServer', 'StaticIp']]
Reference type for DnsServer. When Reference is DnsServer, resolve DNS with selected server. When Reference is StaticIp, no resolve and just added IP Address
Parameters
The following parameters are available in the dsc_chostsfile
type.
dsc_hostname
namevar
Data type: String
HostName to be redirected.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cinheritacl
The DSC cInheritACL resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cinheritacl
type.
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
dsc_isprotected
Data type: Boolean
dsc_preserveinheritance
Data type: Optional[Boolean]
Parameters
The following parameters are available in the dsc_cinheritacl
type.
dsc_path
namevar
Data type: String
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cpendingreboot
The DSC cPendingReboot resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cpendingreboot
type.
dsc_ccmclientsdk
Data type: Optional[Boolean]
dsc_componentbasedservicing
Data type: Optional[Boolean]
Reboot required for Windows Component.
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Describe desired state or not.
dsc_pendingcomputerrename
Data type: Optional[Boolean]
Reboot required for ComputerName change.
dsc_pendingfilerename
Data type: Optional[Boolean]
Reboot required for File Name update.
dsc_triggerccmclientsdk
Data type: Optional[Boolean]
Trigger reboot with CcmClient SDK.
dsc_triggercomponentbasedservicing
Data type: Optional[Boolean]
Trigger reboot with Component Based Service.
dsc_triggerpendingcomputerrename
Data type: Optional[Boolean]
Trigger reboot with Pending Computer Rename.
dsc_triggerpendingfilerename
Data type: Optional[Boolean]
Trigger reboot with Pending FileRename.
dsc_triggerwindowsupdate
Data type: Optional[Boolean]
Trigger reboot with Windows Update.
dsc_waittimesec
Data type: Optional[Integer[0, 4294967295]]
Describe wait sec before reboot.
dsc_whatif
Data type: Optional[Boolean]
WhatIf for Reboot execution.
dsc_windowsupdate
Data type: Optional[Boolean]
Reboot required for Windows Update.
Parameters
The following parameters are available in the dsc_cpendingreboot
type.
dsc_force
Data type: Optional[Boolean]
Force flag for Reboot
dsc_name
namevar
Data type: String
Describe Identifier Key name.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cpfximport
The DSC cPfxImport resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cpfximport
type.
dsc_certstorelocation
Data type: Optional[Enum['LocalMachine']]
Certification Store Location.
dsc_certstorename
Data type: Optional[Enum['AddressBook', 'AuthRoot', 'CertificateAuthority', 'Disallowed', 'My', 'Root', 'TrustedPeople', 'TrustedPublisher']]
Certification Store Name
dsc_ensure
Data type: Enum['Present', 'Absent']
Determine pfx to be import or not.
dsc_pfxfilepath
Data type: Optional[String]
File path to the pfx.
Parameters
The following parameters are available in the dsc_cpfximport
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Specify Password to import pfx.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_thumbprint
namevar
Data type: String
Thumbprint of target pfx.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cregistrykey
The DSC cRegistryKey resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cregistrykey
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Ensure Key exists or not-exists
Parameters
The following parameters are available in the dsc_cregistrykey
type.
dsc_key
namevar
Data type: String
SubKey Name Path create.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cs3content
The DSC cS3Content resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cs3content
type.
dsc_checksum
Data type: Optional[Enum['FileHash', 'FileName']]
Checksum to compare S3Object and Local Content. Default is FileHash.
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Describe File is exist on DestinationPath or not.
dsc_key
Data type: Optional[String]
S3 Object Key which identify content. You can't use both Key and KeyPrefix at once.
dsc_postaction
Data type: Optional[String]
Post Action of Download Content. It only run when Test false.
dsc_preaction
Data type: Optional[String]
Pre Action of Download Content. It only run when Test false.
dsc_region
Data type: Optional[String]
Use when you want to override AWS Region andpoint string to handle S3bucket.
dsc_s3bucketname
Data type: String
S3 Bucket name to access.
Parameters
The following parameters are available in the dsc_cs3content
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Action execute Credential. You can ignore it if run as SYSTEM.
dsc_destinationpath
namevar
Data type: String
Path to output Donwloaded item.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cscheduletask
The DSC cScheduleTask resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cscheduletask
type.
dsc_argument
Data type: Optional[String]
dsc_atlogon
Data type: Optional[Boolean]
dsc_atlogonuserid
Data type: Optional[String]
dsc_atstartup
Data type: Optional[Boolean]
dsc_compatibility
Data type: Optional[Enum['At', 'Win8', 'Win7', 'Vista', 'V1']]
dsc_daily
Data type: Optional[Boolean]
dsc_description
Data type: Optional[String]
dsc_disable
Data type: Optional[Boolean]
dsc_ensure
Data type: Enum['Present', 'Absent']
dsc_execute
Data type: Optional[String]
dsc_executetimelimitticks
Data type: Optional[Integer[-9223372036854775808, 9223372036854775807]]
dsc_hidden
Data type: Optional[Boolean]
dsc_once
Data type: Optional[Boolean]
dsc_repetitiondurationtimespanstring
Data type: Optional[Array[String]]
dsc_repetitionintervaltimespanstring
Data type: Optional[Array[String]]
dsc_runlevel
Data type: Optional[Enum['Highest', 'Limited']]
dsc_scheduledat
Data type: Optional[Array[Timestamp]]
dsc_taskpath
Data type: Optional[String]
dsc_workingdirectory
Data type: Optional[String]
Parameters
The following parameters are available in the dsc_cscheduletask
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_taskname
namevar
Data type: String
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cscheduletasklog
The DSC cScheduleTaskLog resource type. Automatically generated from version 3.7.11.0
Parameters
The following parameters are available in the dsc_cscheduletasklog
type.
dsc_enable
namevar
Data type: Boolean
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cscriptonosversion
The DSC cScriptOnOSVersion resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cscriptonosversion
type.
dsc_ensure
Data type: Optional[Enum['Present', 'Absent']]
Ensure run on specified platform.
dsc_executeonplatform
Data type: String
Platfrom Name = OS Name.
dsc_executeonversion
Data type: String
.NET Version formatted string for OS.
dsc_setscript
Data type: Optional[String]
Set Script when run script.
dsc_testscript
Data type: Optional[String]
Test Script when run script.
dsc_when
Data type: Enum['LessThan', 'LessThanEqual', 'Equal', 'NotEqual', 'GreaterThan', 'GreaterThanEqual']
Specify version matching condition.
Parameters
The following parameters are available in the dsc_cscriptonosversion
type.
dsc_credential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Action execute Credential. You can ignore it if run as SYSTEM.
dsc_key
namevar
Data type: String
Unique key.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_csymboliclink
The DSC cSymbolicLink resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_csymboliclink
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Ensure Symbolic Link is Present or Absent.
dsc_sourcepath
Data type: String
Symbolic Link source path
Parameters
The following parameters are available in the dsc_csymboliclink
type.
dsc_destinationpath
namevar
Data type: String
Symbolic Link path.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_ctcpackfrequency
The DSC cTCPAckFrequency resource type. Automatically generated from version 3.7.11.0
Parameters
The following parameters are available in the dsc_ctcpackfrequency
type.
dsc_enable
namevar
Data type: Boolean
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_ctopshelf
The DSC cTopShelf resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_ctopshelf
type.
dsc_ensure
Data type: Enum['Present', 'Absent']
Relates to TopShelf Verbs. Ensure means install, uninstall means unistall. Only support install/uninstall as we only need these with DSC. : http://docs.topshelf-project.com/en/latest/overview/commandline.html
dsc_servicename
Data type: String
Service Name | Display Name which installed by TopShelf. This must be same as you define in TopShelf.
Parameters
The following parameters are available in the dsc_ctopshelf
type.
dsc_path
namevar
Data type: String
TopShelf Service Path.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cwebpi
The DSC cWebPI resource type. Automatically generated from version 3.7.11.0
Parameters
The following parameters are available in the dsc_cwebpi
type.
dsc_name
namevar
Data type: String
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_cwebpilauncher
The DSC resource type. Automatically generated from version 3.7.11.0
Properties
The following properties are available in the dsc_cwebpilauncher
type.
dsc_installeruri
Data type: Optional[String]
dsc_productid
Data type: Optional[String]
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
Parameters
The following parameters are available in the dsc_cwebpilauncher
type.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
Dependencies
- puppetlabs/pwshlib (>= 0.9.0 < 2.0.0)