├── .fixtures.yml ├── .gitattributes ├── .github ├── pull_request_template.md └── workflows │ ├── labeller.yml │ ├── release.yml │ ├── stale.yml │ └── weekly.yml ├── .gitignore ├── .pdkignore ├── .pmtignore ├── .puppet-lint.rc ├── .rspec ├── .rubocop.yml ├── .rubocop_todo.yml ├── .sync.yml ├── .travis.yml ├── .vscode └── extensions.json ├── .yardopts ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── Gemfile ├── HISTORY.md ├── LICENSE ├── NOTICE ├── README.md ├── README_BUILD.md ├── README_CENTOS6.md ├── Rakefile ├── appveyor.yml ├── docs └── images │ ├── dir_struct_import.png │ ├── dir_struct_plain.png │ └── dir_struct_psdname.png ├── dsc_resource_release_tags.yml ├── lib ├── facter │ ├── powershell_version.rb │ └── uses_win32console.rb ├── puppet │ ├── provider │ │ ├── base_dsc │ │ │ └── powershell.rb │ │ └── templates │ │ │ └── dsc │ │ │ └── invoke_dsc_resource.ps1.erb │ └── type │ │ ├── README │ │ ├── base_dsc.rb │ │ ├── dsc_accountpolicy.rb │ │ ├── dsc_adcscertificationauthority.rb │ │ ├── dsc_adcsenrollmentpolicywebservice.rb │ │ ├── dsc_adcsocspextension.rb │ │ ├── dsc_adcsonlineresponder.rb │ │ ├── dsc_adcswebenrollment.rb │ │ ├── dsc_archive.rb │ │ ├── dsc_auditpolicycsv.rb │ │ ├── dsc_auditpolicyguid.rb │ │ ├── dsc_auditpolicyoption.rb │ │ ├── dsc_auditpolicysubcategory.rb │ │ ├── dsc_certificateexport.rb │ │ ├── dsc_certificateimport.rb │ │ ├── dsc_certreq.rb │ │ ├── dsc_computer.rb │ │ ├── dsc_defaultgatewayaddress.rb │ │ ├── dsc_dfsnamespacefolder.rb │ │ ├── dsc_dfsnamespaceroot.rb │ │ ├── dsc_dfsnamespaceserverconfiguration.rb │ │ ├── dsc_dfsreplicationgroup.rb │ │ ├── dsc_dfsreplicationgroupconnection.rb │ │ ├── dsc_dfsreplicationgroupfolder.rb │ │ ├── dsc_dfsreplicationgroupmembership.rb │ │ ├── dsc_dhcppolicyoptionvalue.rb │ │ ├── dsc_dhcpreservedipoptionvalue.rb │ │ ├── dsc_dhcpscopeoptionvalue.rb │ │ ├── dsc_dhcpserveroptionvalue.rb │ │ ├── dsc_disk.rb │ │ ├── dsc_diskaccesspath.rb │ │ ├── dsc_dnsclientglobalsetting.rb │ │ ├── dsc_dnsconnectionsuffix.rb │ │ ├── dsc_dnsserveraddress.rb │ │ ├── dsc_environment.rb │ │ ├── dsc_file.rb │ │ ├── dsc_firewall.rb │ │ ├── dsc_firewallprofile.rb │ │ ├── dsc_fsrmautoquota.rb │ │ ├── dsc_fsrmclassification.rb │ │ ├── dsc_fsrmclassificationproperty.rb │ │ ├── dsc_fsrmclassificationpropertyvalue.rb │ │ ├── dsc_fsrmclassificationrule.rb │ │ ├── dsc_fsrmfilegroup.rb │ │ ├── dsc_fsrmfilescreen.rb │ │ ├── dsc_fsrmfilescreenaction.rb │ │ ├── dsc_fsrmfilescreenexception.rb │ │ ├── dsc_fsrmfilescreentemplate.rb │ │ ├── dsc_fsrmfilescreentemplateaction.rb │ │ ├── dsc_fsrmquota.rb │ │ ├── dsc_fsrmquotaaction.rb │ │ ├── dsc_fsrmquotatemplate.rb │ │ ├── dsc_fsrmquotatemplateaction.rb │ │ ├── dsc_fsrmsettings.rb │ │ ├── dsc_group.rb │ │ ├── dsc_hostsfile.rb │ │ ├── dsc_inisettingsfile.rb │ │ ├── dsc_ipaddress.rb │ │ ├── dsc_ipaddressoption.rb │ │ ├── dsc_iscsiinitiator.rb │ │ ├── dsc_iscsiservertarget.rb │ │ ├── dsc_iscsivirtualdisk.rb │ │ ├── dsc_keyvaluepairfile.rb │ │ ├── dsc_log.rb │ │ ├── dsc_mountimage.rb │ │ ├── dsc_netadapteradvancedproperty.rb │ │ ├── dsc_netadapterbinding.rb │ │ ├── dsc_netadapterlso.rb │ │ ├── dsc_netadaptername.rb │ │ ├── dsc_netadapterrdma.rb │ │ ├── dsc_netadapterrsc.rb │ │ ├── dsc_netadapterrss.rb │ │ ├── dsc_netbios.rb │ │ ├── dsc_netconnectionprofile.rb │ │ ├── dsc_netipinterface.rb │ │ ├── dsc_networkteam.rb │ │ ├── dsc_networkteaminterface.rb │ │ ├── dsc_officeonlineserverfarm.rb │ │ ├── dsc_officeonlineserverinstall.rb │ │ ├── dsc_officeonlineserverinstalllanguagepack.rb │ │ ├── dsc_officeonlineservermachine.rb │ │ ├── dsc_offlinedomainjoin.rb │ │ ├── dsc_opticaldiskdriveletter.rb │ │ ├── dsc_package.rb │ │ ├── dsc_pfximport.rb │ │ ├── dsc_powerplan.rb │ │ ├── dsc_powershellexecutionpolicy.rb │ │ ├── dsc_proxysettings.rb │ │ ├── dsc_registry.rb │ │ ├── dsc_replacetext.rb │ │ ├── dsc_route.rb │ │ ├── dsc_runbookdirectory.rb │ │ ├── dsc_scheduledtask.rb │ │ ├── dsc_script.rb │ │ ├── dsc_securityoption.rb │ │ ├── dsc_securitytemplate.rb │ │ ├── dsc_service.rb │ │ ├── dsc_smavariable.rb │ │ ├── dsc_spaccessserviceapp.rb │ │ ├── dsc_spaccessservices2010.rb │ │ ├── dsc_spalternateurl.rb │ │ ├── dsc_spantivirussettings.rb │ │ ├── dsc_spappcatalog.rb │ │ ├── dsc_spappdomain.rb │ │ ├── dsc_spappmanagementserviceapp.rb │ │ ├── dsc_spappstoresettings.rb │ │ ├── dsc_spauthenticationrealm.rb │ │ ├── dsc_spbcsserviceapp.rb │ │ ├── dsc_spblobcachesettings.rb │ │ ├── dsc_spcacheaccounts.rb │ │ ├── dsc_spconfigwizard.rb │ │ ├── dsc_spcontentdatabase.rb │ │ ├── dsc_spdatabaseaag.rb │ │ ├── dsc_spdesignersettings.rb │ │ ├── dsc_spdiagnosticloggingsettings.rb │ │ ├── dsc_spdiagnosticsprovider.rb │ │ ├── dsc_spdistributedcacheclientsettings.rb │ │ ├── dsc_spdistributedcacheservice.rb │ │ ├── dsc_spexcelserviceapp.rb │ │ ├── dsc_spfarm.rb │ │ ├── dsc_spfarmadministrators.rb │ │ ├── dsc_spfarmpropertybag.rb │ │ ├── dsc_spfarmsolution.rb │ │ ├── dsc_spfeature.rb │ │ ├── dsc_sphealthanalyzerrulestate.rb │ │ ├── dsc_spincomingemailsettings.rb │ │ ├── dsc_spinfopathformsserviceconfig.rb │ │ ├── dsc_spinstall.rb │ │ ├── dsc_spinstalllanguagepack.rb │ │ ├── dsc_spinstallprereqs.rb │ │ ├── dsc_spirmsettings.rb │ │ ├── dsc_sploglevel.rb │ │ ├── dsc_spmachinetranslationserviceapp.rb │ │ ├── dsc_spmanagedaccount.rb │ │ ├── dsc_spmanagedmetadataserviceapp.rb │ │ ├── dsc_spmanagedmetadataserviceappdefault.rb │ │ ├── dsc_spmanagedpath.rb │ │ ├── dsc_spminrolecompliance.rb │ │ ├── dsc_spofficeonlineserverbinding.rb │ │ ├── dsc_spoutgoingemailsettings.rb │ │ ├── dsc_sppasswordchangesettings.rb │ │ ├── dsc_spperformancepointserviceapp.rb │ │ ├── dsc_sppowerpointautomationserviceapp.rb │ │ ├── dsc_spproductupdate.rb │ │ ├── dsc_spprojectserveradditionalsettings.rb │ │ ├── dsc_spprojectserveradresourcepoolsync.rb │ │ ├── dsc_spprojectserverglobalpermissions.rb │ │ ├── dsc_spprojectservergroup.rb │ │ ├── dsc_spprojectserverlicense.rb │ │ ├── dsc_spprojectserverpermissionmode.rb │ │ ├── dsc_spprojectserverserviceapp.rb │ │ ├── dsc_spprojectservertimesheetsettings.rb │ │ ├── dsc_spprojectserverusersyncsettings.rb │ │ ├── dsc_spprojectserverwsssettings.rb │ │ ├── dsc_sppublishserviceapplication.rb │ │ ├── dsc_spquotatemplate.rb │ │ ├── dsc_spremotefarmtrust.rb │ │ ├── dsc_spsearchauthoritativepage.rb │ │ ├── dsc_spsearchcontentsource.rb │ │ ├── dsc_spsearchcrawlerimpactrule.rb │ │ ├── dsc_spsearchcrawlmapping.rb │ │ ├── dsc_spsearchcrawlrule.rb │ │ ├── dsc_spsearchfiletype.rb │ │ ├── dsc_spsearchindexpartition.rb │ │ ├── dsc_spsearchmanagedproperty.rb │ │ ├── dsc_spsearchmetadatacategory.rb │ │ ├── dsc_spsearchresultsource.rb │ │ ├── dsc_spsearchserviceapp.rb │ │ ├── dsc_spsearchservicesettings.rb │ │ ├── dsc_spsearchtopology.rb │ │ ├── dsc_spsecurestoreserviceapp.rb │ │ ├── dsc_spsecuritytokenserviceconfig.rb │ │ ├── dsc_spselfservicesitecreation.rb │ │ ├── dsc_spserviceapppool.rb │ │ ├── dsc_spserviceappproxygroup.rb │ │ ├── dsc_spserviceappsecurity.rb │ │ ├── dsc_spserviceidentity.rb │ │ ├── dsc_spserviceinstance.rb │ │ ├── dsc_spsessionstateservice.rb │ │ ├── dsc_spshelladmins.rb │ │ ├── dsc_spsite.rb │ │ ├── dsc_spsiteurl.rb │ │ ├── dsc_spstateserviceapp.rb │ │ ├── dsc_spsubscriptionsettingsserviceapp.rb │ │ ├── dsc_sptimerjobstate.rb │ │ ├── dsc_sptrustedidentitytokenissuer.rb │ │ ├── dsc_sptrustedidentitytokenissuerproviderrealms.rb │ │ ├── dsc_sptrustedrootauthority.rb │ │ ├── dsc_spusageapplication.rb │ │ ├── dsc_spuserprofileproperty.rb │ │ ├── dsc_spuserprofilesection.rb │ │ ├── dsc_spuserprofileserviceapp.rb │ │ ├── dsc_spuserprofileserviceapppermissions.rb │ │ ├── dsc_spuserprofilesyncconnection.rb │ │ ├── dsc_spuserprofilesyncservice.rb │ │ ├── dsc_spvisioserviceapp.rb │ │ ├── dsc_spweb.rb │ │ ├── dsc_spwebappauthentication.rb │ │ ├── dsc_spwebappblockedfiletypes.rb │ │ ├── dsc_spwebappclientcallablesettings.rb │ │ ├── dsc_spwebappgeneralsettings.rb │ │ ├── dsc_spwebapplication.rb │ │ ├── dsc_spwebapplicationappdomain.rb │ │ ├── dsc_spwebapplicationextension.rb │ │ ├── dsc_spwebapppeoplepickersettings.rb │ │ ├── dsc_spwebapppermissions.rb │ │ ├── dsc_spwebapppolicy.rb │ │ ├── dsc_spwebapppropertybag.rb │ │ ├── dsc_spwebappproxygroup.rb │ │ ├── dsc_spwebappsiteuseanddeletion.rb │ │ ├── dsc_spwebappsuitebar.rb │ │ ├── dsc_spwebappthrottlingsettings.rb │ │ ├── dsc_spwebappworkflowsettings.rb │ │ ├── dsc_spwordautomationserviceapp.rb │ │ ├── dsc_spworkflowservice.rb │ │ ├── dsc_spworkmanagementserviceapp.rb │ │ ├── dsc_sqlag.rb │ │ ├── dsc_sqlagdatabase.rb │ │ ├── dsc_sqlagentoperator.rb │ │ ├── dsc_sqlaglistener.rb │ │ ├── dsc_sqlagreplica.rb │ │ ├── dsc_sqlalias.rb │ │ ├── dsc_sqlalwaysonservice.rb │ │ ├── dsc_sqldatabase.rb │ │ ├── dsc_sqldatabasedefaultlocation.rb │ │ ├── dsc_sqldatabaseowner.rb │ │ ├── dsc_sqldatabasepermission.rb │ │ ├── dsc_sqldatabaserecoverymodel.rb │ │ ├── dsc_sqldatabaserole.rb │ │ ├── dsc_sqlrs.rb │ │ ├── dsc_sqlscript.rb │ │ ├── dsc_sqlscriptquery.rb │ │ ├── dsc_sqlserverconfiguration.rb │ │ ├── dsc_sqlserverdatabasemail.rb │ │ ├── dsc_sqlserverendpoint.rb │ │ ├── dsc_sqlserverendpointpermission.rb │ │ ├── dsc_sqlserverendpointstate.rb │ │ ├── dsc_sqlserverlogin.rb │ │ ├── dsc_sqlservermaxdop.rb │ │ ├── dsc_sqlservermemory.rb │ │ ├── dsc_sqlservernetwork.rb │ │ ├── dsc_sqlserverpermission.rb │ │ ├── dsc_sqlserverreplication.rb │ │ ├── dsc_sqlserverrole.rb │ │ ├── dsc_sqlserversecureconnection.rb │ │ ├── dsc_sqlserviceaccount.rb │ │ ├── dsc_sqlsetup.rb │ │ ├── dsc_sqlwaitforag.rb │ │ ├── dsc_sqlwindowsfirewall.rb │ │ ├── dsc_systemlocale.rb │ │ ├── dsc_timezone.rb │ │ ├── dsc_user.rb │ │ ├── dsc_userrightsassignment.rb │ │ ├── dsc_virtualmemory.rb │ │ ├── dsc_waitforcertificateservices.rb │ │ ├── dsc_waitfordisk.rb │ │ ├── dsc_waitfornetworkteam.rb │ │ ├── dsc_waitforvolume.rb │ │ ├── dsc_webapplicationhandler.rb │ │ ├── dsc_windowseventlog.rb │ │ ├── dsc_windowsfeature.rb │ │ ├── dsc_windowsoptionalfeature.rb │ │ ├── dsc_windowsprocess.rb │ │ ├── dsc_winssetting.rb │ │ ├── dsc_wsmanlistener.rb │ │ ├── dsc_wsmanserviceconfig.rb │ │ ├── dsc_xadcomputer.rb │ │ ├── dsc_xaddomain.rb │ │ ├── dsc_xaddomaincontroller.rb │ │ ├── dsc_xaddomaindefaultpasswordpolicy.rb │ │ ├── dsc_xaddomaintrust.rb │ │ ├── dsc_xadforestproperties.rb │ │ ├── dsc_xadgroup.rb │ │ ├── dsc_xadobjectpermissionentry.rb │ │ ├── dsc_xadorganizationalunit.rb │ │ ├── dsc_xadrecyclebin.rb │ │ ├── dsc_xadreplicationsite.rb │ │ ├── dsc_xadreplicationsubnet.rb │ │ ├── dsc_xadserviceprincipalname.rb │ │ ├── dsc_xaduser.rb │ │ ├── dsc_xarchive.rb │ │ ├── dsc_xazureaffinitygroup.rb │ │ ├── dsc_xazurepackadmin.rb │ │ ├── dsc_xazurepackdatabasesetting.rb │ │ ├── dsc_xazurepackfqdn.rb │ │ ├── dsc_xazurepackidentityprovider.rb │ │ ├── dsc_xazurepackrelyingparty.rb │ │ ├── dsc_xazurepackresourceprovider.rb │ │ ├── dsc_xazurepacksetup.rb │ │ ├── dsc_xazurepackupdate.rb │ │ ├── dsc_xazurequickvm.rb │ │ ├── dsc_xazureservice.rb │ │ ├── dsc_xazuresqldatabase.rb │ │ ├── dsc_xazuresqldatabaseserverfirewallrule.rb │ │ ├── dsc_xazurestorageaccount.rb │ │ ├── dsc_xazuresubscription.rb │ │ ├── dsc_xazurevm.rb │ │ ├── dsc_xazurevmdscconfiguration.rb │ │ ├── dsc_xazurevmdscextension.rb │ │ ├── dsc_xblautobitlocker.rb │ │ ├── dsc_xblbitlocker.rb │ │ ├── dsc_xbltpm.rb │ │ ├── dsc_xcluster.rb │ │ ├── dsc_xclusterdisk.rb │ │ ├── dsc_xclusternetwork.rb │ │ ├── dsc_xclusterpreferredowner.rb │ │ ├── dsc_xclusterproperty.rb │ │ ├── dsc_xclusterquorum.rb │ │ ├── dsc_xcredssp.rb │ │ ├── dsc_xdatabase.rb │ │ ├── dsc_xdatabaselogin.rb │ │ ├── dsc_xdatabaseserver.rb │ │ ├── dsc_xdbpackage.rb │ │ ├── dsc_xdhcpserverauthorization.rb │ │ ├── dsc_xdhcpserverclass.rb │ │ ├── dsc_xdhcpserveroption.rb │ │ ├── dsc_xdhcpserveroptiondefinition.rb │ │ ├── dsc_xdhcpserverreservation.rb │ │ ├── dsc_xdhcpserverscope.rb │ │ ├── dsc_xdisk.rb │ │ ├── dsc_xdismfeature.rb │ │ ├── dsc_xdnsarecord.rb │ │ ├── dsc_xdnsrecord.rb │ │ ├── dsc_xdnsserveradzone.rb │ │ ├── dsc_xdnsserverforwarder.rb │ │ ├── dsc_xdnsserverprimaryzone.rb │ │ ├── dsc_xdnsserversecondaryzone.rb │ │ ├── dsc_xdnsserversetting.rb │ │ ├── dsc_xdnsserverzoneaging.rb │ │ ├── dsc_xdnsserverzonetransfer.rb │ │ ├── dsc_xdscwebservice.rb │ │ ├── dsc_xenvironment.rb │ │ ├── dsc_xexchactivesyncvirtualdirectory.rb │ │ ├── dsc_xexchantimalwarescanning.rb │ │ ├── dsc_xexchautodiscovervirtualdirectory.rb │ │ ├── dsc_xexchautomountpoint.rb │ │ ├── dsc_xexchclientaccessserver.rb │ │ ├── dsc_xexchdatabaseavailabilitygroup.rb │ │ ├── dsc_xexchdatabaseavailabilitygroupmember.rb │ │ ├── dsc_xexchdatabaseavailabilitygroupnetwork.rb │ │ ├── dsc_xexchecpvirtualdirectory.rb │ │ ├── dsc_xexcheventloglevel.rb │ │ ├── dsc_xexchexchangecertificate.rb │ │ ├── dsc_xexchexchangeserver.rb │ │ ├── dsc_xexchimapsettings.rb │ │ ├── dsc_xexchinstall.rb │ │ ├── dsc_xexchjetstress.rb │ │ ├── dsc_xexchjetstresscleanup.rb │ │ ├── dsc_xexchmailboxdatabase.rb │ │ ├── dsc_xexchmailboxdatabasecopy.rb │ │ ├── dsc_xexchmailboxserver.rb │ │ ├── dsc_xexchmailboxtransportservice.rb │ │ ├── dsc_xexchmaintenancemode.rb │ │ ├── dsc_xexchmapivirtualdirectory.rb │ │ ├── dsc_xexchoabvirtualdirectory.rb │ │ ├── dsc_xexchoutlookanywhere.rb │ │ ├── dsc_xexchowavirtualdirectory.rb │ │ ├── dsc_xexchpopsettings.rb │ │ ├── dsc_xexchpowershellvirtualdirectory.rb │ │ ├── dsc_xexchreceiveconnector.rb │ │ ├── dsc_xexchtransportservice.rb │ │ ├── dsc_xexchumcallroutersettings.rb │ │ ├── dsc_xexchumservice.rb │ │ ├── dsc_xexchwaitforadprep.rb │ │ ├── dsc_xexchwaitfordag.rb │ │ ├── dsc_xexchwaitformailboxdatabase.rb │ │ ├── dsc_xexchwebservicesvirtualdirectory.rb │ │ ├── dsc_xgroup.rb │ │ ├── dsc_xhotfix.rb │ │ ├── dsc_xiisfeaturedelegation.rb │ │ ├── dsc_xiishandler.rb │ │ ├── dsc_xiislogging.rb │ │ ├── dsc_xiismimetypemapping.rb │ │ ├── dsc_xiismodule.rb │ │ ├── dsc_xinternetexplorerhomepage.rb │ │ ├── dsc_xjeaendpoint.rb │ │ ├── dsc_xjeatoolkit.rb │ │ ├── dsc_xmicrosoftupdate.rb │ │ ├── dsc_xmppreference.rb │ │ ├── dsc_xmsipackage.rb │ │ ├── dsc_xmysqldatabase.rb │ │ ├── dsc_xmysqlgrant.rb │ │ ├── dsc_xmysqlserver.rb │ │ ├── dsc_xmysqluser.rb │ │ ├── dsc_xpackage.rb │ │ ├── dsc_xpendingreboot.rb │ │ ├── dsc_xpowershellexecutionpolicy.rb │ │ ├── dsc_xpsendpoint.rb │ │ ├── dsc_xrdgatewayconfiguration.rb │ │ ├── dsc_xrdlicenseconfiguration.rb │ │ ├── dsc_xrdremoteapp.rb │ │ ├── dsc_xrdserver.rb │ │ ├── dsc_xrdsessioncollection.rb │ │ ├── dsc_xrdsessioncollectionconfiguration.rb │ │ ├── dsc_xrdsessiondeployment.rb │ │ ├── dsc_xregistry.rb │ │ ├── dsc_xremotedesktopadmin.rb │ │ ├── dsc_xremotefile.rb │ │ ├── dsc_xrobocopy.rb │ │ ├── dsc_xscdpmconsolesetup.rb │ │ ├── dsc_xscdpmdatabaseserversetup.rb │ │ ├── dsc_xscdpmserversetup.rb │ │ ├── dsc_xscomadmin.rb │ │ ├── dsc_xscomconsolesetup.rb │ │ ├── dsc_xscomconsoleupdate.rb │ │ ├── dsc_xscommanagementpack.rb │ │ ├── dsc_xscommanagementserversetup.rb │ │ ├── dsc_xscommanagementserverupdate.rb │ │ ├── dsc_xscomreportingserversetup.rb │ │ ├── dsc_xscomwebconsoleserversetup.rb │ │ ├── dsc_xscomwebconsoleserverupdate.rb │ │ ├── dsc_xscript.rb │ │ ├── dsc_xscsmapowershellsetup.rb │ │ ├── dsc_xscsmarunbookworkerserversetup.rb │ │ ├── dsc_xscsmawebserviceserversetup.rb │ │ ├── dsc_xscspfserver.rb │ │ ├── dsc_xscspfserversetup.rb │ │ ├── dsc_xscspfserverupdate.rb │ │ ├── dsc_xscspfsetting.rb │ │ ├── dsc_xscspfstamp.rb │ │ ├── dsc_xscsrserversetup.rb │ │ ├── dsc_xscsrserverupdate.rb │ │ ├── dsc_xscvmmadmin.rb │ │ ├── dsc_xscvmmconsolesetup.rb │ │ ├── dsc_xscvmmconsoleupdate.rb │ │ ├── dsc_xscvmmmanagementserversetup.rb │ │ ├── dsc_xscvmmmanagementserverupdate.rb │ │ ├── dsc_xservice.rb │ │ ├── dsc_xsmacredential.rb │ │ ├── dsc_xsmbshare.rb │ │ ├── dsc_xsqlalias.rb │ │ ├── dsc_xsqlhaendpoint.rb │ │ ├── dsc_xsqlhagroup.rb │ │ ├── dsc_xsqlhaservice.rb │ │ ├── dsc_xsqlserverinstall.rb │ │ ├── dsc_xsslsettings.rb │ │ ├── dsc_xsystemrestore.rb │ │ ├── dsc_xsystemrestorepoint.rb │ │ ├── dsc_xtimezone.rb │ │ ├── dsc_xuser.rb │ │ ├── dsc_xvhd.rb │ │ ├── dsc_xvhdfile.rb │ │ ├── dsc_xvmdvddrive.rb │ │ ├── dsc_xvmharddiskdrive.rb │ │ ├── dsc_xvmhost.rb │ │ ├── dsc_xvmhyperv.rb │ │ ├── dsc_xvmnetworkadapter.rb │ │ ├── dsc_xvmprocessor.rb │ │ ├── dsc_xvmscsicontroller.rb │ │ ├── dsc_xvmswitch.rb │ │ ├── dsc_xwaitforaddomain.rb │ │ ├── dsc_xwaitforcluster.rb │ │ ├── dsc_xwaitfordisk.rb │ │ ├── dsc_xwaitforsqlhagroup.rb │ │ ├── dsc_xwebapplication.rb │ │ ├── dsc_xwebapppool.rb │ │ ├── dsc_xwebapppooldefaults.rb │ │ ├── dsc_xwebconfigkeyvalue.rb │ │ ├── dsc_xwebconfigproperty.rb │ │ ├── dsc_xwebconfigpropertycollection.rb │ │ ├── dsc_xwebpackagedeploy.rb │ │ ├── dsc_xwebsite.rb │ │ ├── dsc_xwebsitedefaults.rb │ │ ├── dsc_xwebvirtualdirectory.rb │ │ ├── dsc_xwefcollector.rb │ │ ├── dsc_xwefsubscription.rb │ │ ├── dsc_xwindowsfeature.rb │ │ ├── dsc_xwindowsoptionalfeature.rb │ │ ├── dsc_xwindowspackagecab.rb │ │ ├── dsc_xwindowsprocess.rb │ │ ├── dsc_xwindowsupdateagent.rb │ │ ├── dsc_xwineventlog.rb │ │ └── dsc_xwordpresssite.rb └── puppet_x │ ├── dsc_resources │ ├── ActiveDirectoryCSDsc │ │ ├── ActiveDirectoryCSDsc.psd1 │ │ ├── DSCResources │ │ │ ├── MSFT_AdcsCertificationAuthority │ │ │ │ ├── MSFT_AdcsCertificationAuthority.psm1 │ │ │ │ ├── MSFT_AdcsCertificationAuthority.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_AdcsCertificationAuthority.strings.psd1 │ │ │ ├── MSFT_AdcsEnrollmentPolicyWebService │ │ │ │ ├── MSFT_AdcsEnrollmentPolicyWebService.psm1 │ │ │ │ ├── MSFT_AdcsEnrollmentPolicyWebService.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_AdcsEnrollmentPolicyWebService.strings.psd1 │ │ │ ├── MSFT_AdcsOcspExtension │ │ │ │ ├── MSFT_AdcsOcspExtension.psm1 │ │ │ │ ├── MSFT_AdcsOcspExtension.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_AdcsOcspExtension.strings.psd1 │ │ │ ├── MSFT_AdcsOnlineResponder │ │ │ │ ├── MSFT_AdcsOnlineResponder.psm1 │ │ │ │ ├── MSFT_AdcsOnlineResponder.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_AdcsOnlineResponder.strings.psd1 │ │ │ └── MSFT_AdcsWebEnrollment │ │ │ │ ├── MSFT_AdcsWebEnrollment.psm1 │ │ │ │ ├── MSFT_AdcsWebEnrollment.schema.mof │ │ │ │ └── en-us │ │ │ │ └── MSFT_AdcsWebEnrollment.strings.psd1 │ │ ├── LICENSE │ │ └── Modules │ │ │ ├── ActiveDirectoryCSDsc.CommonHelper │ │ │ ├── ActiveDirectoryCSDsc.CommonHelper.psm1 │ │ │ └── en-US │ │ │ │ └── ActiveDirectoryCSDsc.CommonHelper.strings.psd1 │ │ │ └── ActiveDirectoryCSDsc.ResourceHelper │ │ │ └── ActiveDirectoryCSDsc.ResourceHelper.psm1 │ ├── AuditPolicyDsc │ │ ├── AuditPolicyDsc.psd1 │ │ ├── DSCResources │ │ │ ├── AuditPolicyResourceHelper │ │ │ │ ├── AuditPolicyResourceHelper.psm1 │ │ │ │ └── en-US │ │ │ │ │ └── AuditPolicyResourceHelper.strings.psd1 │ │ │ ├── MSFT_AuditPolicyCsv │ │ │ │ ├── MSFT_AuditPolicyCsv.psm1 │ │ │ │ ├── MSFT_AuditPolicyCsv.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_AuditPolicyCsv.strings.psd1 │ │ │ ├── MSFT_AuditPolicyGUID │ │ │ │ ├── MSFT_AuditPolicyGUID.psm1 │ │ │ │ ├── MSFT_AuditPolicyGUID.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_AuditPolicyGUID.strings.psd1 │ │ │ ├── MSFT_AuditPolicyOption │ │ │ │ ├── MSFT_AuditPolicyOption.psm1 │ │ │ │ ├── MSFT_AuditPolicyOption.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_AuditPolicyOption.strings.psd1 │ │ │ └── MSFT_AuditPolicySubcategory │ │ │ │ ├── MSFT_AuditPolicySubcategory.psm1 │ │ │ │ ├── MSFT_AuditPolicySubcategory.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_AuditPolicySubcategory.strings.psd1 │ │ └── LICENSE │ ├── CertificateDsc │ │ ├── CertificateDsc.psd1 │ │ ├── DSCResources │ │ │ ├── MSFT_CertReq │ │ │ │ ├── MSFT_CertReq.psm1 │ │ │ │ ├── MSFT_CertReq.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_CertReq.strings.psd1 │ │ │ ├── MSFT_CertificateExport │ │ │ │ ├── MSFT_CertificateExport.psm1 │ │ │ │ ├── MSFT_CertificateExport.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_CertificateExport.strings.psd1 │ │ │ ├── MSFT_CertificateImport │ │ │ │ ├── MSFT_CertificateImport.psm1 │ │ │ │ ├── MSFT_CertificateImport.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_CertificateImport.strings.psd1 │ │ │ ├── MSFT_PfxImport │ │ │ │ ├── MSFT_PfxImport.psm1 │ │ │ │ ├── MSFT_PfxImport.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_PfxImport.strings.psd1 │ │ │ └── MSFT_WaitForCertificateServices │ │ │ │ ├── MSFT_WaitForCertificateServices.psm1 │ │ │ │ ├── MSFT_WaitForCertificateServices.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_WaitForCertificateServices.strings.psd1 │ │ ├── LICENSE │ │ └── Modules │ │ │ ├── CertificateDsc.Common │ │ │ ├── CertificateDsc.Common.psm1 │ │ │ └── en-us │ │ │ │ └── CertificateDsc.Common.strings.psd1 │ │ │ ├── CertificateDsc.PDT │ │ │ ├── CertificateDsc.PDT.psm1 │ │ │ └── en-us │ │ │ │ └── CertificateDsc.PDT.strings.psd1 │ │ │ └── CertificateDsc.ResourceHelper │ │ │ └── CertificateDsc.ResourceHelper.psm1 │ ├── ComputerManagementDsc │ │ ├── ComputerManagementDsc.psd1 │ │ ├── DSCResources │ │ │ ├── MSFT_Computer │ │ │ │ ├── MSFT_Computer.psm1 │ │ │ │ ├── MSFT_Computer.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_Computer.strings.psd1 │ │ │ ├── MSFT_OfflineDomainJoin │ │ │ │ ├── MSFT_OfflineDomainJoin.psm1 │ │ │ │ ├── MSFT_OfflineDomainJoin.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_OfflineDomainJoin.strings.psd1 │ │ │ ├── MSFT_PowerPlan │ │ │ │ ├── MSFT_PowerPlan.psm1 │ │ │ │ ├── MSFT_PowerPlan.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_PowerPlan.schema.mfl │ │ │ │ │ └── MSFT_PowerPlan.strings.psd1 │ │ │ ├── MSFT_PowerShellExecutionPolicy │ │ │ │ ├── MSFT_PowerShellExecutionPolicy.psm1 │ │ │ │ ├── MSFT_PowerShellExecutionPolicy.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_PowerShellExecutionPolicy.strings.psd1 │ │ │ ├── MSFT_ScheduledTask │ │ │ │ ├── MSFT_ScheduledTask.psm1 │ │ │ │ ├── MSFT_ScheduledTask.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_ScheduledTask.strings.psd1 │ │ │ ├── MSFT_TimeZone │ │ │ │ ├── MSFT_TimeZone.psm1 │ │ │ │ ├── MSFT_TimeZone.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_TimeZone.strings.psd1 │ │ │ ├── MSFT_VirtualMemory │ │ │ │ ├── MSFT_VirtualMemory.psm1 │ │ │ │ ├── MSFT_VirtualMemory.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_VirtualMemory.strings.psd1 │ │ │ └── MSFT_WindowsEventLog │ │ │ │ ├── MSFT_WindowsEventLog.psm1 │ │ │ │ ├── MSFT_WindowsEventLog.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_WindowsEventLog.strings.psd1 │ │ ├── LICENSE │ │ └── Modules │ │ │ ├── ComputerManagementDsc.Common │ │ │ ├── ComputerManagementDsc.Common.psm1 │ │ │ ├── SetTimeZone.cs │ │ │ └── en-us │ │ │ │ └── ComputerManagementDsc.Common.strings.psd1 │ │ │ └── ComputerManagementDsc.ResourceHelper │ │ │ └── ComputerManagementDsc.ResourceHelper.psm1 │ ├── DFSDsc │ │ ├── DFSDsc.psd1 │ │ ├── DSCResources │ │ │ ├── MSFT_DFSNamespaceFolder │ │ │ │ ├── MSFT_DFSNamespaceFolder.psm1 │ │ │ │ ├── MSFT_DFSNamespaceFolder.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSNamespaceFolder.strings.psd1 │ │ │ ├── MSFT_DFSNamespaceRoot │ │ │ │ ├── MSFT_DFSNamespaceRoot.psm1 │ │ │ │ ├── MSFT_DFSNamespaceRoot.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSNamespaceRoot.strings.psd1 │ │ │ ├── MSFT_DFSNamespaceServerConfiguration │ │ │ │ ├── MSFT_DFSNamespaceServerConfiguration.psm1 │ │ │ │ ├── MSFT_DFSNamespaceServerConfiguration.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSNamespaceServerConfiguration.strings.psd1 │ │ │ ├── MSFT_DFSReplicationGroup │ │ │ │ ├── MSFT_DFSReplicationGroup.psm1 │ │ │ │ ├── MSFT_DFSReplicationGroup.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSReplicationGroup.strings.psd1 │ │ │ ├── MSFT_DFSReplicationGroupConnection │ │ │ │ ├── MSFT_DFSReplicationGroupConnection.psm1 │ │ │ │ ├── MSFT_DFSReplicationGroupConnection.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSReplicationGroupConnection.strings.psd1 │ │ │ ├── MSFT_DFSReplicationGroupFolder │ │ │ │ ├── MSFT_DFSReplicationGroupFolder.psm1 │ │ │ │ ├── MSFT_DFSReplicationGroupFolder.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DFSReplicationGroupFolder.strings.psd1 │ │ │ └── MSFT_DFSReplicationGroupMembership │ │ │ │ ├── MSFT_DFSReplicationGroupMembership.psm1 │ │ │ │ ├── MSFT_DFSReplicationGroupMembership.schema.mof │ │ │ │ └── en-us │ │ │ │ └── MSFT_DFSReplicationGroupMembership.strings.psd1 │ │ ├── LICENSE │ │ └── Modules │ │ │ └── DFSDsc.ResourceHelper │ │ │ └── DFSDsc.ResourceHelper.psm1 │ ├── FSRMDsc │ │ ├── DSCResources │ │ │ ├── DSR_FSRMAutoQuota │ │ │ │ ├── DSR_FSRMAutoQuota.psm1 │ │ │ │ ├── DSR_FSRMAutoQuota.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMAutoQuota.strings.psd1 │ │ │ ├── DSR_FSRMClassification │ │ │ │ ├── DSR_FSRMClassification.psm1 │ │ │ │ ├── DSR_FSRMClassification.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMClassification.strings.psd1 │ │ │ ├── DSR_FSRMClassificationProperty │ │ │ │ ├── DSR_FSRMClassificationProperty.psm1 │ │ │ │ ├── DSR_FSRMClassificationProperty.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMClassificationProperty.strings.psd1 │ │ │ ├── DSR_FSRMClassificationPropertyValue │ │ │ │ ├── DSR_FSRMClassificationPropertyValue.psm1 │ │ │ │ ├── DSR_FSRMClassificationPropertyValue.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMClassificationPropertyValue.strings.psd1 │ │ │ ├── DSR_FSRMClassificationRule │ │ │ │ ├── DSR_FSRMClassificationRule.psm1 │ │ │ │ ├── DSR_FSRMClassificationRule.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMClassificationRule.strings.psd1 │ │ │ ├── DSR_FSRMFileGroup │ │ │ │ ├── DSR_FSRMFileGroup.psm1 │ │ │ │ ├── DSR_FSRMFileGroup.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── DSR_FSRMFileGroup.strings.psd1 │ │ │ ├── DSR_FSRMFileScreen │ │ │ │ ├── DSR_FSRMFileScreen.psm1 │ │ │ │ ├── DSR_FSRMFileScreen.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMFileScreen.strings.psd1 │ │ │ ├── DSR_FSRMFileScreenAction │ │ │ │ ├── DSR_FSRMFileScreenAction.psm1 │ │ │ │ ├── DSR_FSRMFileScreenAction.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMFileScreenAction.strings.psd1 │ │ │ ├── DSR_FSRMFileScreenException │ │ │ │ ├── DSR_FSRMFileScreenException.psm1 │ │ │ │ ├── DSR_FSRMFileScreenException.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMFileScreenException.strings.psd1 │ │ │ ├── DSR_FSRMFileScreenTemplate │ │ │ │ ├── DSR_FSRMFileScreenTemplate.psm1 │ │ │ │ ├── DSR_FSRMFileScreenTemplate.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMFileScreenTemplate.strings.psd1 │ │ │ ├── DSR_FSRMFileScreenTemplateAction │ │ │ │ ├── DSR_FSRMFileScreenTemplateAction.psm1 │ │ │ │ ├── DSR_FSRMFileScreenTemplateAction.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMFileScreenTemplateAction.strings.psd1 │ │ │ ├── DSR_FSRMQuota │ │ │ │ ├── DSR_FSRMQuota.psm1 │ │ │ │ ├── DSR_FSRMQuota.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMQuota.strings.psd1 │ │ │ ├── DSR_FSRMQuotaAction │ │ │ │ ├── DSR_FSRMQuotaAction.psm1 │ │ │ │ ├── DSR_FSRMQuotaAction.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMQuotaAction.strings.psd1 │ │ │ ├── DSR_FSRMQuotaTemplate │ │ │ │ ├── DSR_FSRMQuotaTemplate.psm1 │ │ │ │ ├── DSR_FSRMQuotaTemplate.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMQuotaTemplate.strings.psd1 │ │ │ ├── DSR_FSRMQuotaTemplateAction │ │ │ │ ├── DSR_FSRMQuotaTemplateAction.psm1 │ │ │ │ ├── DSR_FSRMQuotaTemplateAction.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── DSR_FSRMQuotaTemplateAction.strings.psd1 │ │ │ └── DSR_FSRMSettings │ │ │ │ ├── DSR_FSRMSettings.psm1 │ │ │ │ ├── DSR_FSRMSettings.schema.mof │ │ │ │ └── en-US │ │ │ │ └── DSR_FSRMSettings.strings.psd1 │ │ ├── FSRMDsc.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── FSRMDsc.ResourceHelper │ │ │ │ └── FSRMDsc.ResourceHelper.psm1 │ │ └── PSScriptAnalyzerSettings.psd1 │ ├── FileContentDsc │ │ ├── DSCResources │ │ │ ├── DSR_IniSettingsFile │ │ │ │ ├── DSR_IniSettingsFile.psm1 │ │ │ │ ├── DSR_IniSettingsFile.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── DSR_IniSettingsFile.schema.mfl │ │ │ │ │ └── DSR_IniSettingsFile.strings.psd1 │ │ │ ├── DSR_KeyValuePairFile │ │ │ │ ├── DSR_KeyValuePairFile.psm1 │ │ │ │ ├── DSR_KeyValuePairFile.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── DSR_KeyValuePairFile.schema.mfl │ │ │ │ │ └── DSR_KeyValuePairFile.strings.psd1 │ │ │ └── DSR_ReplaceText │ │ │ │ ├── DSR_ReplaceText.psm1 │ │ │ │ ├── DSR_ReplaceText.schema.mof │ │ │ │ └── en-US │ │ │ │ ├── DSR_ReplaceText.schema.mfl │ │ │ │ └── DSR_ReplaceText.strings.psd1 │ │ ├── FileContentDsc.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── FileContentDsc.Common │ │ │ │ ├── FileContentDsc.Common.psm1 │ │ │ │ └── en-us │ │ │ │ │ └── FileContentDsc.Common.strings.psd1 │ │ │ └── FileContentDsc.ResourceHelper │ │ │ │ └── FileContentDsc.ResourceHelper.psm1 │ │ └── PSScriptAnalyzerSettings.psd1 │ ├── NetworkingDsc │ │ ├── DSCResources │ │ │ ├── MSFT_DefaultGatewayAddress │ │ │ │ ├── MSFT_DefaultGatewayAddress.psm1 │ │ │ │ ├── MSFT_DefaultGatewayAddress.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_DefaultGatewayAddress.strings.psd1 │ │ │ ├── MSFT_DnsClientGlobalSetting │ │ │ │ ├── MSFT_DnsClientGlobalSetting.data.psd1 │ │ │ │ ├── MSFT_DnsClientGlobalSetting.psm1 │ │ │ │ ├── MSFT_DnsClientGlobalSetting.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_DnsClientGlobalSetting.strings.psd1 │ │ │ ├── MSFT_DnsConnectionSuffix │ │ │ │ ├── MSFT_DnsConnectionSuffix.psm1 │ │ │ │ ├── MSFT_DnsConnectionSuffix.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_DnsConnectionSuffix.strings.psd1 │ │ │ ├── MSFT_DnsServerAddress │ │ │ │ ├── MSFT_DnsServerAddress.psm1 │ │ │ │ ├── MSFT_DnsServerAddress.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_DnsServerAddress.strings.psd1 │ │ │ ├── MSFT_Firewall │ │ │ │ ├── MSFT_Firewall.data.psd1 │ │ │ │ ├── MSFT_Firewall.psm1 │ │ │ │ ├── MSFT_Firewall.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_Firewall.strings.psd1 │ │ │ ├── MSFT_FirewallProfile │ │ │ │ ├── MSFT_FirewallProfile.data.psd1 │ │ │ │ ├── MSFT_FirewallProfile.psm1 │ │ │ │ ├── MSFT_FirewallProfile.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_FirewallProfile.strings.psd1 │ │ │ ├── MSFT_HostsFile │ │ │ │ ├── MSFT_HostsFile.psm1 │ │ │ │ ├── MSFT_HostsFile.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_HostsFile.strings.psd1 │ │ │ ├── MSFT_IPAddress │ │ │ │ ├── MSFT_IPAddress.psm1 │ │ │ │ ├── MSFT_IPAddress.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_IPAddress.strings.psd1 │ │ │ ├── MSFT_IPAddressOption │ │ │ │ ├── MSFT_IPAddressOption.psm1 │ │ │ │ ├── MSFT_IPAddressOption.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_IPAddressOption.strings.psd1 │ │ │ ├── MSFT_NetAdapterAdvancedProperty │ │ │ │ ├── MSFT_NetAdapterAdvancedProperty.psm1 │ │ │ │ ├── MSFT_NetAdapterAdvancedProperty.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterAdvancedProperty.strings.psd1 │ │ │ ├── MSFT_NetAdapterBinding │ │ │ │ ├── MSFT_NetAdapterBinding.psm1 │ │ │ │ ├── MSFT_NetAdapterBinding.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterBinding.strings.psd1 │ │ │ ├── MSFT_NetAdapterLso │ │ │ │ ├── MSFT_NetAdapterLso.psm1 │ │ │ │ ├── MSFT_NetAdapterLso.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterLso.strings.psd1 │ │ │ ├── MSFT_NetAdapterName │ │ │ │ ├── MSFT_NetAdapterName.psm1 │ │ │ │ ├── MSFT_NetAdapterName.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_NetAdapterName.strings.psd1 │ │ │ ├── MSFT_NetAdapterRdma │ │ │ │ ├── MSFT_NetAdapterRdma.psm1 │ │ │ │ ├── MSFT_NetAdapterRdma.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterRdma.strings.psd1 │ │ │ ├── MSFT_NetAdapterRsc │ │ │ │ ├── MSFT_NetAdapterRSC.schema.mof │ │ │ │ ├── MSFT_NetAdapterRsc.psm1 │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterRsc.strings.psd1 │ │ │ ├── MSFT_NetAdapterRss │ │ │ │ ├── MSFT_NetAdapterRss.psm1 │ │ │ │ ├── MSFT_NetAdapterRss.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetAdapterRss.strings.psd1 │ │ │ ├── MSFT_NetBios │ │ │ │ ├── MSFT_NetBios.psm1 │ │ │ │ ├── MSFT_NetBios.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetBios.strings.psd1 │ │ │ ├── MSFT_NetConnectionProfile │ │ │ │ ├── MSFT_NetConnectionProfile.psm1 │ │ │ │ ├── MSFT_NetConnectionProfile.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetConnectionProfile.strings.psd1 │ │ │ ├── MSFT_NetIPInterface │ │ │ │ ├── MSFT_NetIPInterface.data.psd1 │ │ │ │ ├── MSFT_NetIPInterface.psm1 │ │ │ │ ├── MSFT_NetIPInterface.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetIPInterface.strings.psd1 │ │ │ ├── MSFT_NetworkTeam │ │ │ │ ├── MSFT_NetworkTeam.psm1 │ │ │ │ ├── MSFT_NetworkTeam.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetworkTeam.strings.psd1 │ │ │ ├── MSFT_NetworkTeamInterface │ │ │ │ ├── MSFT_NetworkTeamInterface.psm1 │ │ │ │ ├── MSFT_NetworkTeamInterface.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_NetworkTeamInterface.strings.psd1 │ │ │ ├── MSFT_ProxySettings │ │ │ │ ├── MSFT_ProxySettings.psm1 │ │ │ │ ├── MSFT_ProxySettings.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_ProxySettings.strings.psd1 │ │ │ ├── MSFT_Route │ │ │ │ ├── MSFT_Route.psm1 │ │ │ │ ├── MSFT_Route.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_Route.strings.psd1 │ │ │ ├── MSFT_WaitForNetworkTeam │ │ │ │ ├── MSFT_WaitForNetworkTeam.psm1 │ │ │ │ ├── MSFT_WaitForNetworkTeam.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_WaitForNetworkTeam.strings.psd1 │ │ │ └── MSFT_WinsSetting │ │ │ │ ├── MSFT_WinsSetting.psm1 │ │ │ │ ├── MSFT_WinsSetting.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_WinsSetting.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── NetworkingDsc.Common │ │ │ │ ├── NetworkingDsc.Common.psm1 │ │ │ │ └── en-us │ │ │ │ │ └── NetworkingDsc.Common.strings.psd1 │ │ │ └── NetworkingDsc.ResourceHelper │ │ │ │ └── NetworkingDsc.ResourceHelper.psm1 │ │ └── NetworkingDsc.psd1 │ ├── OfficeOnlineServerDsc │ │ ├── DSCResources │ │ │ ├── MSFT_OfficeOnlineServerFarm │ │ │ │ ├── MSFT_OfficeOnlineServerFarm.psm1 │ │ │ │ └── MSFT_OfficeOnlineServerFarm.schema.mof │ │ │ ├── MSFT_OfficeOnlineServerInstall │ │ │ │ ├── MSFT_OfficeOnlineServerInstall.psm1 │ │ │ │ └── MSFT_OfficeOnlineServerInstall.schema.mof │ │ │ ├── MSFT_OfficeOnlineServerInstallLanguagePack │ │ │ │ ├── MSFT_OfficeOnlineServerInstallLanguagePack.psm1 │ │ │ │ └── MSFT_OfficeOnlineServerInstallLanguagePack.schema.mof │ │ │ └── MSFT_OfficeOnlineServerMachine │ │ │ │ ├── MSFT_OfficeOnlineServerMachine.psm1 │ │ │ │ └── MSFT_OfficeOnlineServerMachine.schema.mof │ │ ├── Modules │ │ │ └── OfficeOnlineServerDsc.Util │ │ │ │ └── OfficeOnlineServerDsc.Util.psm1 │ │ └── OfficeOnlineServerDsc.psd1 │ ├── PSDesiredStateConfiguration │ │ ├── DSCResources │ │ │ ├── MSFT_ArchiveResource │ │ │ │ ├── MSFT_ArchiveResource.psm1 │ │ │ │ ├── MSFT_ArchiveResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── ArchiveProvider.psd1 │ │ │ │ │ └── MSFT_ArchiveResource.schema.mfl │ │ │ ├── MSFT_EnvironmentResource │ │ │ │ ├── MSFT_EnvironmentResource.psm1 │ │ │ │ ├── MSFT_EnvironmentResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_EnvironmentResource.schema.mfl │ │ │ │ │ └── MSFT_EnvironmentResource.strings.psd1 │ │ │ ├── MSFT_FileDirectoryConfiguration │ │ │ │ └── MSFT_FileDirectoryConfiguration.schema.mof │ │ │ ├── MSFT_GroupResource │ │ │ │ ├── MSFT_GroupResource.psm1 │ │ │ │ ├── MSFT_GroupResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_GroupResource.schema.mfl │ │ │ │ │ └── MSFT_GroupResource.strings.psd1 │ │ │ ├── MSFT_LogResource │ │ │ │ ├── MSFT_LogResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_LogResource.schema.mfl │ │ │ ├── MSFT_PackageResource │ │ │ │ ├── MSFT_PackageResource.psm1 │ │ │ │ ├── MSFT_PackageResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_PackageResource.schema.mfl │ │ │ │ │ └── PackageProvider.psd1 │ │ │ ├── MSFT_ProcessResource │ │ │ │ ├── MSFT_ProcessResource.psm1 │ │ │ │ ├── MSFT_ProcessResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_ProcessResource.schema.mfl │ │ │ │ │ └── MSFT_ProcessResource.strings.psd1 │ │ │ ├── MSFT_RegistryResource │ │ │ │ ├── MSFT_RegistryResource.psm1 │ │ │ │ ├── MSFT_RegistryResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_RegistryResource.schema.mfl │ │ │ │ │ └── MSFT_RegistryResource.strings.psd1 │ │ │ ├── MSFT_RoleResource │ │ │ │ ├── MSFT_RoleResource.psm1 │ │ │ │ ├── MSFT_RoleResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_RoleResource.schema.mfl │ │ │ │ │ └── MSFT_RoleResourceStrings.psd1 │ │ │ ├── MSFT_ScriptResource │ │ │ │ ├── MSFT_ScriptResource.psm1 │ │ │ │ ├── MSFT_ScriptResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_ScriptResource.schema.mfl │ │ │ │ │ └── MSFT_ScriptResourceStrings.psd1 │ │ │ ├── MSFT_ServiceResource │ │ │ │ ├── MSFT_ServiceResource.psm1 │ │ │ │ ├── MSFT_ServiceResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_ServiceResource.schema.mfl │ │ │ │ │ └── MSFT_ServiceResource.strings.psd1 │ │ │ ├── MSFT_UserResource │ │ │ │ ├── MSFT_UserResource.psm1 │ │ │ │ ├── MSFT_UserResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_UserResource.schema.mfl │ │ │ │ │ └── MSFT_UserResource.strings.psd1 │ │ │ ├── MSFT_WindowsOptionalFeature │ │ │ │ ├── MSFT_WindowsOptionalFeature.psm1 │ │ │ │ ├── MSFT_WindowsOptionalFeature.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_WindowsOptionalFeature.schema.mfl │ │ │ │ │ └── MSFT_WindowsOptionalFeature.strings.psd1 │ │ │ ├── RunAsHelper.psm1 │ │ │ └── en-US │ │ │ │ └── RunAsHelper.strings.psd1 │ │ ├── Disable-DscDebug.cdxml │ │ ├── DownloadManager │ │ │ └── DSCFileDownloadManager │ │ │ │ ├── DSCFileDownloadManager.psd1 │ │ │ │ ├── Microsoft.PowerShell.DSC.FileDownloadManager.dll │ │ │ │ └── en │ │ │ │ └── Microsoft.PowerShell.DSC.FileDownloadManager.Resources.dll │ │ ├── Enable-DscDebug.cdxml │ │ ├── Get-DSCLocalConfigurationManager.cdxml │ │ ├── Get-DscConfiguration.cdxml │ │ ├── Get-DscConfigurationStatus.cdxml │ │ ├── PSDesiredStateConfiguration.format.ps1xml │ │ ├── PSDesiredStateConfiguration.psd1 │ │ ├── PSDesiredStateConfiguration.psm1 │ │ ├── PSDesiredStateConfiguration.types.ps1xml │ │ ├── PSDscXMachine.psm1 │ │ ├── Remove-DscConfigurationDocument.cdxml │ │ ├── Restore-DscConfiguration.cdxml │ │ ├── Stop-DscConfiguration.cdxml │ │ ├── WebDownloadManager │ │ │ └── WebDownloadManager.psd1 │ │ └── en-US │ │ │ ├── PSDSCxMachine.strings.psd1 │ │ │ └── PSDesiredStateConfiguration.Resource.psd1 │ ├── SecurityPolicyDsc │ │ ├── DSCResources │ │ │ ├── MSFT_AccountPolicy │ │ │ │ ├── AccountPolicyData.psd1 │ │ │ │ ├── MSFT_AccountPolicy.psm1 │ │ │ │ ├── MSFT_AccountPolicy.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_AccountPolicy.strings.psd1 │ │ │ ├── MSFT_SecurityOption │ │ │ │ ├── MSFT_SecurityOption.psm1 │ │ │ │ ├── MSFT_SecurityOption.schema.mof │ │ │ │ ├── SecurityOptionData.psd1 │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SecurityOption.strings.psd1 │ │ │ ├── MSFT_SecurityTemplate │ │ │ │ ├── MSFT_SecurityTemplate.psm1 │ │ │ │ ├── MSFT_SecurityTemplate.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SecurityTemplate.strings.psd1 │ │ │ └── MSFT_UserRightsAssignment │ │ │ │ ├── MSFT_UserRightsAssignment.psm1 │ │ │ │ ├── MSFT_UserRightsAssignment.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_UserRightsAssignment.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── SecurityPolicyResourceHelper │ │ │ │ ├── SecurityPolicyResourceHelper.psm1 │ │ │ │ ├── UserRightsFriendlyNameConversions.psd1 │ │ │ │ └── en-US │ │ │ │ └── SecurityPolicyResourceHelper.strings.psd1 │ │ └── SecurityPolicyDsc.psd1 │ ├── SharePointDsc │ │ ├── DSCResources │ │ │ ├── MSFT_SPAccessServiceApp │ │ │ │ ├── MSFT_SPAccessServiceApp.psm1 │ │ │ │ └── MSFT_SPAccessServiceApp.schema.mof │ │ │ ├── MSFT_SPAccessServices2010 │ │ │ │ ├── MSFT_SPAccessServices2010.psm1 │ │ │ │ └── MSFT_SPAccessServices2010.schema.mof │ │ │ ├── MSFT_SPAlternateUrl │ │ │ │ ├── MSFT_SPAlternateUrl.psm1 │ │ │ │ └── MSFT_SPAlternateUrl.schema.mof │ │ │ ├── MSFT_SPAntivirusSettings │ │ │ │ ├── MSFT_SPAntivirusSettings.psm1 │ │ │ │ └── MSFT_SPAntivirusSettings.schema.mof │ │ │ ├── MSFT_SPAppCatalog │ │ │ │ ├── MSFT_SPAppCatalog.psm1 │ │ │ │ └── MSFT_SPAppCatalog.schema.mof │ │ │ ├── MSFT_SPAppDomain │ │ │ │ ├── MSFT_SPAppDomain.psm1 │ │ │ │ └── MSFT_SPAppDomain.schema.mof │ │ │ ├── MSFT_SPAppManagementServiceApp │ │ │ │ ├── MSFT_SPAppManagementServiceApp.psm1 │ │ │ │ └── MSFT_SPAppManagementServiceApp.schema.mof │ │ │ ├── MSFT_SPAppStoreSettings │ │ │ │ ├── MSFT_SPAppStoreSettings.psm1 │ │ │ │ └── MSFT_SPAppStoreSettings.schema.mof │ │ │ ├── MSFT_SPAuthenticationRealm │ │ │ │ ├── MSFT_SPAuthenticationRealm.psm1 │ │ │ │ └── MSFT_SPAuthenticationRealm.schema.mof │ │ │ ├── MSFT_SPBCSServiceApp │ │ │ │ ├── MSFT_SPBCSServiceApp.psm1 │ │ │ │ └── MSFT_SPBCSServiceApp.schema.mof │ │ │ ├── MSFT_SPBlobCacheSettings │ │ │ │ ├── MSFT_SPBlobCacheSettings.psm1 │ │ │ │ └── MSFT_SPBlobCacheSettings.schema.mof │ │ │ ├── MSFT_SPCacheAccounts │ │ │ │ ├── MSFT_SPCacheAccounts.psm1 │ │ │ │ └── MSFT_SPCacheAccounts.schema.mof │ │ │ ├── MSFT_SPConfigWizard │ │ │ │ ├── MSFT_SPConfigWizard.psm1 │ │ │ │ └── MSFT_SPConfigWizard.schema.mof │ │ │ ├── MSFT_SPContentDatabase │ │ │ │ ├── MSFT_SPContentDatabase.psm1 │ │ │ │ └── MSFT_SPContentDatabase.schema.mof │ │ │ ├── MSFT_SPDatabaseAAG │ │ │ │ ├── MSFT_SPDatabaseAAG.psm1 │ │ │ │ └── MSFT_SPDatabaseAAG.schema.mof │ │ │ ├── MSFT_SPDesignerSettings │ │ │ │ ├── MSFT_SPDesignerSettings.psm1 │ │ │ │ └── MSFT_SPDesignerSettings.schema.mof │ │ │ ├── MSFT_SPDiagnosticLoggingSettings │ │ │ │ ├── MSFT_SPDiagnosticLoggingSettings.psm1 │ │ │ │ └── MSFT_SPDiagnosticLoggingSettings.schema.mof │ │ │ ├── MSFT_SPDiagnosticsProvider │ │ │ │ ├── MSFT_SPDiagnosticsProvider.psm1 │ │ │ │ └── MSFT_SPDiagnosticsProvider.schema.mof │ │ │ ├── MSFT_SPDistributedCacheClientSettings │ │ │ │ ├── MSFT_SPDistributedCacheClientSettings.psm1 │ │ │ │ └── MSFT_SPDistributedCacheClientSettings.schema.mof │ │ │ ├── MSFT_SPDistributedCacheService │ │ │ │ ├── MSFT_SPDistributedCacheService.psm1 │ │ │ │ └── MSFT_SPDistributedCacheService.schema.mof │ │ │ ├── MSFT_SPExcelServiceApp │ │ │ │ ├── MSFT_SPExcelServiceApp.psm1 │ │ │ │ └── MSFT_SPExcelServiceApp.schema.mof │ │ │ ├── MSFT_SPFarm │ │ │ │ ├── MSFT_SPFarm.psm1 │ │ │ │ └── MSFT_SPFarm.schema.mof │ │ │ ├── MSFT_SPFarmAdministrators │ │ │ │ ├── MSFT_SPFarmAdministrators.psm1 │ │ │ │ └── MSFT_SPFarmAdministrators.schema.mof │ │ │ ├── MSFT_SPFarmPropertyBag │ │ │ │ ├── MSFT_SPFarmPropertyBag.psm1 │ │ │ │ └── MSFT_SPFarmPropertyBag.schema.mof │ │ │ ├── MSFT_SPFarmSolution │ │ │ │ ├── MSFT_SPFarmSolution.psm1 │ │ │ │ └── MSFT_SPFarmSolution.schema.mof │ │ │ ├── MSFT_SPFeature │ │ │ │ ├── MSFT_SPFeature.psm1 │ │ │ │ └── MSFT_SPFeature.schema.mof │ │ │ ├── MSFT_SPHealthAnalyzerRuleState │ │ │ │ ├── MSFT_SPHealthAnalyzerRuleState.psm1 │ │ │ │ └── MSFT_SPHealthAnalyzerRuleState.schema.mof │ │ │ ├── MSFT_SPIncomingEmailSettings │ │ │ │ ├── MSFT_SPIncomingEmailSettings.psm1 │ │ │ │ └── MSFT_SPIncomingEmailSettings.schema.mof │ │ │ ├── MSFT_SPInfoPathFormsServiceConfig │ │ │ │ ├── MSFT_SPInfoPathFormsServiceConfig.psm1 │ │ │ │ └── MSFT_SPInfoPathFormsServiceConfig.schema.mof │ │ │ ├── MSFT_SPInstall │ │ │ │ ├── MSFT_SPInstall.psm1 │ │ │ │ └── MSFT_SPInstall.schema.mof │ │ │ ├── MSFT_SPInstallLanguagePack │ │ │ │ ├── MSFT_SPInstallLanguagePack.psm1 │ │ │ │ └── MSFT_SPInstallLanguagePack.schema.mof │ │ │ ├── MSFT_SPInstallPrereqs │ │ │ │ ├── MSFT_SPInstallPrereqs.psm1 │ │ │ │ └── MSFT_SPInstallPrereqs.schema.mof │ │ │ ├── MSFT_SPIrmSettings │ │ │ │ ├── MSFT_SPIrmSettings.psm1 │ │ │ │ └── MSFT_SPIrmSettings.schema.mof │ │ │ ├── MSFT_SPLogLevel │ │ │ │ ├── MSFT_SPLogLevel.psm1 │ │ │ │ └── MSFT_SPLogLevel.schema.mof │ │ │ ├── MSFT_SPMachineTranslationServiceApp │ │ │ │ ├── MSFT_SPMachineTranslationServiceApp.psm1 │ │ │ │ └── MSFT_SPMachineTranslationServiceApp.schema.mof │ │ │ ├── MSFT_SPManagedAccount │ │ │ │ ├── MSFT_SPManagedAccount.psm1 │ │ │ │ └── MSFT_SPManagedAccount.schema.mof │ │ │ ├── MSFT_SPManagedMetadataServiceApp │ │ │ │ ├── MSFT_SPManagedMetaDataServiceApp.psm1 │ │ │ │ └── MSFT_SPManagedMetaDataServiceApp.schema.mof │ │ │ ├── MSFT_SPManagedMetadataServiceAppDefault │ │ │ │ ├── MSFT_SPManagedMetadataServiceAppDefault.psm1 │ │ │ │ └── MSFT_SPManagedMetadataServiceAppDefault.schema.mof │ │ │ ├── MSFT_SPManagedPath │ │ │ │ ├── MSFT_SPManagedPath.psm1 │ │ │ │ └── MSFT_SPManagedPath.schema.mof │ │ │ ├── MSFT_SPMinRoleCompliance │ │ │ │ ├── MSFT_SPMinRoleCompliance.psm1 │ │ │ │ └── MSFT_SPMinRoleCompliance.schema.mof │ │ │ ├── MSFT_SPOfficeOnlineServerBinding │ │ │ │ ├── MSFT_SPOfficeOnlineServerBinding.psm1 │ │ │ │ └── MSFT_SPOfficeOnlineServerBinding.schema.mof │ │ │ ├── MSFT_SPOutgoingEmailSettings │ │ │ │ ├── MSFT_SPOutgoingEmailSettings.psm1 │ │ │ │ └── MSFT_SPOutgoingEmailSettings.schema.mof │ │ │ ├── MSFT_SPPasswordChangeSettings │ │ │ │ ├── MSFT_SPPasswordChangeSettings.psm1 │ │ │ │ └── MSFT_SPPasswordChangeSettings.schema.mof │ │ │ ├── MSFT_SPPerformancePointServiceApp │ │ │ │ ├── MSFT_SPPerformancePointServiceApp.psm1 │ │ │ │ └── MSFT_SPPerformancePointServiceApp.schema.mof │ │ │ ├── MSFT_SPPowerPointAutomationServiceApp │ │ │ │ ├── MSFT_SPPowerPointAutomationServiceApp.psm1 │ │ │ │ └── MSFT_SPPowerPointAutomationServiceApp.schema.mof │ │ │ ├── MSFT_SPProductUpdate │ │ │ │ ├── MSFT_SPProductUpdate.psm1 │ │ │ │ └── MSFT_SPProductUpdate.schema.mof │ │ │ ├── MSFT_SPProjectServerADResourcePoolSync │ │ │ │ ├── MSFT_SPProjectServerADResourcePoolSync.psm1 │ │ │ │ └── MSFT_SPProjectServerADResourcePoolSync.schema.mof │ │ │ ├── MSFT_SPProjectServerAdditionalSettings │ │ │ │ ├── MSFT_SPProjectServerAdditionalSettings.psm1 │ │ │ │ └── MSFT_SPProjectServerAdditionalSettings.schema.mof │ │ │ ├── MSFT_SPProjectServerGlobalPermissions │ │ │ │ ├── MSFT_SPProjectServerGlobalPermissions.psm1 │ │ │ │ └── MSFT_SPProjectServerGlobalPermissions.schema.mof │ │ │ ├── MSFT_SPProjectServerGroup │ │ │ │ ├── MSFT_SPProjectServerGroup.psm1 │ │ │ │ └── MSFT_SPProjectServerGroup.schema.mof │ │ │ ├── MSFT_SPProjectServerLicense │ │ │ │ ├── MSFT_SPProjectServerLicense.psm1 │ │ │ │ └── MSFT_SPProjectServerLicense.schema.mof │ │ │ ├── MSFT_SPProjectServerPermissionMode │ │ │ │ ├── MSFT_SPProjectServerPermissionMode.psm1 │ │ │ │ └── MSFT_SPProjectServerPermissionMode.schema.mof │ │ │ ├── MSFT_SPProjectServerServiceApp │ │ │ │ ├── MSFT_SPProjectServerServiceApp.psm1 │ │ │ │ └── MSFT_SPProjectServerServiceApp.schema.mof │ │ │ ├── MSFT_SPProjectServerTimeSheetSettings │ │ │ │ ├── MSFT_SPProjectServerTimeSheetSettings.psm1 │ │ │ │ └── MSFT_SPProjectServerTimeSheetSettings.schema.mof │ │ │ ├── MSFT_SPProjectServerUserSyncSettings │ │ │ │ ├── MSFT_SPProjectServerUserSyncSettings.psm1 │ │ │ │ └── MSFT_SPProjectServerUserSyncSettings.schema.mof │ │ │ ├── MSFT_SPProjectServerWssSettings │ │ │ │ ├── MSFT_SPProjectServerWssSettings.psm1 │ │ │ │ └── MSFT_SPProjectServerWssSettings.schema.mof │ │ │ ├── MSFT_SPPublishServiceApplication │ │ │ │ ├── MSFT_SPPublishServiceApplication.psm1 │ │ │ │ └── MSFT_SPPublishServiceApplication.schema.mof │ │ │ ├── MSFT_SPQuotaTemplate │ │ │ │ ├── MSFT_SPQuotaTemplate.psm1 │ │ │ │ └── MSFT_SPQuotaTemplate.schema.mof │ │ │ ├── MSFT_SPRemoteFarmTrust │ │ │ │ ├── MSFT_SPRemoteFarmTrust.psm1 │ │ │ │ └── MSFT_SPRemoteFarmTrust.schema.mof │ │ │ ├── MSFT_SPSearchAuthoritativePage │ │ │ │ ├── MSFT_SPSearchAuthoritativePage.psm1 │ │ │ │ └── MSFT_SPSearchAuthoritativePage.schema.mof │ │ │ ├── MSFT_SPSearchContentSource │ │ │ │ ├── MSFT_SPSearchContentSource.psm1 │ │ │ │ └── MSFT_SPSearchContentSource.schema.mof │ │ │ ├── MSFT_SPSearchCrawlMapping │ │ │ │ ├── MSFT_SPSearchCrawlMapping.psm1 │ │ │ │ └── MSFT_SPSearchCrawlMapping.schema.mof │ │ │ ├── MSFT_SPSearchCrawlRule │ │ │ │ ├── MSFT_SPSearchCrawlRule.psm1 │ │ │ │ └── MSFT_SPSearchCrawlRule.schema.mof │ │ │ ├── MSFT_SPSearchCrawlerImpactRule │ │ │ │ ├── MSFT_SPSearchCrawlerImpactRule.psm1 │ │ │ │ └── MSFT_SPSearchCrawlerImpactRule.schema.mof │ │ │ ├── MSFT_SPSearchFileType │ │ │ │ ├── MSFT_SPSearchFileType.psm1 │ │ │ │ └── MSFT_SPSearchFileType.schema.mof │ │ │ ├── MSFT_SPSearchIndexPartition │ │ │ │ ├── MSFT_SPSearchIndexPartition.psm1 │ │ │ │ └── MSFT_SPSearchIndexPartition.schema.mof │ │ │ ├── MSFT_SPSearchManagedProperty │ │ │ │ ├── MSFT_SPSearchManagedProperty.psm1 │ │ │ │ └── MSFT_SPSearchManagedProperty.schema.mof │ │ │ ├── MSFT_SPSearchMetadataCategory │ │ │ │ ├── MSFT_SPSearchMetadataCategory.psm1 │ │ │ │ └── MSFT_SPSearchMetadataCategory.schema.mof │ │ │ ├── MSFT_SPSearchResultSource │ │ │ │ ├── MSFT_SPSearchResultSource.psm1 │ │ │ │ └── MSFT_SPSearchResultSource.schema.mof │ │ │ ├── MSFT_SPSearchServiceApp │ │ │ │ ├── MSFT_SPSearchServiceApp.psm1 │ │ │ │ └── MSFT_SPSearchServiceApp.schema.mof │ │ │ ├── MSFT_SPSearchServiceSettings │ │ │ │ ├── MSFT_SPSearchServiceSettings.psm1 │ │ │ │ └── MSFT_SPSearchServiceSettings.schema.mof │ │ │ ├── MSFT_SPSearchTopology │ │ │ │ ├── MSFT_SPSearchTopology.psm1 │ │ │ │ └── MSFT_SPSearchTopology.schema.mof │ │ │ ├── MSFT_SPSecureStoreServiceApp │ │ │ │ ├── MSFT_SPSecureStoreServiceApp.psm1 │ │ │ │ └── MSFT_SPSecureStoreServiceApp.schema.mof │ │ │ ├── MSFT_SPSecurityTokenServiceConfig │ │ │ │ ├── MSFT_SPSecurityTokenServiceConfig.psm1 │ │ │ │ └── MSFT_SPSecurityTokenServiceConfig.schema.mof │ │ │ ├── MSFT_SPSelfServiceSiteCreation │ │ │ │ ├── MSFT_SPSelfServiceSiteCreation.psm1 │ │ │ │ └── MSFT_SPSelfServiceSiteCreation.schema.mof │ │ │ ├── MSFT_SPServiceAppPool │ │ │ │ ├── MSFT_SPServiceAppPool.psm1 │ │ │ │ └── MSFT_SPServiceAppPool.schema.mof │ │ │ ├── MSFT_SPServiceAppProxyGroup │ │ │ │ ├── MSFT_SPServiceAppProxyGroup.psm1 │ │ │ │ └── MSFT_SPServiceAppProxyGroup.schema.mof │ │ │ ├── MSFT_SPServiceAppSecurity │ │ │ │ ├── MSFT_SPServiceAppSecurity.psm1 │ │ │ │ └── MSFT_SPServiceAppSecurity.schema.mof │ │ │ ├── MSFT_SPServiceIdentity │ │ │ │ ├── MSFT_SPServiceIdentity.psm1 │ │ │ │ └── MSFT_SPServiceIdentity.schema.mof │ │ │ ├── MSFT_SPServiceInstance │ │ │ │ ├── MSFT_SPServiceInstance.psm1 │ │ │ │ └── MSFT_SPServiceInstance.schema.mof │ │ │ ├── MSFT_SPSessionStateService │ │ │ │ ├── MSFT_SPSessionStateService.psm1 │ │ │ │ └── MSFT_SPSessionStateService.schema.mof │ │ │ ├── MSFT_SPShellAdmins │ │ │ │ ├── MSFT_SPShellAdmins.psm1 │ │ │ │ └── MSFT_SPShellAdmins.schema.mof │ │ │ ├── MSFT_SPSite │ │ │ │ ├── MSFT_SPSite.psm1 │ │ │ │ └── MSFT_SPSite.schema.mof │ │ │ ├── MSFT_SPSiteUrl │ │ │ │ ├── MSFT_SPSiteUrl.psm1 │ │ │ │ └── MSFT_SPSiteUrl.schema.mof │ │ │ ├── MSFT_SPStateServiceApp │ │ │ │ ├── MSFT_SPStateServiceApp.psm1 │ │ │ │ └── MSFT_SPStateServiceApp.schema.mof │ │ │ ├── MSFT_SPSubscriptionSettingsServiceApp │ │ │ │ ├── MSFT_SPSubscriptionSettingsServiceApp.psm1 │ │ │ │ └── MSFT_SPSubscriptionSettingsServiceApp.schema.mof │ │ │ ├── MSFT_SPTimerJobState │ │ │ │ ├── MSFT_SPTimerJobState.psm1 │ │ │ │ └── MSFT_SPTimerJobState.schema.mof │ │ │ ├── MSFT_SPTrustedIdentityTokenIssuer │ │ │ │ ├── MSFT_SPTrustedIdentityTokenIssuer.psm1 │ │ │ │ └── MSFT_SPTrustedIdentityTokenIssuer.schema.mof │ │ │ ├── MSFT_SPTrustedIdentityTokenIssuerProviderRealms │ │ │ │ ├── MSFT_SPTrustedIdentityTokenIssuerProviderRealms.psm1 │ │ │ │ └── MSFT_SPTrustedIdentityTokenIssuerProviderRealms.schema.mof │ │ │ ├── MSFT_SPTrustedRootAuthority │ │ │ │ ├── MSFT_SPTrustedRootAuthority.psm1 │ │ │ │ └── MSFT_SPTrustedRootAuthority.schema.mof │ │ │ ├── MSFT_SPUsageApplication │ │ │ │ ├── MSFT_SPUsageApplication.psm1 │ │ │ │ └── MSFT_SPUsageApplication.schema.mof │ │ │ ├── MSFT_SPUserProfileProperty │ │ │ │ ├── MSFT_SPUserProfileProperty.psm1 │ │ │ │ └── MSFT_SPUserProfileProperty.schema.mof │ │ │ ├── MSFT_SPUserProfileSection │ │ │ │ ├── MSFT_SPUserProfileSection.psm1 │ │ │ │ └── MSFT_SPUserProfileSection.schema.mof │ │ │ ├── MSFT_SPUserProfileServiceApp │ │ │ │ ├── MSFT_SPUserProfileServiceApp.psm1 │ │ │ │ └── MSFT_SPUserProfileServiceApp.schema.mof │ │ │ ├── MSFT_SPUserProfileServiceAppPermissions │ │ │ │ ├── MSFT_SPUserProfileServiceAppPermissions.psm1 │ │ │ │ └── MSFT_SPUserProfileServiceAppPermissions.schema.mof │ │ │ ├── MSFT_SPUserProfileSyncConnection │ │ │ │ ├── MSFT_SPUserProfileSyncConnection.psm1 │ │ │ │ └── MSFT_SPUserProfileSyncConnection.schema.mof │ │ │ ├── MSFT_SPUserProfileSyncService │ │ │ │ ├── MSFT_SPUserProfileSyncService.psm1 │ │ │ │ └── MSFT_SPUserProfileSyncService.schema.mof │ │ │ ├── MSFT_SPVisioServiceApp │ │ │ │ ├── MSFT_SPVisioServiceApp.psm1 │ │ │ │ └── MSFT_SPVisioServiceApp.schema.mof │ │ │ ├── MSFT_SPWeb │ │ │ │ ├── MSFT_SPWeb.psm1 │ │ │ │ └── MSFT_SPWeb.schema.mof │ │ │ ├── MSFT_SPWebAppAuthentication │ │ │ │ ├── MSFT_SPWebAppAuthentication.psm1 │ │ │ │ └── MSFT_SPWebAppAuthentication.schema.mof │ │ │ ├── MSFT_SPWebAppBlockedFileTypes │ │ │ │ ├── MSFT_SPWebAppBlockedFileTypes.psm1 │ │ │ │ └── MSFT_SPWebAppBlockedFileTypes.schema.mof │ │ │ ├── MSFT_SPWebAppClientCallableSettings │ │ │ │ ├── MSFT_SPWebAppClientCallableSettings.psm1 │ │ │ │ └── MSFT_SPWebAppClientCallableSettings.schema.mof │ │ │ ├── MSFT_SPWebAppGeneralSettings │ │ │ │ ├── MSFT_SPWebAppGeneralSettings.psm1 │ │ │ │ └── MSFT_SPWebAppGeneralSettings.schema.mof │ │ │ ├── MSFT_SPWebAppPeoplePickerSettings │ │ │ │ ├── MSFT_SPWebAppPeoplePickerSettings.psm1 │ │ │ │ └── MSFT_SPWebAppPeoplePickerSettings.schema.mof │ │ │ ├── MSFT_SPWebAppPermissions │ │ │ │ ├── MSFT_SPWebAppPermissions.psm1 │ │ │ │ └── MSFT_SPWebAppPermissions.schema.mof │ │ │ ├── MSFT_SPWebAppPolicy │ │ │ │ ├── MSFT_SPWebAppPolicy.psm1 │ │ │ │ └── MSFT_SPWebAppPolicy.schema.mof │ │ │ ├── MSFT_SPWebAppPropertyBag │ │ │ │ ├── MSFT_SPWebAppPropertyBag.psm1 │ │ │ │ └── MSFT_SPWebAppPropertyBag.schema.mof │ │ │ ├── MSFT_SPWebAppProxyGroup │ │ │ │ ├── MSFT_SPWebAppProxyGroup.psm1 │ │ │ │ └── MSFT_SPWebAppProxyGroup.schema.mof │ │ │ ├── MSFT_SPWebAppSiteUseAndDeletion │ │ │ │ ├── MSFT_SPWebAppSiteUseAndDeletion.psm1 │ │ │ │ └── MSFT_SPWebAppSiteUseAndDeletion.schema.mof │ │ │ ├── MSFT_SPWebAppSuiteBar │ │ │ │ ├── MSFT_SPWebAppSuiteBar.psm1 │ │ │ │ └── MSFT_SPWebAppSuiteBar.schema.mof │ │ │ ├── MSFT_SPWebAppThrottlingSettings │ │ │ │ ├── MSFT_SPWebAppThrottlingSettings.psm1 │ │ │ │ └── MSFT_SPWebAppThrottlingSettings.schema.mof │ │ │ ├── MSFT_SPWebAppWorkflowSettings │ │ │ │ ├── MSFT_SPWebAppWorkflowSettings.psm1 │ │ │ │ └── MSFT_SPWebAppWorkflowSettings.schema.mof │ │ │ ├── MSFT_SPWebApplication │ │ │ │ ├── MSFT_SPWebApplication.psm1 │ │ │ │ └── MSFT_SPWebApplication.schema.mof │ │ │ ├── MSFT_SPWebApplicationAppDomain │ │ │ │ ├── MSFT_SPWebApplicationAppDomain.psm1 │ │ │ │ └── MSFT_SPWebApplicationAppDomain.schema.mof │ │ │ ├── MSFT_SPWebApplicationExtension │ │ │ │ ├── MSFT_SPWebApplicationExtension.psm1 │ │ │ │ └── MSFT_SPWebApplicationExtension.schema.mof │ │ │ ├── MSFT_SPWordAutomationServiceApp │ │ │ │ ├── MSFT_SPWordAutomationServiceApp.psm1 │ │ │ │ └── MSFT_SPWordAutomationServiceApp.schema.mof │ │ │ ├── MSFT_SPWorkManagementServiceApp │ │ │ │ ├── MSFT_SPWorkManagementServiceApp.psm1 │ │ │ │ └── MSFT_SPWorkManagementServiceApp.schema.mof │ │ │ └── MSFT_SPWorkflowService │ │ │ │ ├── MSFT_SPWorkflowService.psm1 │ │ │ │ └── MSFT_SPWorkflowService.schema.mof │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── SharePointDsc.ContentDatabase │ │ │ │ └── SPContentDatabase.psm1 │ │ │ ├── SharePointDsc.Farm │ │ │ │ └── SPFarm.psm1 │ │ │ ├── SharePointDsc.ProjectServer │ │ │ │ ├── ProjectServerConnector.psm1 │ │ │ │ └── ProjectServerServices.dll │ │ │ ├── SharePointDsc.Search │ │ │ │ └── SPSearchContentSource.Schedules.psm1 │ │ │ ├── SharePointDsc.ServiceAppSecurity │ │ │ │ └── SPServiceAppSecurity.psm1 │ │ │ ├── SharePointDsc.Util │ │ │ │ └── SharePointDsc.Util.psm1 │ │ │ ├── SharePointDsc.WebAppPolicy │ │ │ │ └── SPWebAppPolicy.psm1 │ │ │ └── SharePointDsc.WebApplication │ │ │ │ ├── SPWebApplication.BlockedFileTypes.psm1 │ │ │ │ ├── SPWebApplication.GeneralSettings.psm1 │ │ │ │ ├── SPWebApplication.Throttling.psm1 │ │ │ │ └── SPWebApplication.Workflow.psm1 │ │ ├── SharePointDsc.psd1 │ │ └── Source │ │ │ └── ProjectServerServices │ │ │ ├── output.config │ │ │ ├── wcf.Admin.cs │ │ │ ├── wcf.Archive.cs │ │ │ ├── wcf.Calendar.cs │ │ │ ├── wcf.CubeAdmin.cs │ │ │ ├── wcf.CustomFields.cs │ │ │ ├── wcf.Driver.cs │ │ │ ├── wcf.Events.cs │ │ │ ├── wcf.LookupTable.cs │ │ │ ├── wcf.Notifications.cs │ │ │ ├── wcf.ObjectLinkProvider.cs │ │ │ ├── wcf.PortfolioAnalyses.cs │ │ │ ├── wcf.Project.cs │ │ │ ├── wcf.QueueSystem.cs │ │ │ ├── wcf.Resource.cs │ │ │ ├── wcf.ResourcePlan.cs │ │ │ ├── wcf.Security.cs │ │ │ ├── wcf.Statusing.cs │ │ │ ├── wcf.TimeSheet.cs │ │ │ ├── wcf.Workflow.cs │ │ │ ├── wcf.WssInterop.cs │ │ │ ├── wsdl.LoginForms.cs │ │ │ └── wsdl.LoginWindows.cs │ ├── SqlServerDsc │ │ ├── DSCResources │ │ │ ├── CommonResourceHelper.psm1 │ │ │ ├── MSFT_SqlAG │ │ │ │ ├── MSFT_SqlAG.psm1 │ │ │ │ └── MSFT_SqlAG.schema.mof │ │ │ ├── MSFT_SqlAGDatabase │ │ │ │ ├── MSFT_SqlAGDatabase.psm1 │ │ │ │ ├── MSFT_SqlAGDatabase.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlAGDatabase.strings.psd1 │ │ │ ├── MSFT_SqlAGListener │ │ │ │ ├── MSFT_SqlAGListener.psm1 │ │ │ │ └── MSFT_SqlAGListener.schema.mof │ │ │ ├── MSFT_SqlAGReplica │ │ │ │ ├── MSFT_SqlAGReplica.psm1 │ │ │ │ └── MSFT_SqlAGReplica.schema.mof │ │ │ ├── MSFT_SqlAgentOperator │ │ │ │ ├── MSFT_SqlAgentOperator.psm1 │ │ │ │ ├── MSFT_SqlAgentOperator.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlAgentOperator.strings.psd1 │ │ │ ├── MSFT_SqlAlias │ │ │ │ ├── MSFT_SqlAlias.psm1 │ │ │ │ └── MSFT_SqlAlias.schema.mof │ │ │ ├── MSFT_SqlAlwaysOnService │ │ │ │ ├── MSFT_SqlAlwaysOnService.psm1 │ │ │ │ └── MSFT_SqlAlwaysOnService.schema.mof │ │ │ ├── MSFT_SqlDatabase │ │ │ │ ├── MSFT_SqlDatabase.psm1 │ │ │ │ └── MSFT_SqlDatabase.schema.mof │ │ │ ├── MSFT_SqlDatabaseDefaultLocation │ │ │ │ ├── MSFT_SqlDatabaseDefaultLocation.psm1 │ │ │ │ ├── MSFT_SqlDatabaseDefaultLocation.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlDatabaseDefaultLocation.strings.psd1 │ │ │ ├── MSFT_SqlDatabaseOwner │ │ │ │ ├── MSFT_SqlDatabaseOwner.psm1 │ │ │ │ └── MSFT_SqlDatabaseOwner.schema.mof │ │ │ ├── MSFT_SqlDatabasePermission │ │ │ │ ├── MSFT_SqlDatabasePermission.psm1 │ │ │ │ └── MSFT_SqlDatabasePermission.schema.mof │ │ │ ├── MSFT_SqlDatabaseRecoveryModel │ │ │ │ ├── MSFT_SqlDatabaseRecoveryModel.psm1 │ │ │ │ └── MSFT_SqlDatabaseRecoveryModel.schema.mof │ │ │ ├── MSFT_SqlDatabaseRole │ │ │ │ ├── MSFT_SqlDatabaseRole.psm1 │ │ │ │ └── MSFT_SqlDatabaseRole.schema.mof │ │ │ ├── MSFT_SqlRS │ │ │ │ ├── MSFT_SqlRS.psm1 │ │ │ │ └── MSFT_SqlRS.schema.mof │ │ │ ├── MSFT_SqlScript │ │ │ │ ├── MSFT_SqlScript.psm1 │ │ │ │ └── MSFT_SqlScript.schema.mof │ │ │ ├── MSFT_SqlScriptQuery │ │ │ │ ├── MSFT_SqlScriptQuery.psm1 │ │ │ │ └── MSFT_SqlScriptQuery.schema.mof │ │ │ ├── MSFT_SqlServerConfiguration │ │ │ │ ├── MSFT_SqlServerConfiguration.psm1 │ │ │ │ ├── MSFT_SqlServerConfiguration.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServerConfiguration.strings.psd1 │ │ │ ├── MSFT_SqlServerDatabaseMail │ │ │ │ ├── MSFT_SqlServerDatabaseMail.psm1 │ │ │ │ ├── MSFT_SqlServerDatabaseMail.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServerDatabaseMail.strings.psd1 │ │ │ ├── MSFT_SqlServerEndpoint │ │ │ │ ├── MSFT_SqlServerEndpoint.psm1 │ │ │ │ └── MSFT_SqlServerEndpoint.schema.mof │ │ │ ├── MSFT_SqlServerEndpointPermission │ │ │ │ ├── MSFT_SqlServerEndpointPermission.psm1 │ │ │ │ └── MSFT_SqlServerEndpointPermission.schema.mof │ │ │ ├── MSFT_SqlServerEndpointState │ │ │ │ ├── MSFT_SqlServerEndpointState.psm1 │ │ │ │ └── MSFT_SqlServerEndpointState.schema.mof │ │ │ ├── MSFT_SqlServerLogin │ │ │ │ ├── MSFT_SqlServerLogin.psm1 │ │ │ │ └── MSFT_SqlServerLogin.schema.mof │ │ │ ├── MSFT_SqlServerMaxDop │ │ │ │ ├── MSFT_SqlServerMaxDop.psm1 │ │ │ │ └── MSFT_SqlServerMaxDop.schema.mof │ │ │ ├── MSFT_SqlServerMemory │ │ │ │ ├── MSFT_SqlServerMemory.psm1 │ │ │ │ └── MSFT_SqlServerMemory.schema.mof │ │ │ ├── MSFT_SqlServerNetwork │ │ │ │ ├── MSFT_SqlServerNetwork.psm1 │ │ │ │ ├── MSFT_SqlServerNetwork.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServerNetwork.strings.psd1 │ │ │ ├── MSFT_SqlServerPermission │ │ │ │ ├── MSFT_SqlServerPermission.psm1 │ │ │ │ └── MSFT_SqlServerPermission.schema.mof │ │ │ ├── MSFT_SqlServerReplication │ │ │ │ ├── MSFT_SqlServerReplication.psm1 │ │ │ │ └── MSFT_SqlServerReplication.schema.mof │ │ │ ├── MSFT_SqlServerRole │ │ │ │ ├── MSFT_SqlServerRole.psm1 │ │ │ │ ├── MSFT_SqlServerRole.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServerRole.strings.psd1 │ │ │ ├── MSFT_SqlServerSecureConnection │ │ │ │ ├── MSFT_SqlServerSecureConnection.psm1 │ │ │ │ ├── MSFT_SqlServerSecureConnection.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServerSecureConnection.strings.psd1 │ │ │ ├── MSFT_SqlServiceAccount │ │ │ │ ├── MSFT_SqlServiceAccount.psm1 │ │ │ │ ├── MSFT_SqlServiceAccount.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_SqlServiceAccount.strings.psd1 │ │ │ ├── MSFT_SqlSetup │ │ │ │ ├── MSFT_SqlSetup.psm1 │ │ │ │ ├── MSFT_SqlSetup.schema.mof │ │ │ │ ├── en-US │ │ │ │ │ └── MSFT_SqlSetup.strings.psd1 │ │ │ │ └── sv-SE │ │ │ │ │ └── MSFT_SqlSetup.strings.psd1 │ │ │ ├── MSFT_SqlWaitForAG │ │ │ │ ├── MSFT_SqlWaitForAG.psm1 │ │ │ │ └── MSFT_SqlWaitForAG.schema.mof │ │ │ └── MSFT_SqlWindowsFirewall │ │ │ │ ├── MSFT_SqlWindowsFirewall.psm1 │ │ │ │ └── MSFT_SqlWindowsFirewall.schema.mof │ │ ├── LICENSE │ │ ├── SQLServerDsc.psd1 │ │ ├── SqlServerDscHelper.psm1 │ │ ├── en-US │ │ │ └── SqlServerDscHelper.strings.psd1 │ │ └── sv-SE │ │ │ └── SqlServerDscHelper.strings.psd1 │ ├── StorageDsc │ │ ├── DSCResources │ │ │ ├── MSFTDSC_Disk │ │ │ │ ├── MSFTDSC_Disk.psm1 │ │ │ │ ├── MSFTDSC_Disk.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFTDSC_Disk.strings.psd1 │ │ │ ├── MSFT_DiskAccessPath │ │ │ │ ├── MSFT_DiskAccessPath.psm1 │ │ │ │ ├── MSFT_DiskAccessPath.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_DiskAccessPath.strings.psd1 │ │ │ ├── MSFT_MountImage │ │ │ │ ├── MSFT_MountImage.psm1 │ │ │ │ ├── MSFT_MountImage.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_MountImage.strings.psd1 │ │ │ ├── MSFT_OpticalDiskDriveLetter │ │ │ │ ├── MSFT_OpticalDiskDriveLetter.psm1 │ │ │ │ ├── MSFT_OpticalDiskDriveLetter.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_OpticalDiskDriveLetter.strings.psd1 │ │ │ ├── MSFT_WaitForDisk │ │ │ │ ├── MSFT_WaitForDisk.psm1 │ │ │ │ ├── MSFT_WaitForDisk.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_WaitForDisk.strings.psd1 │ │ │ └── MSFT_WaitForVolume │ │ │ │ ├── MSFT_WaitForVolume.psm1 │ │ │ │ ├── MSFT_WaitForVolume.schema.mof │ │ │ │ └── en-us │ │ │ │ └── MSFT_WaitForVolume.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── StorageDsc.Common │ │ │ │ ├── StorageDsc.Common.psm1 │ │ │ │ └── en-us │ │ │ │ │ └── StorageDsc.Common.strings.psd1 │ │ │ └── StorageDsc.ResourceHelper │ │ │ │ └── StorageDsc.ResourceHelper.psm1 │ │ └── StorageDsc.psd1 │ ├── SystemLocaleDsc │ │ ├── DSCResources │ │ │ └── MSFT_SystemLocale │ │ │ │ ├── MSFT_SystemLocale.psm1 │ │ │ │ ├── MSFT_SystemLocale.schema.mof │ │ │ │ └── en-us │ │ │ │ └── MSFT_SystemLocale.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── SystemLocaleDsc.ResourceHelper │ │ │ │ └── SystemLocaleDsc.ResourceHelper.psm1 │ │ └── SystemLocaleDsc.psd1 │ ├── WSManDsc │ │ ├── DSCResources │ │ │ ├── DSR_WSManListener │ │ │ │ ├── DSR_WSManListener.psm1 │ │ │ │ ├── DSR_WSManListener.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── DSR_WSManListener.strings.psd1 │ │ │ └── DSR_WSManServiceConfig │ │ │ │ ├── DSR_WSManServiceConfig.data.psd1 │ │ │ │ ├── DSR_WSManServiceConfig.psm1 │ │ │ │ ├── DSR_WSManServiceConfig.schema.mof │ │ │ │ └── en-US │ │ │ │ └── DSR_WSManServiceConfig.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── WSManDsc.ResourceHelper │ │ │ │ └── WSManDsc.ResourceHelper.psm1 │ │ ├── PSScriptAnalyzerSettings.psd1 │ │ └── WSManDsc.psd1 │ ├── WmiNamespaceSecurityDsc │ │ ├── LICENSE │ │ ├── WmiNamespaceSecurity.psd1 │ │ └── WmiNamespaceSecurity.psm1 │ ├── iSCSIDsc │ │ ├── DSCResources │ │ │ ├── DSR_iSCSIInitiator │ │ │ │ ├── DSR_iSCSIInitiator.psm1 │ │ │ │ ├── DSR_iSCSIInitiator.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── DSR_iSCSIInitiator.strings.psd1 │ │ │ ├── DSR_iSCSIServerTarget │ │ │ │ ├── DSR_iSCSIServerTarget.psm1 │ │ │ │ ├── DSR_iSCSIServerTarget.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── DSR_iSCSIServerTarget.strings.psd1 │ │ │ └── DSR_iSCSIVirtualDisk │ │ │ │ ├── DSR_iSCSIVirtualDisk.psm1 │ │ │ │ ├── DSR_iSCSIVirtualDisk.schema.mof │ │ │ │ └── en-us │ │ │ │ └── DSR_iSCSIVirtualDisk.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── iSCSIDsc.ResourceHelper │ │ │ │ └── iSCSIDsc.ResourceHelper.psm1 │ │ ├── PSScriptAnalyzerSettings.psd1 │ │ └── iSCSIDsc.psd1 │ ├── xActiveDirectory │ │ ├── Assert-HADC.ps1 │ │ ├── Assert-ParentChildDomains.ps1 │ │ ├── DSCResources │ │ │ ├── MSFT_xADCommon │ │ │ │ └── MSFT_xADCommon.psm1 │ │ │ ├── MSFT_xADComputer │ │ │ │ ├── MSFT_xADComputer.psm1 │ │ │ │ ├── MSFT_xADComputer.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xADComputer.psd1 │ │ │ ├── MSFT_xADDomain │ │ │ │ ├── MSFT_xADDomain.psm1 │ │ │ │ └── MSFT_xADDomain.schema.mof │ │ │ ├── MSFT_xADDomainController │ │ │ │ ├── MSFT_xADDomainController.psm1 │ │ │ │ └── MSFT_xADDomainController.schema.mof │ │ │ ├── MSFT_xADDomainDefaultPasswordPolicy │ │ │ │ ├── MSFT_xADDomainDefaultPasswordPolicy.psm1 │ │ │ │ └── MSFT_xADDomainDefaultPasswordPolicy.schema.mof │ │ │ ├── MSFT_xADDomainTrust │ │ │ │ ├── MSFT_xADDomainTrust.psm1 │ │ │ │ └── MSFT_xADDomainTrust.schema.mof │ │ │ ├── MSFT_xADForestProperties │ │ │ │ ├── MSFT_xADForestProperties.psm1 │ │ │ │ ├── MSFT_xADForestProperties.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_xADForestProperties.strings.psd1 │ │ │ ├── MSFT_xADGroup │ │ │ │ ├── MSFT_xADGroup.psm1 │ │ │ │ └── MSFT_xADGroup.schema.mof │ │ │ ├── MSFT_xADObjectPermissionEntry │ │ │ │ ├── MSFT_xADObjectPermissionEntry.psm1 │ │ │ │ └── MSFT_xADObjectPermissionEntry.schema.mof │ │ │ ├── MSFT_xADOrganizationalUnit │ │ │ │ ├── MSFT_xADOrganizationalUnit.psm1 │ │ │ │ └── MSFT_xADOrganizationalUnit.schema.mof │ │ │ ├── MSFT_xADRecycleBin │ │ │ │ ├── MSFT_xADRecycleBin.psm1 │ │ │ │ ├── MSFT_xADRecycleBin.schema.mof │ │ │ │ └── ResourceDesignerScripts │ │ │ │ │ └── GeneratexADRecycleBinSchema.ps1 │ │ │ ├── MSFT_xADReplicationSite │ │ │ │ ├── MSFT_xADReplicationSite.psm1 │ │ │ │ └── MSFT_xADReplicationSite.schema.mof │ │ │ ├── MSFT_xADReplicationSubnet │ │ │ │ ├── MSFT_xADReplicationSubnet.psm1 │ │ │ │ └── MSFT_xADReplicationSubnet.schema.mof │ │ │ ├── MSFT_xADServicePrincipalName │ │ │ │ ├── MSFT_xADServicePrincipalName.psm1 │ │ │ │ └── MSFT_xADServicePrincipalName.schema.mof │ │ │ ├── MSFT_xADUser │ │ │ │ ├── MSFT_xADUser.psm1 │ │ │ │ └── MSFT_xADUser.schema.mof │ │ │ └── MSFT_xWaitForADDomain │ │ │ │ ├── MSFT_xWaitForADDomain.psm1 │ │ │ │ └── MSFT_xWaitForADDomain.schema.mof │ │ ├── HADCConfiguration.psd1 │ │ ├── LICENSE │ │ ├── Misc │ │ │ └── New-ADDomainTrust.ps1 │ │ ├── ParentChildConfig.psd1 │ │ └── xActiveDirectory.psd1 │ ├── xAzure │ │ ├── DSCResources │ │ │ ├── MSFT_xAzureAffinityGroup │ │ │ │ ├── MSFT_xAzureAffinityGroup.psm1 │ │ │ │ └── MSFT_xAzureAffinityGroup.schema.mof │ │ │ ├── MSFT_xAzureQuickVM │ │ │ │ ├── MSFT_xAzureQuickVM.psm1 │ │ │ │ └── MSFT_xAzureQuickVM.schema.mof │ │ │ ├── MSFT_xAzureService │ │ │ │ ├── MSFT_xAzureService.psm1 │ │ │ │ └── MSFT_xAzureService.schema.mof │ │ │ ├── MSFT_xAzureSqlDatabase │ │ │ │ ├── MSFT_xAzureSqlDatabase.psm1 │ │ │ │ └── MSFT_xAzureSqlDatabase.schema.mof │ │ │ ├── MSFT_xAzureSqlDatabaseServerFirewallRule │ │ │ │ ├── MSFT_xAzureSqlDatabaseServerFirewallRule.psm1 │ │ │ │ └── MSFT_xAzureSqlDatabaseServerFirewallRule.schema.mof │ │ │ ├── MSFT_xAzureStorageAccount │ │ │ │ ├── MSFT_xAzureStorageAccount.psm1 │ │ │ │ └── MSFT_xAzureStorageAccount.schema.mof │ │ │ ├── MSFT_xAzureSubscription │ │ │ │ ├── MSFT_xAzureSubscription.psm1 │ │ │ │ └── MSFT_xAzureSubscription.schema.mof │ │ │ ├── MSFT_xAzureVM │ │ │ │ ├── MSFT_xAzureVM.psm1 │ │ │ │ └── MSFT_xAzureVM.schema.mof │ │ │ ├── MSFT_xAzureVMDscConfiguration │ │ │ │ ├── MSFT_xAzureVMDscConfiguration.psm1 │ │ │ │ └── MSFT_xAzureVMDscConfiguration.schema.mof │ │ │ └── MSFT_xAzureVMDscExtension │ │ │ │ ├── MSFT_xAzureVMDscExtension.psm1 │ │ │ │ └── MSFT_xAzureVMDscExtension.schema.mof │ │ ├── LICENSE │ │ ├── ResourceDesignerScripts │ │ │ ├── GenerateXAzureSqlDatabase.ps1 │ │ │ └── GenerateXAzureSqlDatabaseServerFirewallRule.ps1 │ │ └── xAzure.psd1 │ ├── xAzurePack │ │ ├── DSCResources │ │ │ ├── MSFT_xAzurePackAdmin │ │ │ │ ├── MSFT_xAzurePackAdmin.psm1 │ │ │ │ └── MSFT_xAzurePackAdmin.schema.mof │ │ │ ├── MSFT_xAzurePackDatabaseSetting │ │ │ │ ├── MSFT_xAzurePackDatabaseSetting.psm1 │ │ │ │ └── MSFT_xAzurePackDatabaseSetting.schema.mof │ │ │ ├── MSFT_xAzurePackFQDN │ │ │ │ ├── MSFT_xAzurePackFQDN.psm1 │ │ │ │ └── MSFT_xAzurePackFQDN.schema.mof │ │ │ ├── MSFT_xAzurePackIdentityProvider │ │ │ │ ├── MSFT_xAzurePackIdentityProvider.psm1 │ │ │ │ └── MSFT_xAzurePackIdentityProvider.schema.mof │ │ │ ├── MSFT_xAzurePackRelyingParty │ │ │ │ ├── MSFT_xAzurePackRelyingParty.psm1 │ │ │ │ └── MSFT_xAzurePackRelyingParty.schema.mof │ │ │ ├── MSFT_xAzurePackResourceProvider │ │ │ │ ├── MSFT_xAzurePackResourceProvider.psm1 │ │ │ │ └── MSFT_xAzurePackResourceProvider.schema.mof │ │ │ ├── MSFT_xAzurePackSetup │ │ │ │ ├── MSFT_xAzurePackSetup.psm1 │ │ │ │ └── MSFT_xAzurePackSetup.schema.mof │ │ │ └── MSFT_xAzurePackUpdate │ │ │ │ ├── MSFT_xAzurePackUpdate.psm1 │ │ │ │ └── MSFT_xAzurePackUpdate.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xAzurePack.psd1 │ │ └── xPDT.psm1 │ ├── xBitlocker │ │ ├── DSCResources │ │ │ ├── MSFT_xBLAutoBitlocker │ │ │ │ ├── MSFT_xBLAutoBitlocker.psm1 │ │ │ │ └── MSFT_xBLAutoBitlocker.schema.mof │ │ │ ├── MSFT_xBLBitlocker │ │ │ │ ├── MSFT_xBLBitlocker.psm1 │ │ │ │ └── MSFT_xBLBitlocker.schema.mof │ │ │ └── MSFT_xBLTpm │ │ │ │ ├── MSFT_xBLTpm.psm1 │ │ │ │ └── MSFT_xBLTpm.schema.mof │ │ ├── LICENSE │ │ ├── Misc │ │ │ └── xBitlockerCommon.psm1 │ │ └── xBitlocker.psd1 │ ├── xCredSSP │ │ ├── DSCResources │ │ │ └── MSFT_xCredSSP │ │ │ │ ├── MSFT_xCredSSP.psm1 │ │ │ │ └── MSFT_xCredSSP.schema.mof │ │ ├── LICENSE │ │ └── xCredSSP.psd1 │ ├── xDatabase │ │ ├── DSCResources │ │ │ ├── MSFT_xDBPackage │ │ │ │ ├── MSFT_xDBPackage.psm1 │ │ │ │ └── MSFT_xDBPackage.schema.mof │ │ │ ├── MSFT_xDatabase │ │ │ │ ├── MSFT_xDatabase.psm1 │ │ │ │ └── MSFT_xDatabase.schema.mof │ │ │ ├── MSFT_xDatabaseLogin │ │ │ │ ├── MSFT_xDatabaseLogin.psm1 │ │ │ │ ├── MSFT_xDatabaseLogin.schema.mof │ │ │ │ └── MSFT_xDatabaseLoginWithDefaultDB.psm1 │ │ │ ├── MSFT_xDatabaseServer │ │ │ │ ├── MSFT_xDatabaseServer.psm1 │ │ │ │ └── MSFT_xDatabaseServer.schema.mof │ │ │ └── xDatabase_Common │ │ │ │ └── xDatabase_Common.psm1 │ │ ├── LICENSE │ │ └── xDatabase.psd1 │ ├── xDefender │ │ ├── DSCResources │ │ │ └── MSFT_xMpPreference │ │ │ │ ├── MSFT_xMpPreference.psm1 │ │ │ │ └── MSFT_xMpPreference.schema.mof │ │ ├── LICENSE │ │ └── xDefender.psd1 │ ├── xDhcpServer │ │ ├── DSCResources │ │ │ ├── Helper.psm1 │ │ │ ├── MSFT_DhcpPolicyOptionValue │ │ │ │ ├── MSFT_DhcpPolicyOptionValue.psm1 │ │ │ │ └── MSFT_DhcpPolicyOptionValue.schema.mof │ │ │ ├── MSFT_DhcpReservedIPOptionValue │ │ │ │ ├── MSFT_DhcpReservedIPOptionValue.psm1 │ │ │ │ └── MSFT_DhcpReservedIPOptionValue.schema.mof │ │ │ ├── MSFT_DhcpScopeOptionValue │ │ │ │ ├── MSFT_DhcpScopeOptionValue.psm1 │ │ │ │ └── MSFT_DhcpScopeOptionValue.schema.mof │ │ │ ├── MSFT_DhcpServerOptionValue │ │ │ │ ├── MSFT_DhcpServerOptionValue.psm1 │ │ │ │ └── MSFT_DhcpServerOptionValue.schema.mof │ │ │ ├── MSFT_xDhcpServerAuthorization │ │ │ │ ├── MSFT_xDhcpServerAuthorization.psm1 │ │ │ │ └── MSFT_xDhcpServerAuthorization.schema.mof │ │ │ ├── MSFT_xDhcpServerClass │ │ │ │ ├── MSFT_xDhcpServerClass.psm1 │ │ │ │ └── MSFT_xDhcpServerClass.schema.mof │ │ │ ├── MSFT_xDhcpServerOption │ │ │ │ ├── MSFT_xDhcpServerOption.psm1 │ │ │ │ └── MSFT_xDhcpServerOption.schema.mof │ │ │ ├── MSFT_xDhcpServerOptionDefinition │ │ │ │ ├── MSFT_xDhcpServerOptionDefinition.psm1 │ │ │ │ └── MSFT_xDhcpServerOptionDefinition.schema.mof │ │ │ ├── MSFT_xDhcpServerReservation │ │ │ │ ├── MSFT_xDhcpServerReservation.psm1 │ │ │ │ └── MSFT_xDhcpServerReservation.schema.mof │ │ │ └── MSFT_xDhcpServerScope │ │ │ │ ├── MSFT_xDhcpServerScope.psm1 │ │ │ │ └── MSFT_xDhcpServerScope.schema.mof │ │ ├── LICENSE │ │ ├── Misc │ │ │ ├── New-DhcpServerOptionResource.ps1 │ │ │ ├── New-DhcpServerReservationResource.ps1 │ │ │ └── New-DhcpServerScopeResource.ps1 │ │ ├── Modules │ │ │ ├── CommonResourceHelper.psm1 │ │ │ └── DhcpServerDsc.OptionValueHelper │ │ │ │ ├── OptionValueHelper.psm1 │ │ │ │ └── en-US │ │ │ │ └── OptionValueHelper.strings.psd1 │ │ └── xDhcpServer.psd1 │ ├── xDisk │ │ ├── DSCResources │ │ │ ├── MSFT_xDisk │ │ │ │ ├── MSFT_xDisk.psm1 │ │ │ │ └── MSFT_xDisk.schema.mof │ │ │ └── MSFT_xWaitForDisk │ │ │ │ ├── MSFT_xWaitForDisk.psm1 │ │ │ │ └── MSFT_xWaitForDisk.schema.mof │ │ └── xDisk.psd1 │ ├── xDismFeature │ │ ├── DSCResources │ │ │ └── MSFT_xDismFeature │ │ │ │ ├── MSFT_xDismFeature.psm1 │ │ │ │ └── MSFT_xDismFeature.schema.mof │ │ ├── LICENSE │ │ └── xDismFeature.psd1 │ ├── xDnsServer │ │ ├── DSCResources │ │ │ ├── Helper.psm1 │ │ │ ├── MSFT_xDnsARecord │ │ │ │ ├── MSFT_xDnsARecord.psm1 │ │ │ │ └── MSFT_xDnsARecord.schema.mof │ │ │ ├── MSFT_xDnsRecord │ │ │ │ ├── MSFT_xDnsRecord.psm1 │ │ │ │ └── MSFT_xDnsRecord.schema.mof │ │ │ ├── MSFT_xDnsServerADZone │ │ │ │ ├── MSFT_xDnsServerADZone.psm1 │ │ │ │ └── MSFT_xDnsServerADZone.schema.mof │ │ │ ├── MSFT_xDnsServerForwarder │ │ │ │ ├── MSFT_xDnsServerForwarder.psm1 │ │ │ │ └── MSFT_xDnsServerForwarder.schema.mof │ │ │ ├── MSFT_xDnsServerPrimaryZone │ │ │ │ ├── MSFT_xDnsServerPrimaryZone.psm1 │ │ │ │ └── MSFT_xDnsServerPrimaryZone.schema.mof │ │ │ ├── MSFT_xDnsServerSecondaryZone │ │ │ │ ├── MSFT_xDnsServerSecondaryZone.psm1 │ │ │ │ └── MSFT_xDnsServerSecondaryZone.schema.mof │ │ │ ├── MSFT_xDnsServerSetting │ │ │ │ ├── MSFT_xDnsServerSetting.psm1 │ │ │ │ └── MSFT_xDnsServerSetting.schema.mof │ │ │ ├── MSFT_xDnsServerZoneAging │ │ │ │ ├── MSFT_xDnsServerZoneAging.psm1 │ │ │ │ └── MSFT_xDnsServerZoneAging.schema.mof │ │ │ └── MSFT_xDnsServerZoneTransfer │ │ │ │ ├── MSFT_xDnsServerZoneTransfer.psm1 │ │ │ │ └── MSFT_xDnsServerZoneTransfer.schema.mof │ │ ├── LICENSE │ │ ├── Misc │ │ │ ├── Generate_xDnsServerSetting.ps1 │ │ │ ├── New-DnsServerSecondaryZone.ps1 │ │ │ └── New-DnsServerZoneTransfer.ps1 │ │ └── xDnsServer.psd1 │ ├── xExchange │ │ ├── DSCResources │ │ │ ├── MSFT_xExchActiveSyncVirtualDirectory │ │ │ │ ├── MSFT_xExchActiveSyncVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchActiveSyncVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchAntiMalwareScanning │ │ │ │ ├── MSFT_xExchAntiMalwareScanning.psm1 │ │ │ │ └── MSFT_xExchAntiMalwareScanning.schema.mof │ │ │ ├── MSFT_xExchAutoMountPoint │ │ │ │ ├── MSFT_xExchAutoMountPoint.psm1 │ │ │ │ └── MSFT_xExchAutoMountPoint.schema.mof │ │ │ ├── MSFT_xExchAutodiscoverVirtualDirectory │ │ │ │ ├── MSFT_xExchAutodiscoverVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchAutodiscoverVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchClientAccessServer │ │ │ │ ├── MSFT_xExchClientAccessServer.psm1 │ │ │ │ └── MSFT_xExchClientAccessServer.schema.mof │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroup │ │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroup.psm1 │ │ │ │ └── MSFT_xExchDatabaseAvailabilityGroup.schema.mof │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroupMember │ │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroupMember.psm1 │ │ │ │ └── MSFT_xExchDatabaseAvailabilityGroupMember.schema.mof │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroupNetwork │ │ │ │ ├── MSFT_xExchDatabaseAvailabilityGroupNetwork.psm1 │ │ │ │ └── MSFT_xExchDatabaseAvailabilityGroupNetwork.schema.mof │ │ │ ├── MSFT_xExchEcpVirtualDirectory │ │ │ │ ├── MSFT_xExchEcpVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchEcpVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchEventLogLevel │ │ │ │ ├── MSFT_xExchEventLogLevel.psm1 │ │ │ │ └── MSFT_xExchEventLogLevel.schema.mof │ │ │ ├── MSFT_xExchExchangeCertificate │ │ │ │ ├── MSFT_xExchExchangeCertificate.psm1 │ │ │ │ └── MSFT_xExchExchangeCertificate.schema.mof │ │ │ ├── MSFT_xExchExchangeServer │ │ │ │ ├── MSFT_xExchExchangeServer.psm1 │ │ │ │ └── MSFT_xExchExchangeServer.schema.mof │ │ │ ├── MSFT_xExchImapSettings │ │ │ │ ├── MSFT_xExchImapSettings.psm1 │ │ │ │ └── MSFT_xExchImapSettings.schema.mof │ │ │ ├── MSFT_xExchInstall │ │ │ │ ├── MSFT_xExchInstall.psm1 │ │ │ │ └── MSFT_xExchInstall.schema.mof │ │ │ ├── MSFT_xExchJetstress │ │ │ │ ├── MSFT_xExchJetstress.psm1 │ │ │ │ └── MSFT_xExchJetstress.schema.mof │ │ │ ├── MSFT_xExchJetstressCleanup │ │ │ │ ├── MSFT_xExchJetstressCleanup.psm1 │ │ │ │ └── MSFT_xExchJetstressCleanup.schema.mof │ │ │ ├── MSFT_xExchMailboxDatabase │ │ │ │ ├── MSFT_xExchMailboxDatabase.psm1 │ │ │ │ └── MSFT_xExchMailboxDatabase.schema.mof │ │ │ ├── MSFT_xExchMailboxDatabaseCopy │ │ │ │ ├── MSFT_xExchMailboxDatabaseCopy.psm1 │ │ │ │ └── MSFT_xExchMailboxDatabaseCopy.schema.mof │ │ │ ├── MSFT_xExchMailboxServer │ │ │ │ ├── MSFT_xExchMailboxServer.psm1 │ │ │ │ └── MSFT_xExchMailboxServer.schema.mof │ │ │ ├── MSFT_xExchMailboxTransportService │ │ │ │ ├── MSFT_xExchMailboxTransportService.psm1 │ │ │ │ └── MSFT_xExchMailboxTransportService.schema.mof │ │ │ ├── MSFT_xExchMaintenanceMode │ │ │ │ ├── MSFT_xExchMaintenanceMode.psm1 │ │ │ │ ├── MSFT_xExchMaintenanceMode.schema.mof │ │ │ │ └── TransportMaintenance.psm1 │ │ │ ├── MSFT_xExchMapiVirtualDirectory │ │ │ │ ├── MSFT_xExchMapiVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchMapiVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchOabVirtualDirectory │ │ │ │ ├── MSFT_xExchOabVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchOabVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchOutlookAnywhere │ │ │ │ ├── MSFT_xExchOutlookAnywhere.psm1 │ │ │ │ └── MSFT_xExchOutlookAnywhere.schema.mof │ │ │ ├── MSFT_xExchOwaVirtualDirectory │ │ │ │ ├── MSFT_xExchOwaVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchOwaVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchPopSettings │ │ │ │ ├── MSFT_xExchPopSettings.psm1 │ │ │ │ └── MSFT_xExchPopSettings.schema.mof │ │ │ ├── MSFT_xExchPowershellVirtualDirectory │ │ │ │ ├── MSFT_xExchPowerShellVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchPowerShellVirtualDirectory.schema.mof │ │ │ ├── MSFT_xExchReceiveConnector │ │ │ │ ├── MSFT_xExchReceiveConnector.psm1 │ │ │ │ └── MSFT_xExchReceiveConnector.schema.mof │ │ │ ├── MSFT_xExchTransportService │ │ │ │ ├── MSFT_xExchTransportService.psm1 │ │ │ │ └── MSFT_xExchTransportService.schema.mof │ │ │ ├── MSFT_xExchUMCallRouterSettings │ │ │ │ ├── MSFT_xExchUMCallRouterSettings.psm1 │ │ │ │ └── MSFT_xExchUMCallRouterSettings.schema.mof │ │ │ ├── MSFT_xExchUMService │ │ │ │ ├── MSFT_xExchUMService.psm1 │ │ │ │ └── MSFT_xExchUMService.schema.mof │ │ │ ├── MSFT_xExchWaitForADPrep │ │ │ │ ├── MSFT_xExchWaitForADPrep.psm1 │ │ │ │ └── MSFT_xExchWaitForADPrep.schema.mof │ │ │ ├── MSFT_xExchWaitForDAG │ │ │ │ ├── MSFT_xExchWaitForDAG.psm1 │ │ │ │ └── MSFT_xExchWaitForDAG.schema.mof │ │ │ ├── MSFT_xExchWaitForMailboxDatabase │ │ │ │ ├── MSFT_xExchWaitForMailboxDatabase.psm1 │ │ │ │ └── MSFT_xExchWaitForMailboxDatabase.schema.mof │ │ │ └── MSFT_xExchWebServicesVirtualDirectory │ │ │ │ ├── MSFT_xExchWebServicesVirtualDirectory.psm1 │ │ │ │ └── MSFT_xExchWebServicesVirtualDirectory.schema.mof │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── xExchangeCalculatorHelper.psm1 │ │ │ ├── xExchangeDiskPart.psm1 │ │ │ └── xExchangeHelper.psm1 │ │ └── xExchange.psd1 │ ├── xFailOverCluster │ │ ├── DSCResources │ │ │ ├── CommonResourceHelper.psm1 │ │ │ ├── MSFT_xCluster │ │ │ │ ├── MSFT_xCluster.psm1 │ │ │ │ ├── MSFT_xCluster.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xCluster.strings.psd1 │ │ │ ├── MSFT_xClusterDisk │ │ │ │ ├── MSFT_xClusterDisk.psm1 │ │ │ │ ├── MSFT_xClusterDisk.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xClusterDisk.strings.psd1 │ │ │ ├── MSFT_xClusterNetwork │ │ │ │ ├── MSFT_xClusterNetwork.psm1 │ │ │ │ ├── MSFT_xClusterNetwork.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xClusterNetwork.strings.psd1 │ │ │ ├── MSFT_xClusterPreferredOwner │ │ │ │ ├── MSFT_xClusterPreferredOwner.psm1 │ │ │ │ ├── MSFT_xClusterPreferredOwner.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xClusterPreferredOwner.strings.psd1 │ │ │ ├── MSFT_xClusterProperty │ │ │ │ ├── MSFT_xClusterProperty.psm1 │ │ │ │ ├── MSFT_xClusterProperty.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xClusterProperty.strings.psd1 │ │ │ ├── MSFT_xClusterQuorum │ │ │ │ ├── MSFT_xClusterQuorum.psm1 │ │ │ │ ├── MSFT_xClusterQuorum.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xClusterQuorum.strings.psd1 │ │ │ └── MSFT_xWaitForCluster │ │ │ │ ├── MSFT_xWaitForCluster.psm1 │ │ │ │ ├── MSFT_xWaitForCluster.schema.mof │ │ │ │ └── en-US │ │ │ │ └── MSFT_xWaitForCluster.strings.psd1 │ │ ├── LICENSE │ │ └── xFailOverCluster.psd1 │ ├── xHyper-V │ │ ├── DSCResources │ │ │ ├── HyperVCommon │ │ │ │ ├── HyperVCommon.psm1 │ │ │ │ └── en-us │ │ │ │ │ └── HyperVCommon.strings.psd1 │ │ │ ├── MSFT_xVHD │ │ │ │ ├── MSFT_xVHD.psm1 │ │ │ │ └── MSFT_xVHD.schema.mof │ │ │ ├── MSFT_xVMDvdDrive │ │ │ │ ├── MSFT_xVMDvdDrive.psm1 │ │ │ │ ├── MSFT_xVMDvdDrive.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_xVMDvdDrive.strings.psd1 │ │ │ ├── MSFT_xVMHardDiskDrive │ │ │ │ ├── MSFT_xVMHardDiskDrive.psm1 │ │ │ │ ├── MSFT_xVMHardDiskDrive.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMHardDiskDrive.strings.psd1 │ │ │ ├── MSFT_xVMHost │ │ │ │ ├── MSFT_xVMHost.psm1 │ │ │ │ ├── MSFT_xVMHost.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMHost.psd1 │ │ │ ├── MSFT_xVMHyperV │ │ │ │ ├── MSFT_xVMHyperV.psm1 │ │ │ │ ├── MSFT_xVMHyperV.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMHyperV.psd1 │ │ │ ├── MSFT_xVMNetworkAdapter │ │ │ │ ├── MSFT_xVMNetworkAdapter.psm1 │ │ │ │ ├── MSFT_xVMNetworkAdapter.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMNetworkAdapter.psd1 │ │ │ ├── MSFT_xVMProcessor │ │ │ │ ├── MSFT_xVMProcessor.psm1 │ │ │ │ ├── MSFT_xVMProcessor.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMProcessor.psd1 │ │ │ ├── MSFT_xVMScsiController │ │ │ │ ├── MSFT_xVMScsiController.psm1 │ │ │ │ ├── MSFT_xVMScsiController.schema.mof │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xVMScsiController.strings.psd1 │ │ │ ├── MSFT_xVMSwitch │ │ │ │ ├── MSFT_xVMSwitch.psm1 │ │ │ │ ├── MSFT_xVMSwitch.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_xVMSwitch.strings.psd1 │ │ │ └── MSFT_xVhdFileDirectory │ │ │ │ ├── MSFT_xVhdFileDirectory.psm1 │ │ │ │ └── MSFT_xVhdFileDirectory.schema.mof │ │ ├── LICENSE │ │ ├── Misc │ │ │ ├── VHDResourceGenerator.ps1 │ │ │ ├── VMHardDiskDriveGenerator.ps1 │ │ │ ├── VMResourceGenerator.ps1 │ │ │ ├── VMScsiControllerGenerator.ps1 │ │ │ └── VMSwitchGenerator.ps1 │ │ └── xHyper-V.psd1 │ ├── xInternetExplorerHomePage │ │ ├── DSCResources │ │ │ └── xInternetExplorerHomePage │ │ │ │ ├── xInternetExplorerHomePage.psm1 │ │ │ │ └── xInternetExplorerHomePage.schema.mof │ │ ├── LICENSE │ │ └── xInternetExplorerHomePage.psd1 │ ├── xJea │ │ ├── DSCResources │ │ │ ├── Library │ │ │ │ ├── Helper.psm1 │ │ │ │ ├── JeaAccount.psm1 │ │ │ │ ├── JeaDir.psm1 │ │ │ │ ├── JeaInitFile.psm1 │ │ │ │ └── JeaProxy.psm1 │ │ │ ├── MSFT_xJeaEndpoint │ │ │ │ ├── MSFT_xJeaEndpoint.psm1 │ │ │ │ └── MSFT_xJeaEndpoint.schema.mof │ │ │ └── MSFT_xJeaToolkit │ │ │ │ ├── MSFT_xJeaToolkit.psm1 │ │ │ │ └── MSFT_xJeaToolkit.schema.mof │ │ ├── LICENSE │ │ ├── Util │ │ │ ├── Initialize-ToolKit.ps1 │ │ │ └── SafeProxy.psm1 │ │ ├── xJea.psd1 │ │ └── xjea.psm1 │ ├── xMySql │ │ ├── DscResources │ │ │ ├── MSFT_xMySqlDatabase │ │ │ │ ├── MSFT_xMySqlDatabase.psm1 │ │ │ │ ├── MSFT_xMySqlDatabase.schema.mof │ │ │ │ └── xMySqlDatabaseDesigner.ps1 │ │ │ ├── MSFT_xMySqlGrant │ │ │ │ ├── MSFT_xMySqlGrant.psm1 │ │ │ │ ├── MSFT_xMySqlGrant.schema.mof │ │ │ │ ├── en-US │ │ │ │ │ └── MSFT_xMySqlGrant.strings.psd1 │ │ │ │ └── xMySqlGrantDesigner.ps1 │ │ │ ├── MSFT_xMySqlServer │ │ │ │ ├── MSFT_xMySqlServer.psm1 │ │ │ │ └── MSFT_xMySqlServer.schema.mof │ │ │ ├── MSFT_xMySqlUser │ │ │ │ ├── MSFT_xMySqlUser.psm1 │ │ │ │ ├── MSFT_xMySqlUser.schema.mof │ │ │ │ ├── en-US │ │ │ │ │ └── MSFT_xMySqlUser.strings.psd1 │ │ │ │ └── xMySqlUserDesigner.ps1 │ │ │ └── xMySqlProvision │ │ │ │ ├── xMySqlProvision.Schema.psm1 │ │ │ │ └── xMySqlProvision.psd1 │ │ ├── LICENSE │ │ ├── MSFT_xMySqlUtilities.psm1 │ │ └── xMySql.psd1 │ ├── xPSDesiredStateConfiguration │ │ ├── DSCPullServerSetup │ │ │ └── PublishModulesAndMofsToPullServer.psm1 │ │ ├── DSCResources │ │ │ ├── CommonResourceHelper.psm1 │ │ │ ├── MSFT_xArchive │ │ │ │ ├── MSFT_xArchive.psm1 │ │ │ │ ├── MSFT_xArchive.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xArchive.schema.mfl │ │ │ │ │ └── MSFT_xArchive.strings.psd1 │ │ │ ├── MSFT_xDSCWebService │ │ │ │ ├── MSFT_xDSCWebService.Schema.mof │ │ │ │ ├── MSFT_xDSCWebService.psm1 │ │ │ │ ├── PSWSIISEndpoint.psm1 │ │ │ │ ├── SecureTLSProtocols.psm1 │ │ │ │ ├── UseSecurityBestPractices.psm1 │ │ │ │ └── en-US │ │ │ │ │ └── MSFT_xDSCWebService.psd1 │ │ │ ├── MSFT_xEnvironmentResource │ │ │ │ ├── MSFT_xEnvironmentResource.psm1 │ │ │ │ ├── MSFT_xEnvironmentResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xEnvironmentResource.schema.mfl │ │ │ │ │ └── MSFT_xEnvironmentResource.strings.psd1 │ │ │ ├── MSFT_xGroupResource │ │ │ │ ├── MSFT_xGroupResource.psm1 │ │ │ │ ├── MSFT_xGroupResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xGroupResource.schema.mfl │ │ │ │ │ └── MSFT_xGroupResource.strings.psd1 │ │ │ ├── MSFT_xMsiPackage │ │ │ │ ├── MSFT_xMsiPackage.psm1 │ │ │ │ ├── MSFT_xMsiPackage.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xMsiPackage.schema.mfl │ │ │ │ │ └── MSFT_xMsiPackage.strings.psd1 │ │ │ ├── MSFT_xPSSessionConfiguration │ │ │ │ ├── MSFT_xPSSessionConfiguration.psm1 │ │ │ │ └── MSFT_xPSSessionConfiguration.schema.mof │ │ │ ├── MSFT_xPackageResource │ │ │ │ ├── MSFT_xPackageResource.psm1 │ │ │ │ ├── MSFT_xPackageResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xPackageResource.schema.mfl │ │ │ │ │ └── MSFT_xPackageResource.strings.psd1 │ │ │ ├── MSFT_xRegistryResource │ │ │ │ ├── MSFT_xRegistryResource.psm1 │ │ │ │ ├── MSFT_xRegistryResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xRegistryResource.schema.mfl │ │ │ │ │ └── MSFT_xRegistryResource.strings.psd1 │ │ │ ├── MSFT_xRemoteFile │ │ │ │ ├── MSFT_xRemoteFile.psm1 │ │ │ │ ├── MSFT_xRemoteFile.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_xRemoteFile.strings.psd1 │ │ │ ├── MSFT_xScriptResource │ │ │ │ ├── MSFT_xScriptResource.psm1 │ │ │ │ ├── MSFT_xScriptResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xScriptResource.schema.mfl │ │ │ │ │ └── MSFT_xScriptResource.strings.psd1 │ │ │ ├── MSFT_xServiceResource │ │ │ │ ├── MSFT_xServiceResource.psm1 │ │ │ │ ├── MSFT_xServiceResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xServiceResource.schema.mfl │ │ │ │ │ └── MSFT_xServiceResource.strings.psd1 │ │ │ ├── MSFT_xUserResource │ │ │ │ ├── MSFT_xUserResource.psm1 │ │ │ │ ├── MSFT_xUserResource.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xUserResource.schema.mfl │ │ │ │ │ └── MSFT_xUserResource.strings.psd1 │ │ │ ├── MSFT_xWindowsFeature │ │ │ │ ├── MSFT_xWindowsFeature.psm1 │ │ │ │ ├── MSFT_xWindowsFeature.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xWindowsFeature.schema.mfl │ │ │ │ │ └── MSFT_xWindowsFeature.strings.psd1 │ │ │ ├── MSFT_xWindowsOptionalFeature │ │ │ │ ├── MSFT_xWindowsOptionalFeature.psm1 │ │ │ │ ├── MSFT_xWindowsOptionalFeature.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xWindowsOptionalFeature.schema.mfl │ │ │ │ │ └── MSFT_xWindowsOptionalFeature.strings.psd1 │ │ │ ├── MSFT_xWindowsPackageCab │ │ │ │ ├── MSFT_xWindowsPackageCab.psm1 │ │ │ │ ├── MSFT_xWindowsPackageCab.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xWindowsPackageCab.schema.mfl │ │ │ │ │ └── MSFT_xWindowsPackageCab.strings.psd1 │ │ │ ├── MSFT_xWindowsProcess │ │ │ │ ├── MSFT_xWindowsProcess.psm1 │ │ │ │ ├── MSFT_xWindowsProcess.schema.mof │ │ │ │ └── en-US │ │ │ │ │ ├── MSFT_xWindowsProcess.schema.mfl │ │ │ │ │ └── MSFT_xWindowsProcess.strings.psd1 │ │ │ ├── ResourceSetHelper.psm1 │ │ │ ├── xFileUpload │ │ │ │ ├── xFileUpload.psd1 │ │ │ │ └── xFileUpload.schema.psm1 │ │ │ ├── xGroupSet │ │ │ │ ├── xGroupSet.psd1 │ │ │ │ └── xGroupSet.schema.psm1 │ │ │ ├── xProcessSet │ │ │ │ ├── xProcessSet.psd1 │ │ │ │ └── xProcessSet.schema.psm1 │ │ │ ├── xServiceSet │ │ │ │ ├── xServiceSet.psd1 │ │ │ │ └── xServiceSet.schema.psm1 │ │ │ ├── xWindowsFeatureSet │ │ │ │ ├── xWindowsFeatureSet.psd1 │ │ │ │ └── xWindowsFeatureSet.schema.psm1 │ │ │ └── xWindowsOptionalFeatureSet │ │ │ │ ├── xWindowsOptionalFeatureSet.psd1 │ │ │ │ └── xWindowsOptionalFeatureSet.schema.psm1 │ │ ├── LICENSE │ │ ├── ResourceDesignerScripts │ │ │ ├── GenerateXRemoteFileSchema.ps1 │ │ │ └── New-PSSessionConfigurationResource.ps1 │ │ └── xPSDesiredStateConfiguration.psd1 │ ├── xPendingReboot │ │ ├── DSCResources │ │ │ └── MSFT_xPendingReboot │ │ │ │ ├── MSFT_xPendingReboot.psm1 │ │ │ │ └── MSFT_xPendingReboot.schema.mof │ │ ├── LICENSE │ │ └── xPendingReboot.psd1 │ ├── xPhp │ │ ├── DscResources │ │ │ └── xPhpProvision │ │ │ │ ├── xPhpProvision.Schema.psm1 │ │ │ │ └── xPhpProvision.psd1 │ │ ├── LICENSE │ │ └── xPhp.psd1 │ ├── xPowerShellExecutionPolicy │ │ ├── DSCResources │ │ │ └── MSFT_xPowerShellExecutionPolicy │ │ │ │ ├── MSFT_xPowerShellExecutionPolicy.psm1 │ │ │ │ └── MSFT_xPowerShellExecutionPolicy.schema.mof │ │ ├── LICENSE │ │ └── xPowerShellExecutionPolicy.psd1 │ ├── xRemoteDesktopAdmin │ │ ├── DSCResources │ │ │ └── xRemoteDesktopAdmin │ │ │ │ ├── xRemoteDesktopAdmin.psm1 │ │ │ │ └── xRemoteDesktopAdmin.schema.mof │ │ ├── LICENSE │ │ └── xRemoteDesktopAdmin.psd1 │ ├── xRemoteDesktopSessionHost │ │ ├── DSCResources │ │ │ ├── MSFT_xRDGatewayConfiguration │ │ │ │ ├── MSFT_xRDGatewayConfiguration.psm1 │ │ │ │ └── MSFT_xRDGatewayConfiguration.schema.mof │ │ │ ├── MSFT_xRDLicenseConfiguration │ │ │ │ ├── MSFT_xRDLicenseConfiguration.psm1 │ │ │ │ └── MSFT_xRDLicenseConfiguration.schema.mof │ │ │ ├── MSFT_xRDRemoteApp │ │ │ │ ├── MSFT_xRDRemoteApp.psm1 │ │ │ │ └── MSFT_xRDRemoteApp.schema.mof │ │ │ ├── MSFT_xRDServer │ │ │ │ ├── MSFT_xRDServer.psm1 │ │ │ │ └── MSFT_xRDServer.schema.mof │ │ │ ├── MSFT_xRDSessionCollection │ │ │ │ ├── MSFT_xRDSessionCollection.psm1 │ │ │ │ └── MSFT_xRDSessionCollection.schema.mof │ │ │ ├── MSFT_xRDSessionCollectionConfiguration │ │ │ │ ├── MSFT_xRDSessionCollectionConfiguration.psm1 │ │ │ │ └── MSFT_xRDSessionCollectionConfiguration.schema.mof │ │ │ └── MSFT_xRDSessionDeployment │ │ │ │ ├── MSFT_xRDSessionDeployment.psm1 │ │ │ │ └── MSFT_xRDSessionDeployment.schema.mof │ │ ├── LICENSE │ │ ├── xRemoteDesktopSessionHost.psd1 │ │ └── xRemoteDesktopSessionHostCommon.psm1 │ ├── xRobocopy │ │ ├── DSCResources │ │ │ └── MSFT_xRobocopy │ │ │ │ ├── MSFT_xRobocopy.psm1 │ │ │ │ └── MSFT_xRobocopy.schema.mof │ │ ├── LICENSE │ │ ├── Resources │ │ │ └── xDscResourceDesigner_CreateScript.ps1 │ │ └── xRobocopy.psd1 │ ├── xSCDPM │ │ ├── DSCResources │ │ │ ├── MSFT_xSCDPMConsoleSetup │ │ │ │ ├── MSFT_xSCDPMConsoleSetup.psm1 │ │ │ │ └── MSFT_xSCDPMConsoleSetup.schema.mof │ │ │ ├── MSFT_xSCDPMDatabaseServerSetup │ │ │ │ ├── MSFT_xSCDPMDatabaseServerSetup.psm1 │ │ │ │ └── MSFT_xSCDPMDatabaseServerSetup.schema.mof │ │ │ └── MSFT_xSCDPMServerSetup │ │ │ │ ├── MSFT_xSCDPMServerSetup.psm1 │ │ │ │ └── MSFT_xSCDPMServerSetup.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCDPM.psd1 │ ├── xSCOM │ │ ├── DSCResources │ │ │ ├── MSFT_xSCOMAdmin │ │ │ │ ├── MSFT_xSCOMAdmin.psm1 │ │ │ │ └── MSFT_xSCOMAdmin.schema.mof │ │ │ ├── MSFT_xSCOMConsoleSetup │ │ │ │ ├── MSFT_xSCOMConsoleSetup.psm1 │ │ │ │ └── MSFT_xSCOMConsoleSetup.schema.mof │ │ │ ├── MSFT_xSCOMConsoleUpdate │ │ │ │ ├── MSFT_xSCOMConsoleUpdate.psm1 │ │ │ │ └── MSFT_xSCOMConsoleUpdate.schema.mof │ │ │ ├── MSFT_xSCOMManagementPack │ │ │ │ ├── MSFT_xSCOMManagementPack.psm1 │ │ │ │ └── MSFT_xSCOMManagementPack.schema.mof │ │ │ ├── MSFT_xSCOMManagementServerSetup │ │ │ │ ├── MSFT_xSCOMManagementServerSetup.psm1 │ │ │ │ └── MSFT_xSCOMManagementServerSetup.schema.mof │ │ │ ├── MSFT_xSCOMManagementServerUpdate │ │ │ │ ├── MSFT_xSCOMManagementServerUpdate.psm1 │ │ │ │ └── MSFT_xSCOMManagementServerUpdate.schema.mof │ │ │ ├── MSFT_xSCOMReportingServerSetup │ │ │ │ ├── MSFT_xSCOMReportingServerSetup.psm1 │ │ │ │ └── MSFT_xSCOMReportingServerSetup.schema.mof │ │ │ ├── MSFT_xSCOMWebConsoleServerSetup │ │ │ │ ├── MSFT_xSCOMWebConsoleServerSetup.psm1 │ │ │ │ └── MSFT_xSCOMWebConsoleServerSetup.schema.mof │ │ │ └── MSFT_xSCOMWebConsoleServerUpdate │ │ │ │ ├── MSFT_xSCOMWebConsoleServerUpdate.psm1 │ │ │ │ └── MSFT_xSCOMWebConsoleServerUpdate.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCOM.psd1 │ ├── xSCSMA │ │ ├── DSCResources │ │ │ ├── MSFT_xRunbookDirectory │ │ │ │ ├── MSFT_xRunbookDirectory.psm1 │ │ │ │ └── MSFT_xRunbookDirectory.schema.mof │ │ │ ├── MSFT_xSCSMAPowerShellSetup │ │ │ │ ├── MSFT_xSCSMAPowerShellSetup.psm1 │ │ │ │ └── MSFT_xSCSMAPowerShellSetup.schema.mof │ │ │ ├── MSFT_xSCSMARunbookWorkerServerSetup │ │ │ │ ├── MSFT_xSCSMARunbookWorkerServerSetup.psm1 │ │ │ │ └── MSFT_xSCSMARunbookWorkerServerSetup.schema.mof │ │ │ ├── MSFT_xSCSMAWebServiceServerSetup │ │ │ │ ├── MSFT_xSCSMAWebServiceServerSetup.psm1 │ │ │ │ └── MSFT_xSCSMAWebServiceServerSetup.schema.mof │ │ │ ├── MSFT_xSmaCredential │ │ │ │ ├── MSFT_xSmaCredential.psm1 │ │ │ │ └── MSFT_xSmaCredential.schema.mof │ │ │ └── MSFT_xSmaVariable │ │ │ │ ├── MSFT_xSmaVariable.psm1 │ │ │ │ └── MSFT_xSmaVariable.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCSMA.psd1 │ ├── xSCSPF │ │ ├── DSCResources │ │ │ ├── MSFT_xSCSPFServer │ │ │ │ ├── MSFT_xSCSPFServer.psm1 │ │ │ │ └── MSFT_xSCSPFServer.schema.mof │ │ │ ├── MSFT_xSCSPFServerSetup │ │ │ │ ├── MSFT_xSCSPFServerSetup.psm1 │ │ │ │ └── MSFT_xSCSPFServerSetup.schema.mof │ │ │ ├── MSFT_xSCSPFServerUpdate │ │ │ │ ├── MSFT_xSCSPFServerUpdate.psm1 │ │ │ │ └── MSFT_xSCSPFServerUpdate.schema.mof │ │ │ ├── MSFT_xSCSPFSetting │ │ │ │ ├── MSFT_xSCSPFSetting.psm1 │ │ │ │ └── MSFT_xSCSPFSetting.schema.mof │ │ │ └── MSFT_xSCSPFStamp │ │ │ │ ├── MSFT_xSCSPFStamp.psm1 │ │ │ │ └── MSFT_xSCSPFStamp.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCSPF.psd1 │ ├── xSCSR │ │ ├── DSCResources │ │ │ ├── MSFT_xSCSRServerSetup │ │ │ │ ├── MSFT_xSCSRServerSetup.psm1 │ │ │ │ └── MSFT_xSCSRServerSetup.schema.mof │ │ │ └── MSFT_xSCSRServerUpdate │ │ │ │ ├── MSFT_xSCSRServerUpdate.psm1 │ │ │ │ └── MSFT_xSCSRServerUpdate.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCSR.psd1 │ ├── xSCVMM │ │ ├── DSCResources │ │ │ ├── MSFT_xSCVMMAdmin │ │ │ │ ├── MSFT_xSCVMMAdmin.psm1 │ │ │ │ └── MSFT_xSCVMMAdmin.schema.mof │ │ │ ├── MSFT_xSCVMMConsoleSetup │ │ │ │ ├── MSFT_xSCVMMConsoleSetup.psm1 │ │ │ │ └── MSFT_xSCVMMConsoleSetup.schema.mof │ │ │ ├── MSFT_xSCVMMConsoleUpdate │ │ │ │ ├── MSFT_xSCVMMConsoleUpdate.psm1 │ │ │ │ └── MSFT_xSCVMMConsoleUpdate.schema.mof │ │ │ ├── MSFT_xSCVMMManagementServerSetup │ │ │ │ ├── MSFT_xSCVMMManagementServerSetup.psm1 │ │ │ │ └── MSFT_xSCVMMManagementServerSetup.schema.mof │ │ │ └── MSFT_xSCVMMManagementServerUpdate │ │ │ │ ├── MSFT_xSCVMMManagementServerUpdate.psm1 │ │ │ │ └── MSFT_xSCVMMManagementServerUpdate.schema.mof │ │ ├── LICENSE │ │ ├── en-US │ │ │ └── xPDT.strings.psd1 │ │ ├── xPDT.psm1 │ │ └── xSCVMM.psd1 │ ├── xSmbShare │ │ ├── DscResources │ │ │ └── MSFT_xSmbShare │ │ │ │ ├── MSFT_xSmbShare.psm1 │ │ │ │ └── MSFT_xSmbShare.schema.mof │ │ ├── LICENSE │ │ └── xSmbShare.psd1 │ ├── xSqlPs │ │ ├── DSCResources │ │ │ ├── MSFT_xSqlAlias │ │ │ │ ├── MSFT_xSqlAlias.psm1 │ │ │ │ └── MSFT_xSqlAlias.schema.mof │ │ │ ├── MSFT_xSqlHAEndPoint │ │ │ │ ├── MSFT_xSqlHAEndPoint.psm1 │ │ │ │ └── MSFT_xSqlHAEndPoint.schema.mof │ │ │ ├── MSFT_xSqlHAGroup │ │ │ │ ├── MSFT_xSqlHAGroup.psm1 │ │ │ │ └── MSFT_xSqlHAGroup.schema.mof │ │ │ ├── MSFT_xSqlHAService │ │ │ │ ├── MSFT_xSqlHAService.psm1 │ │ │ │ └── MSFT_xSqlHAService.schema.mof │ │ │ ├── MSFT_xSqlServerInstall │ │ │ │ ├── MSFT_xSqlServerInstall.psm1 │ │ │ │ └── MSFT_xSqlServerInstall.schema.mof │ │ │ └── MSFT_xWaitForSqlHAGroup │ │ │ │ ├── MSFT_xWaitForSqlHAGroup.psm1 │ │ │ │ └── MSFT_xWaitForSqlHAGroup.schema.mof │ │ ├── LICENSE │ │ └── xSqlPs.psd1 │ ├── xTimeZone │ │ ├── DSCResources │ │ │ └── MSFT_xTimeZone │ │ │ │ ├── MSFT_xTimeZone.psm1 │ │ │ │ ├── MSFT_xTimeZone.schema.mof │ │ │ │ └── en-us │ │ │ │ └── MSFT_xTimeZone.strings.psd1 │ │ ├── LICENSE │ │ ├── Modules │ │ │ ├── TimeZoneDsc.Common │ │ │ │ ├── SetTimeZone.cs │ │ │ │ ├── TimeZoneDsc.Common.psm1 │ │ │ │ └── en-us │ │ │ │ │ └── TimeZoneDsc.Common.strings.psd1 │ │ │ └── TimeZoneDsc.ResourceHelper │ │ │ │ └── TimeZoneDsc.ResourceHelper.psm1 │ │ └── xTimeZone.psd1 │ ├── xWebAdministration │ │ ├── DSCResources │ │ │ ├── Helper.psm1 │ │ │ ├── MSFT_WebApplicationHandler │ │ │ │ ├── MSFT_WebApplicationHandler.psm1 │ │ │ │ ├── MSFT_WebApplicationHandler.schema.mof │ │ │ │ └── en-us │ │ │ │ │ └── MSFT_WebApplicationHandler.strings.psd1 │ │ │ ├── MSFT_xIIsHandler │ │ │ │ ├── MSFT_xIisHandler.psm1 │ │ │ │ └── MSFT_xIisHandler.schema.mof │ │ │ ├── MSFT_xIisFeatureDelegation │ │ │ │ ├── MSFT_xIisFeatureDelegation.psm1 │ │ │ │ └── MSFT_xIisFeatureDelegation.schema.mof │ │ │ ├── MSFT_xIisLogging │ │ │ │ ├── MSFT_xIisLogging.psm1 │ │ │ │ └── MSFT_xIisLogging.schema.mof │ │ │ ├── MSFT_xIisMimeTypeMapping │ │ │ │ ├── MSFT_xIisMimeTypeMapping.psm1 │ │ │ │ └── MSFT_xIisMimeTypeMapping.schema.mof │ │ │ ├── MSFT_xIisModule │ │ │ │ ├── MSFT_xIisModule.psm1 │ │ │ │ ├── MSFT_xIisModule.schema.mof │ │ │ │ └── xIisModuleDesigner.ps1 │ │ │ ├── MSFT_xSSLSettings │ │ │ │ ├── MSFT_xSSLSettings.psm1 │ │ │ │ └── MSFT_xSSLSettings.schema.mof │ │ │ ├── MSFT_xWebAppPool │ │ │ │ ├── MSFT_xWebAppPool.psm1 │ │ │ │ └── MSFT_xWebAppPool.schema.mof │ │ │ ├── MSFT_xWebAppPoolDefaults │ │ │ │ ├── MSFT_xWebAppPoolDefaults.psm1 │ │ │ │ └── MSFT_xWebAppPoolDefaults.schema.mof │ │ │ ├── MSFT_xWebApplication │ │ │ │ ├── MSFT_xWebApplication.psm1 │ │ │ │ └── MSFT_xWebApplication.schema.mof │ │ │ ├── MSFT_xWebConfigKeyValue │ │ │ │ ├── MSFT_xWebConfigKeyValue.psm1 │ │ │ │ └── MSFT_xWebConfigKeyValue.schema.mof │ │ │ ├── MSFT_xWebConfigProperty │ │ │ │ ├── MSFT_xWebConfigProperty.psm1 │ │ │ │ └── MSFT_xWebConfigProperty.schema.mof │ │ │ ├── MSFT_xWebConfigPropertyCollection │ │ │ │ ├── MSFT_xWebConfigPropertyCollection.psm1 │ │ │ │ └── MSFT_xWebConfigPropertyCollection.schema.mof │ │ │ ├── MSFT_xWebSiteDefaults │ │ │ │ ├── MSFT_xWebSiteDefaults.psm1 │ │ │ │ └── MSFT_xWebSiteDefaults.schema.mof │ │ │ ├── MSFT_xWebVirtualDirectory │ │ │ │ ├── MSFT_xWebVirtualDirectory.psm1 │ │ │ │ └── MSFT_xWebVirtualDirectory.schema.mof │ │ │ └── MSFT_xWebsite │ │ │ │ ├── MSFT_xWebsite.psm1 │ │ │ │ └── MSFT_xWebsite.schema.mof │ │ ├── LICENSE │ │ └── xWebAdministration.psd1 │ ├── xWebDeploy │ │ ├── DSCResources │ │ │ ├── xWebDeploy │ │ │ │ ├── xWebDeploy.Schema.psm1 │ │ │ │ └── xWebDeploy.psd1 │ │ │ └── xWebPackageDeploy │ │ │ │ ├── xWebPackageDeploy.psm1 │ │ │ │ └── xWebPackageDeploy.schema.mof │ │ ├── LICENSE │ │ └── xWebDeploy.psd1 │ ├── xWinEventLog │ │ ├── DSCResources │ │ │ └── MSFT_xWinEventLog │ │ │ │ ├── MSFT_xWinEventLog.psm1 │ │ │ │ └── MSFT_xWinEventLog.schema.mof │ │ ├── LICENSE │ │ ├── xWinEventLog.psd1 │ │ └── xWinEventLog.psm1 │ ├── xWindowsEventForwarding │ │ ├── DSCResources │ │ │ ├── MSFT_xWEFCollector │ │ │ │ ├── MSFT_xWEFCollector.psm1 │ │ │ │ └── MSFT_xWEFCollector.schema.mof │ │ │ └── MSFT_xWEFSubscription │ │ │ │ ├── MSFT_xWEFSubscription.psm1 │ │ │ │ └── MSFT_xWEFSubscription.schema.mof │ │ ├── LICENSE │ │ └── xWindowsEventForwarding.psd1 │ ├── xWindowsRestore │ │ ├── DSCResources │ │ │ ├── xSystemRestore │ │ │ │ ├── xSystemRestore.psm1 │ │ │ │ └── xSystemRestore.schema.mof │ │ │ └── xSystemRestorePoint │ │ │ │ ├── xSystemRestorePoint.psm1 │ │ │ │ └── xSystemRestorePoint.schema.mof │ │ ├── LICENSE │ │ └── xWindowsRestore.psd1 │ ├── xWindowsUpdate │ │ ├── DscResources │ │ │ ├── MSFT_xMicrosoftUpdate │ │ │ │ ├── MSFT_xMicrosoftUpdate.psm1 │ │ │ │ └── MSFT_xMicrosoftUpdate.schema.mof │ │ │ ├── MSFT_xWindowsUpdate │ │ │ │ ├── MSFT_xWindowsUpdate.psm1 │ │ │ │ └── MSFT_xWindowsUpdate.schema.mof │ │ │ └── MSFT_xWindowsUpdateAgent │ │ │ │ ├── MSFT_xWindowsUpdateAgent.psm1 │ │ │ │ └── MSFT_xWindowsUpdateAgent.schema.mof │ │ ├── LICENSE │ │ └── xWindowsUpdate.psd1 │ └── xWordPress │ │ ├── DscResources │ │ ├── MSFT_xWordPressSite │ │ │ ├── MSFT_xWordPressSite.psm1 │ │ │ ├── MSFT_xWordPressSite.schema.mof │ │ │ └── xWordPressSite.ps1 │ │ └── xIisWordPressSite │ │ │ ├── xIisWordPressSite.Schema.psm1 │ │ │ └── xIisWordPressSite.psd1 │ │ ├── LICENSE │ │ └── xWordPress.psd1 │ ├── puppetlabs │ ├── compatible_powershell_version.rb │ ├── dsc_type_helpers.rb │ ├── powershell_manager.rb │ └── powershell_version.rb │ └── templates │ └── dsc │ └── init_ps.ps1 ├── locales └── config.yaml ├── metadata.json ├── provision.yaml ├── spec ├── README.md ├── acceptance │ ├── basic_dsc_resources │ │ └── file │ │ │ ├── dir_valid_spec.rb │ │ │ ├── file_valid_spec.rb │ │ │ └── negative │ │ │ └── file_invalid_spec.rb │ └── basic_functionality │ │ └── puppet_apply_noop_dsc_manifest_spec.rb ├── default_facts.yml ├── exit-27.ps1 ├── files │ ├── reboot │ │ ├── PuppetFakeResource │ │ │ ├── DSCResources │ │ │ │ └── PuppetFakeResource │ │ │ │ │ ├── PuppetFakeResource.psm1 │ │ │ │ │ └── PuppetFakeResource.schema.mof │ │ │ └── PuppetFakeResource.psd1 │ │ └── dsc_puppetfakeresource.rb │ └── test_installer │ │ ├── README.md │ │ ├── test.nsi │ │ └── test.txt ├── fixtures │ ├── bad.psd1 │ ├── doublequotes.psd1 │ ├── dsc_modules │ │ ├── default │ │ │ ├── DSCResources │ │ │ │ └── .gitkeep │ │ │ └── default.psd1 │ │ ├── missing │ │ │ ├── DSCResources │ │ │ │ └── .gitkeep │ │ │ └── will_not_match.psd1 │ │ ├── mixedCase │ │ │ ├── DSCResources │ │ │ │ └── .gitkeep │ │ │ └── MIXEDCase.psd1 │ │ └── multiCase │ │ │ ├── Another.psd1 │ │ │ ├── DSCResources │ │ │ └── .gitkeep │ │ │ ├── MuLTICase.psd1 │ │ │ └── ZzAnother.psd1 │ ├── good.psd1 │ └── singlequotes.psd1 ├── integration │ └── puppet_x │ │ └── puppetlabs │ │ ├── compatible_powershell_version_spec.rb │ │ ├── powershell_manager_spec.rb │ │ └── powershell_version_spec.rb ├── lib │ └── dsc_utils.rb ├── spec_helper.rb ├── spec_helper_acceptance.rb ├── spec_helper_local.rb └── unit │ ├── build │ └── dsc │ │ └── resource_spec.rb │ ├── psmodule_spec.rb │ ├── puppet │ ├── provider │ │ └── powershell_spec.rb │ └── type │ │ ├── README │ │ ├── base_dsc_spec.rb │ │ ├── dsc_archive_spec.rb │ │ ├── dsc_environment_spec.rb │ │ ├── dsc_file_spec.rb │ │ ├── dsc_group_spec.rb │ │ ├── dsc_log_spec.rb │ │ ├── dsc_package_spec.rb │ │ ├── dsc_registry_spec.rb │ │ ├── dsc_script_spec.rb │ │ ├── dsc_service_spec.rb │ │ ├── dsc_user_spec.rb │ │ ├── dsc_windowsfeature_spec.rb │ │ ├── dsc_windowsoptionalfeature_spec.rb │ │ └── dsc_windowsprocess_spec.rb │ └── puppet_x │ └── puppetlabs │ └── dsc_type_helpers_spec.rb └── types.md /.fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.fixtures.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/labeller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.github/workflows/labeller.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pdkignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.pdkignore -------------------------------------------------------------------------------- /.pmtignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.pmtignore -------------------------------------------------------------------------------- /.puppet-lint.rc: -------------------------------------------------------------------------------- 1 | --relative 2 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --format documentation 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /.sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.sync.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/.yardopts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/Gemfile -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/README.md -------------------------------------------------------------------------------- /README_BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/README_BUILD.md -------------------------------------------------------------------------------- /README_CENTOS6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/README_CENTOS6.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/Rakefile -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/images/dir_struct_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/docs/images/dir_struct_import.png -------------------------------------------------------------------------------- /docs/images/dir_struct_plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/docs/images/dir_struct_plain.png -------------------------------------------------------------------------------- /docs/images/dir_struct_psdname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/docs/images/dir_struct_psdname.png -------------------------------------------------------------------------------- /dsc_resource_release_tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/dsc_resource_release_tags.yml -------------------------------------------------------------------------------- /lib/facter/powershell_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/facter/powershell_version.rb -------------------------------------------------------------------------------- /lib/facter/uses_win32console.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/facter/uses_win32console.rb -------------------------------------------------------------------------------- /lib/puppet/provider/base_dsc/powershell.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/provider/base_dsc/powershell.rb -------------------------------------------------------------------------------- /lib/puppet/provider/templates/dsc/invoke_dsc_resource.ps1.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/provider/templates/dsc/invoke_dsc_resource.ps1.erb -------------------------------------------------------------------------------- /lib/puppet/type/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/README -------------------------------------------------------------------------------- /lib/puppet/type/base_dsc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/base_dsc.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_accountpolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_accountpolicy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_adcscertificationauthority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_adcscertificationauthority.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_adcsenrollmentpolicywebservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_adcsenrollmentpolicywebservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_adcsocspextension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_adcsocspextension.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_adcsonlineresponder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_adcsonlineresponder.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_adcswebenrollment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_adcswebenrollment.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_archive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_archive.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_auditpolicycsv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_auditpolicycsv.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_auditpolicyguid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_auditpolicyguid.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_auditpolicyoption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_auditpolicyoption.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_auditpolicysubcategory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_auditpolicysubcategory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_certificateexport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_certificateexport.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_certificateimport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_certificateimport.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_certreq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_certreq.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_computer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_computer.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_defaultgatewayaddress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_defaultgatewayaddress.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsnamespacefolder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsnamespacefolder.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsnamespaceroot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsnamespaceroot.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsnamespaceserverconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsnamespaceserverconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsreplicationgroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsreplicationgroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsreplicationgroupconnection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsreplicationgroupconnection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsreplicationgroupfolder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsreplicationgroupfolder.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dfsreplicationgroupmembership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dfsreplicationgroupmembership.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dhcppolicyoptionvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dhcppolicyoptionvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dhcpreservedipoptionvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dhcpreservedipoptionvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dhcpscopeoptionvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dhcpscopeoptionvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dhcpserveroptionvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dhcpserveroptionvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_disk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_disk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_diskaccesspath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_diskaccesspath.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dnsclientglobalsetting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dnsclientglobalsetting.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dnsconnectionsuffix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dnsconnectionsuffix.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_dnsserveraddress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_dnsserveraddress.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_environment.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_file.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_firewall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_firewall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_firewallprofile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_firewallprofile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmautoquota.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmautoquota.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmclassification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmclassification.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmclassificationproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmclassificationproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmclassificationpropertyvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmclassificationpropertyvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmclassificationrule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmclassificationrule.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilegroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilegroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilescreen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilescreen.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilescreenaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilescreenaction.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilescreenexception.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilescreenexception.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilescreentemplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilescreentemplate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmfilescreentemplateaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmfilescreentemplateaction.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmquota.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmquota.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmquotaaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmquotaaction.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmquotatemplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmquotatemplate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmquotatemplateaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmquotatemplateaction.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_fsrmsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_fsrmsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_group.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_hostsfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_hostsfile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_inisettingsfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_inisettingsfile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_ipaddress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_ipaddress.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_ipaddressoption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_ipaddressoption.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_iscsiinitiator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_iscsiinitiator.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_iscsiservertarget.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_iscsiservertarget.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_iscsivirtualdisk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_iscsivirtualdisk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_keyvaluepairfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_keyvaluepairfile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_log.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_log.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_mountimage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_mountimage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapteradvancedproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapteradvancedproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapterbinding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapterbinding.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapterlso.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapterlso.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadaptername.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadaptername.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapterrdma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapterrdma.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapterrsc.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapterrsc.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netadapterrss.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netadapterrss.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netbios.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netbios.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netconnectionprofile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netconnectionprofile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_netipinterface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_netipinterface.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_networkteam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_networkteam.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_networkteaminterface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_networkteaminterface.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_officeonlineserverfarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_officeonlineserverfarm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_officeonlineserverinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_officeonlineserverinstall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_officeonlineserverinstalllanguagepack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_officeonlineserverinstalllanguagepack.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_officeonlineservermachine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_officeonlineservermachine.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_offlinedomainjoin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_offlinedomainjoin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_opticaldiskdriveletter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_opticaldiskdriveletter.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_package.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_package.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_pfximport.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_pfximport.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_powerplan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_powerplan.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_powershellexecutionpolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_powershellexecutionpolicy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_proxysettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_proxysettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_registry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_registry.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_replacetext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_replacetext.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_route.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_route.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_runbookdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_runbookdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_scheduledtask.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_scheduledtask.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_script.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_script.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_securityoption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_securityoption.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_securitytemplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_securitytemplate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_service.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_smavariable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_smavariable.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spaccessserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spaccessserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spaccessservices2010.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spaccessservices2010.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spalternateurl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spalternateurl.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spantivirussettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spantivirussettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spappcatalog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spappcatalog.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spappdomain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spappdomain.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spappmanagementserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spappmanagementserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spappstoresettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spappstoresettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spauthenticationrealm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spauthenticationrealm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spbcsserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spbcsserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spblobcachesettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spblobcachesettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spcacheaccounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spcacheaccounts.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spconfigwizard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spconfigwizard.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spcontentdatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spcontentdatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdatabaseaag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdatabaseaag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdesignersettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdesignersettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdiagnosticloggingsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdiagnosticloggingsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdiagnosticsprovider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdiagnosticsprovider.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdistributedcacheclientsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdistributedcacheclientsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spdistributedcacheservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spdistributedcacheservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spexcelserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spexcelserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spfarm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spfarm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spfarmadministrators.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spfarmadministrators.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spfarmpropertybag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spfarmpropertybag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spfarmsolution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spfarmsolution.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sphealthanalyzerrulestate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sphealthanalyzerrulestate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spincomingemailsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spincomingemailsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spinfopathformsserviceconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spinfopathformsserviceconfig.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spinstall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spinstalllanguagepack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spinstalllanguagepack.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spinstallprereqs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spinstallprereqs.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spirmsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spirmsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sploglevel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sploglevel.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spmachinetranslationserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spmachinetranslationserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spmanagedaccount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spmanagedaccount.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spmanagedmetadataserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spmanagedmetadataserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spmanagedmetadataserviceappdefault.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spmanagedmetadataserviceappdefault.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spmanagedpath.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spmanagedpath.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spminrolecompliance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spminrolecompliance.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spofficeonlineserverbinding.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spofficeonlineserverbinding.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spoutgoingemailsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spoutgoingemailsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sppasswordchangesettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sppasswordchangesettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spperformancepointserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spperformancepointserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sppowerpointautomationserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sppowerpointautomationserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spproductupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spproductupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserveradditionalsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserveradditionalsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserveradresourcepoolsync.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserveradresourcepoolsync.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverglobalpermissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverglobalpermissions.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectservergroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectservergroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverlicense.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverlicense.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverpermissionmode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverpermissionmode.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectservertimesheetsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectservertimesheetsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverusersyncsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverusersyncsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spprojectserverwsssettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spprojectserverwsssettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sppublishserviceapplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sppublishserviceapplication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spquotatemplate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spquotatemplate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spremotefarmtrust.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spremotefarmtrust.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchauthoritativepage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchauthoritativepage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchcontentsource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchcontentsource.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchcrawlerimpactrule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchcrawlerimpactrule.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchcrawlmapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchcrawlmapping.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchcrawlrule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchcrawlrule.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchfiletype.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchfiletype.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchindexpartition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchindexpartition.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchmanagedproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchmanagedproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchmetadatacategory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchmetadatacategory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchresultsource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchresultsource.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchservicesettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchservicesettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsearchtopology.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsearchtopology.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsecurestoreserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsecurestoreserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsecuritytokenserviceconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsecuritytokenserviceconfig.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spselfservicesitecreation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spselfservicesitecreation.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spserviceapppool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spserviceapppool.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spserviceappproxygroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spserviceappproxygroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spserviceappsecurity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spserviceappsecurity.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spserviceidentity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spserviceidentity.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spserviceinstance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spserviceinstance.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsessionstateservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsessionstateservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spshelladmins.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spshelladmins.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsite.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsiteurl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsiteurl.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spstateserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spstateserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spsubscriptionsettingsserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spsubscriptionsettingsserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sptimerjobstate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sptimerjobstate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sptrustedidentitytokenissuer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sptrustedidentitytokenissuer.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sptrustedidentitytokenissuerproviderrealms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sptrustedidentitytokenissuerproviderrealms.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sptrustedrootauthority.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sptrustedrootauthority.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spusageapplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spusageapplication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofileproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofileproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofilesection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofilesection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofileserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofileserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofileserviceapppermissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofileserviceapppermissions.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofilesyncconnection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofilesyncconnection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spuserprofilesyncservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spuserprofilesyncservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spvisioserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spvisioserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spweb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spweb.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappauthentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappauthentication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappblockedfiletypes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappblockedfiletypes.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappclientcallablesettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappclientcallablesettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappgeneralsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappgeneralsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapplication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapplicationappdomain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapplicationappdomain.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapplicationextension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapplicationextension.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapppeoplepickersettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapppeoplepickersettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapppermissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapppermissions.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapppolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapppolicy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebapppropertybag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebapppropertybag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappproxygroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappproxygroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappsiteuseanddeletion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappsiteuseanddeletion.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappsuitebar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappsuitebar.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappthrottlingsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappthrottlingsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwebappworkflowsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwebappworkflowsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spwordautomationserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spwordautomationserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spworkflowservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spworkflowservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_spworkmanagementserviceapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_spworkmanagementserviceapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlagdatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlagdatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlagentoperator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlagentoperator.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlaglistener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlaglistener.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlagreplica.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlagreplica.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlalias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlalias.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlalwaysonservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlalwaysonservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabasedefaultlocation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabasedefaultlocation.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabaseowner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabaseowner.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabasepermission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabasepermission.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabaserecoverymodel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabaserecoverymodel.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqldatabaserole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqldatabaserole.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlrs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlrs.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlscript.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlscript.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlscriptquery.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlscriptquery.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverdatabasemail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverdatabasemail.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverendpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverendpoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverendpointpermission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverendpointpermission.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverendpointstate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverendpointstate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverlogin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverlogin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlservermaxdop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlservermaxdop.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlservermemory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlservermemory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlservernetwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlservernetwork.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverpermission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverpermission.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverreplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverreplication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserverrole.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserverrole.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserversecureconnection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserversecureconnection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlserviceaccount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlserviceaccount.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlsetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlsetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlwaitforag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlwaitforag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_sqlwindowsfirewall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_sqlwindowsfirewall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_systemlocale.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_systemlocale.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_timezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_timezone.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_user.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_userrightsassignment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_userrightsassignment.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_virtualmemory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_virtualmemory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_waitforcertificateservices.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_waitforcertificateservices.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_waitfordisk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_waitfordisk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_waitfornetworkteam.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_waitfornetworkteam.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_waitforvolume.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_waitforvolume.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_webapplicationhandler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_webapplicationhandler.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_windowseventlog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_windowseventlog.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_windowsfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_windowsfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_windowsoptionalfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_windowsoptionalfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_windowsprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_windowsprocess.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_winssetting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_winssetting.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_wsmanlistener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_wsmanlistener.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_wsmanserviceconfig.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_wsmanserviceconfig.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadcomputer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadcomputer.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xaddomain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xaddomain.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xaddomaincontroller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xaddomaincontroller.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xaddomaindefaultpasswordpolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xaddomaindefaultpasswordpolicy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xaddomaintrust.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xaddomaintrust.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadforestproperties.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadforestproperties.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadgroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadgroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadobjectpermissionentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadobjectpermissionentry.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadorganizationalunit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadorganizationalunit.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadrecyclebin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadrecyclebin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadreplicationsite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadreplicationsite.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadreplicationsubnet.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadreplicationsubnet.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xadserviceprincipalname.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xadserviceprincipalname.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xaduser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xaduser.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xarchive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xarchive.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazureaffinitygroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazureaffinitygroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackadmin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackdatabasesetting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackdatabasesetting.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackfqdn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackfqdn.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackidentityprovider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackidentityprovider.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackrelyingparty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackrelyingparty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackresourceprovider.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackresourceprovider.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepacksetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepacksetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurepackupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurepackupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurequickvm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurequickvm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazureservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazureservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazuresqldatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazuresqldatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazuresqldatabaseserverfirewallrule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazuresqldatabaseserverfirewallrule.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurestorageaccount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurestorageaccount.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazuresubscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazuresubscription.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurevm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurevm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurevmdscconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurevmdscconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xazurevmdscextension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xazurevmdscextension.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xblautobitlocker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xblautobitlocker.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xblbitlocker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xblbitlocker.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xbltpm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xbltpm.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xcluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xcluster.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xclusterdisk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xclusterdisk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xclusternetwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xclusternetwork.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xclusterpreferredowner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xclusterpreferredowner.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xclusterproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xclusterproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xclusterquorum.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xclusterquorum.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xcredssp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xcredssp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdatabaselogin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdatabaselogin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdatabaseserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdatabaseserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdbpackage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdbpackage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserverauthorization.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserverauthorization.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserverclass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserverclass.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserveroption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserveroption.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserveroptiondefinition.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserveroptiondefinition.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserverreservation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserverreservation.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdhcpserverscope.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdhcpserverscope.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdisk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdisk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdismfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdismfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsarecord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsarecord.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsrecord.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsrecord.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserveradzone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserveradzone.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserverforwarder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserverforwarder.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserverprimaryzone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserverprimaryzone.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserversecondaryzone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserversecondaryzone.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserversetting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserversetting.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserverzoneaging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserverzoneaging.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdnsserverzonetransfer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdnsserverzonetransfer.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xdscwebservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xdscwebservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xenvironment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xenvironment.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchactivesyncvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchactivesyncvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchantimalwarescanning.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchantimalwarescanning.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchautodiscovervirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchautodiscovervirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchautomountpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchautomountpoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchclientaccessserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchclientaccessserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchdatabaseavailabilitygroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchdatabaseavailabilitygroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchdatabaseavailabilitygroupmember.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchdatabaseavailabilitygroupmember.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchdatabaseavailabilitygroupnetwork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchdatabaseavailabilitygroupnetwork.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchecpvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchecpvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexcheventloglevel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexcheventloglevel.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchexchangecertificate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchexchangecertificate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchexchangeserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchexchangeserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchimapsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchimapsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchinstall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchjetstress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchjetstress.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchjetstresscleanup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchjetstresscleanup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmailboxdatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmailboxdatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmailboxdatabasecopy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmailboxdatabasecopy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmailboxserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmailboxserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmailboxtransportservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmailboxtransportservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmaintenancemode.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmaintenancemode.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchmapivirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchmapivirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchoabvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchoabvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchoutlookanywhere.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchoutlookanywhere.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchowavirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchowavirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchpopsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchpopsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchpowershellvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchpowershellvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchreceiveconnector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchreceiveconnector.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchtransportservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchtransportservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchumcallroutersettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchumcallroutersettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchumservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchumservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchwaitforadprep.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchwaitforadprep.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchwaitfordag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchwaitfordag.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchwaitformailboxdatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchwaitformailboxdatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xexchwebservicesvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xexchwebservicesvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xgroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xgroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xhotfix.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xhotfix.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xiisfeaturedelegation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xiisfeaturedelegation.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xiishandler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xiishandler.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xiislogging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xiislogging.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xiismimetypemapping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xiismimetypemapping.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xiismodule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xiismodule.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xinternetexplorerhomepage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xinternetexplorerhomepage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xjeaendpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xjeaendpoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xjeatoolkit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xjeatoolkit.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmicrosoftupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmicrosoftupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmppreference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmppreference.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmsipackage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmsipackage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmysqldatabase.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmysqldatabase.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmysqlgrant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmysqlgrant.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmysqlserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmysqlserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xmysqluser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xmysqluser.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xpackage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xpackage.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xpendingreboot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xpendingreboot.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xpowershellexecutionpolicy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xpowershellexecutionpolicy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xpsendpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xpsendpoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdgatewayconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdgatewayconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdlicenseconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdlicenseconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdremoteapp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdremoteapp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdsessioncollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdsessioncollection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdsessioncollectionconfiguration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdsessioncollectionconfiguration.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrdsessiondeployment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrdsessiondeployment.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xregistry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xregistry.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xremotedesktopadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xremotedesktopadmin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xremotefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xremotefile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xrobocopy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xrobocopy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscdpmconsolesetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscdpmconsolesetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscdpmdatabaseserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscdpmdatabaseserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscdpmserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscdpmserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomadmin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomconsolesetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomconsolesetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomconsoleupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomconsoleupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscommanagementpack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscommanagementpack.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscommanagementserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscommanagementserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscommanagementserverupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscommanagementserverupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomreportingserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomreportingserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomwebconsoleserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomwebconsoleserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscomwebconsoleserverupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscomwebconsoleserverupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscript.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscript.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscsmapowershellsetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscsmapowershellsetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscsmarunbookworkerserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscsmarunbookworkerserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscsmawebserviceserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscsmawebserviceserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscspfserver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscspfserver.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscspfserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscspfserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscspfserverupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscspfserverupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscspfsetting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscspfsetting.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscspfstamp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscspfstamp.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscsrserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscsrserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscsrserverupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscsrserverupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscvmmadmin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscvmmadmin.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscvmmconsolesetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscvmmconsolesetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscvmmconsoleupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscvmmconsoleupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscvmmmanagementserversetup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscvmmmanagementserversetup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xscvmmmanagementserverupdate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xscvmmmanagementserverupdate.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsmacredential.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsmacredential.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsmbshare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsmbshare.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsqlalias.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsqlalias.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsqlhaendpoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsqlhaendpoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsqlhagroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsqlhagroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsqlhaservice.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsqlhaservice.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsqlserverinstall.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsqlserverinstall.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsslsettings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsslsettings.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsystemrestore.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsystemrestore.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xsystemrestorepoint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xsystemrestorepoint.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xtimezone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xtimezone.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xuser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xuser.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvhd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvhd.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvhdfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvhdfile.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmdvddrive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmdvddrive.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmharddiskdrive.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmharddiskdrive.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmhost.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmhost.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmhyperv.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmhyperv.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmnetworkadapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmnetworkadapter.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmprocessor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmprocessor.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmscsicontroller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmscsicontroller.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xvmswitch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xvmswitch.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwaitforaddomain.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwaitforaddomain.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwaitforcluster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwaitforcluster.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwaitfordisk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwaitfordisk.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwaitforsqlhagroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwaitforsqlhagroup.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebapplication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebapplication.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebapppool.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebapppool.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebapppooldefaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebapppooldefaults.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebconfigkeyvalue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebconfigkeyvalue.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebconfigproperty.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebconfigproperty.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebconfigpropertycollection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebconfigpropertycollection.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebpackagedeploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebpackagedeploy.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebsite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebsite.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebsitedefaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebsitedefaults.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwebvirtualdirectory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwebvirtualdirectory.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwefcollector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwefcollector.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwefsubscription.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwefsubscription.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwindowsfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwindowsfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwindowsoptionalfeature.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwindowsoptionalfeature.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwindowspackagecab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwindowspackagecab.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwindowsprocess.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwindowsprocess.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwindowsupdateagent.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwindowsupdateagent.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwineventlog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwineventlog.rb -------------------------------------------------------------------------------- /lib/puppet/type/dsc_xwordpresssite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet/type/dsc_xwordpresssite.rb -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/ActiveDirectoryCSDsc/ActiveDirectoryCSDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/ActiveDirectoryCSDsc/ActiveDirectoryCSDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/ActiveDirectoryCSDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/ActiveDirectoryCSDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/AuditPolicyDsc/AuditPolicyDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/AuditPolicyDsc/AuditPolicyDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/AuditPolicyDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/AuditPolicyDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/CertificateDsc/CertificateDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/CertificateDsc/CertificateDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/CertificateDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/CertificateDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/ComputerManagementDsc/ComputerManagementDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/ComputerManagementDsc/ComputerManagementDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/ComputerManagementDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/ComputerManagementDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/DFSDsc/DFSDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/DFSDsc/DFSDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/DFSDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/DFSDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FSRMDsc/DSCResources/DSR_FSRMQuota/DSR_FSRMQuota.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FSRMDsc/DSCResources/DSR_FSRMQuota/DSR_FSRMQuota.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FSRMDsc/FSRMDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FSRMDsc/FSRMDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FSRMDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FSRMDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FSRMDsc/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FSRMDsc/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FileContentDsc/FileContentDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FileContentDsc/FileContentDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FileContentDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FileContentDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FileContentDsc/Modules/FileContentDsc.Common/en-us/FileContentDsc.Common.strings.psd1: -------------------------------------------------------------------------------- 1 | ConvertFrom-StringData @' 2 | '@ 3 | -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/FileContentDsc/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/FileContentDsc/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/NetworkingDsc/DSCResources/MSFT_Route/MSFT_Route.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/NetworkingDsc/DSCResources/MSFT_Route/MSFT_Route.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/NetworkingDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/NetworkingDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/NetworkingDsc/NetworkingDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/NetworkingDsc/NetworkingDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/OfficeOnlineServerDsc/OfficeOnlineServerDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/OfficeOnlineServerDsc/OfficeOnlineServerDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Disable-DscDebug.cdxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Disable-DscDebug.cdxml -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Enable-DscDebug.cdxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Enable-DscDebug.cdxml -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Get-DscConfiguration.cdxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/Get-DscConfiguration.cdxml -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/PSDscXMachine.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/PSDesiredStateConfiguration/PSDscXMachine.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SecurityPolicyDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SecurityPolicyDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SecurityPolicyDsc/SecurityPolicyDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SecurityPolicyDsc/SecurityPolicyDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SharePointDsc/DSCResources/MSFT_SPWeb/MSFT_SPWeb.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SharePointDsc/DSCResources/MSFT_SPWeb/MSFT_SPWeb.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SharePointDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SharePointDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SharePointDsc/Modules/SharePointDsc.Farm/SPFarm.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SharePointDsc/Modules/SharePointDsc.Farm/SPFarm.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SharePointDsc/SharePointDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SharePointDsc/SharePointDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/CommonResourceHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/CommonResourceHelper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/MSFT_SqlAG/MSFT_SqlAG.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/MSFT_SqlAG/MSFT_SqlAG.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/MSFT_SqlRS/MSFT_SqlRS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/DSCResources/MSFT_SqlRS/MSFT_SqlRS.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/SQLServerDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/SQLServerDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/SqlServerDscHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/SqlServerDscHelper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/en-US/SqlServerDscHelper.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/en-US/SqlServerDscHelper.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SqlServerDsc/sv-SE/SqlServerDscHelper.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SqlServerDsc/sv-SE/SqlServerDscHelper.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/StorageDsc/DSCResources/MSFTDSC_Disk/MSFTDSC_Disk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/StorageDsc/DSCResources/MSFTDSC_Disk/MSFTDSC_Disk.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/StorageDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/StorageDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/StorageDsc/StorageDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/StorageDsc/StorageDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SystemLocaleDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SystemLocaleDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/SystemLocaleDsc/SystemLocaleDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/SystemLocaleDsc/SystemLocaleDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WSManDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WSManDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WSManDsc/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WSManDsc/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WSManDsc/WSManDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WSManDsc/WSManDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/WmiNamespaceSecurity.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/WmiNamespaceSecurity.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/WmiNamespaceSecurity.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/WmiNamespaceSecurityDsc/WmiNamespaceSecurity.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/iSCSIDsc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/iSCSIDsc/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/iSCSIDsc/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/iSCSIDsc/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/iSCSIDsc/iSCSIDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/iSCSIDsc/iSCSIDsc.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/Assert-HADC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/Assert-HADC.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/Assert-ParentChildDomains.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/Assert-ParentChildDomains.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/HADCConfiguration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/HADCConfiguration.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/Misc/New-ADDomainTrust.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/Misc/New-ADDomainTrust.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/ParentChildConfig.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/ParentChildConfig.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xActiveDirectory/xActiveDirectory.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xActiveDirectory/xActiveDirectory.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzure/DSCResources/MSFT_xAzureVM/MSFT_xAzureVM.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzure/DSCResources/MSFT_xAzureVM/MSFT_xAzureVM.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzure/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzure/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzure/xAzure.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzure/xAzure.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzurePack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzurePack/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzurePack/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzurePack/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzurePack/xAzurePack.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzurePack/xAzurePack.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xAzurePack/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xAzurePack/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xBitlocker/DSCResources/MSFT_xBLTpm/MSFT_xBLTpm.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xBitlocker/DSCResources/MSFT_xBLTpm/MSFT_xBLTpm.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xBitlocker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xBitlocker/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xBitlocker/Misc/xBitlockerCommon.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xBitlocker/Misc/xBitlockerCommon.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xBitlocker/xBitlocker.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xBitlocker/xBitlocker.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xCredSSP/DSCResources/MSFT_xCredSSP/MSFT_xCredSSP.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xCredSSP/DSCResources/MSFT_xCredSSP/MSFT_xCredSSP.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xCredSSP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xCredSSP/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xCredSSP/xCredSSP.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xCredSSP/xCredSSP.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDatabase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDatabase/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDatabase/xDatabase.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDatabase/xDatabase.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDefender/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDefender/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDefender/xDefender.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDefender/xDefender.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/DSCResources/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/DSCResources/Helper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/Misc/New-DhcpServerOptionResource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/Misc/New-DhcpServerOptionResource.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/Misc/New-DhcpServerScopeResource.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/Misc/New-DhcpServerScopeResource.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/Modules/CommonResourceHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/Modules/CommonResourceHelper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDhcpServer/xDhcpServer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDhcpServer/xDhcpServer.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDisk/DSCResources/MSFT_xDisk/MSFT_xDisk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDisk/DSCResources/MSFT_xDisk/MSFT_xDisk.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDisk/DSCResources/MSFT_xDisk/MSFT_xDisk.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDisk/DSCResources/MSFT_xDisk/MSFT_xDisk.schema.mof -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDisk/xDisk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDisk/xDisk.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDismFeature/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDismFeature/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDismFeature/xDismFeature.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDismFeature/xDismFeature.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/DSCResources/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/DSCResources/Helper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/Misc/Generate_xDnsServerSetting.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/Misc/Generate_xDnsServerSetting.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/Misc/New-DnsServerSecondaryZone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/Misc/New-DnsServerSecondaryZone.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/Misc/New-DnsServerZoneTransfer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/Misc/New-DnsServerZoneTransfer.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xDnsServer/xDnsServer.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xDnsServer/xDnsServer.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xExchange/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xExchange/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeCalculatorHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeCalculatorHelper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeDiskPart.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeDiskPart.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xExchange/Modules/xExchangeHelper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xExchange/xExchange.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xExchange/xExchange.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xFailOverCluster/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xFailOverCluster/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xFailOverCluster/xFailOverCluster.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xFailOverCluster/xFailOverCluster.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/DSCResources/MSFT_xVHD/MSFT_xVHD.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/DSCResources/MSFT_xVHD/MSFT_xVHD.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/Misc/VHDResourceGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/Misc/VHDResourceGenerator.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/Misc/VMHardDiskDriveGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/Misc/VMHardDiskDriveGenerator.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/Misc/VMResourceGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/Misc/VMResourceGenerator.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/Misc/VMScsiControllerGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/Misc/VMScsiControllerGenerator.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/Misc/VMSwitchGenerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/Misc/VMSwitchGenerator.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xHyper-V/xHyper-V.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xHyper-V/xHyper-V.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xInternetExplorerHomePage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xInternetExplorerHomePage/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/DSCResources/Library/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/DSCResources/Library/Helper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaAccount.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaAccount.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaDir.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaDir.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaInitFile.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaInitFile.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaProxy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/DSCResources/Library/JeaProxy.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/Util/Initialize-ToolKit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/Util/Initialize-ToolKit.ps1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/Util/SafeProxy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/Util/SafeProxy.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/xJea.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/xJea.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xJea/xjea.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xJea/xjea.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xMySql/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xMySql/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xMySql/MSFT_xMySqlUtilities.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xMySql/MSFT_xMySqlUtilities.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xMySql/xMySql.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xMySql/xMySql.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPSDesiredStateConfiguration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPSDesiredStateConfiguration/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPendingReboot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPendingReboot/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPendingReboot/xPendingReboot.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPendingReboot/xPendingReboot.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPhp/DscResources/xPhpProvision/xPhpProvision.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPhp/DscResources/xPhpProvision/xPhpProvision.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPhp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPhp/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPhp/xPhp.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPhp/xPhp.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xPowerShellExecutionPolicy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xPowerShellExecutionPolicy/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xRemoteDesktopAdmin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xRemoteDesktopAdmin/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xRemoteDesktopAdmin/xRemoteDesktopAdmin.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xRemoteDesktopAdmin/xRemoteDesktopAdmin.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xRemoteDesktopSessionHost/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xRemoteDesktopSessionHost/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xRobocopy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xRobocopy/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xRobocopy/xRobocopy.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xRobocopy/xRobocopy.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCDPM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCDPM/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCDPM/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCDPM/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCDPM/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCDPM/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCDPM/xSCDPM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCDPM/xSCDPM.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCOM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCOM/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCOM/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCOM/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCOM/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCOM/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCOM/xSCOM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCOM/xSCOM.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSMA/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSMA/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSMA/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSMA/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSMA/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSMA/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSMA/xSCSMA.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSMA/xSCSMA.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSPF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSPF/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSPF/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSPF/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSPF/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSPF/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSPF/xSCSPF.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSPF/xSCSPF.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSR/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSR/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSR/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSR/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSR/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCSR/xSCSR.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCSR/xSCSR.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCVMM/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCVMM/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCVMM/en-US/xPDT.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCVMM/en-US/xPDT.strings.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCVMM/xPDT.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCVMM/xPDT.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSCVMM/xSCVMM.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSCVMM/xSCVMM.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSmbShare/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSmbShare/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSmbShare/xSmbShare.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSmbShare/xSmbShare.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSqlPs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSqlPs/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xSqlPs/xSqlPs.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xSqlPs/xSqlPs.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xTimeZone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xTimeZone/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xTimeZone/Modules/TimeZoneDsc.Common/SetTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xTimeZone/Modules/TimeZoneDsc.Common/SetTimeZone.cs -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xTimeZone/xTimeZone.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xTimeZone/xTimeZone.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebAdministration/DSCResources/Helper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebAdministration/DSCResources/Helper.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebAdministration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebAdministration/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebAdministration/xWebAdministration.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebAdministration/xWebAdministration.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebDeploy/DSCResources/xWebDeploy/xWebDeploy.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebDeploy/DSCResources/xWebDeploy/xWebDeploy.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebDeploy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebDeploy/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWebDeploy/xWebDeploy.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWebDeploy/xWebDeploy.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWinEventLog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWinEventLog/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWinEventLog/xWinEventLog.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWinEventLog/xWinEventLog.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWinEventLog/xWinEventLog.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWinEventLog/xWinEventLog.psm1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWindowsEventForwarding/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWindowsEventForwarding/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWindowsRestore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWindowsRestore/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWindowsRestore/xWindowsRestore.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWindowsRestore/xWindowsRestore.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWindowsUpdate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWindowsUpdate/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWindowsUpdate/xWindowsUpdate.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWindowsUpdate/xWindowsUpdate.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWordPress/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWordPress/LICENSE -------------------------------------------------------------------------------- /lib/puppet_x/dsc_resources/xWordPress/xWordPress.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/dsc_resources/xWordPress/xWordPress.psd1 -------------------------------------------------------------------------------- /lib/puppet_x/puppetlabs/compatible_powershell_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/puppetlabs/compatible_powershell_version.rb -------------------------------------------------------------------------------- /lib/puppet_x/puppetlabs/dsc_type_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/puppetlabs/dsc_type_helpers.rb -------------------------------------------------------------------------------- /lib/puppet_x/puppetlabs/powershell_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/puppetlabs/powershell_manager.rb -------------------------------------------------------------------------------- /lib/puppet_x/puppetlabs/powershell_version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/puppetlabs/powershell_version.rb -------------------------------------------------------------------------------- /lib/puppet_x/templates/dsc/init_ps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/lib/puppet_x/templates/dsc/init_ps.ps1 -------------------------------------------------------------------------------- /locales/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/locales/config.yaml -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/metadata.json -------------------------------------------------------------------------------- /provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/provision.yaml -------------------------------------------------------------------------------- /spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/README.md -------------------------------------------------------------------------------- /spec/acceptance/basic_dsc_resources/file/dir_valid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/acceptance/basic_dsc_resources/file/dir_valid_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/basic_dsc_resources/file/file_valid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/acceptance/basic_dsc_resources/file/file_valid_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/basic_dsc_resources/file/negative/file_invalid_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/acceptance/basic_dsc_resources/file/negative/file_invalid_spec.rb -------------------------------------------------------------------------------- /spec/acceptance/basic_functionality/puppet_apply_noop_dsc_manifest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/acceptance/basic_functionality/puppet_apply_noop_dsc_manifest_spec.rb -------------------------------------------------------------------------------- /spec/default_facts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/default_facts.yml -------------------------------------------------------------------------------- /spec/exit-27.ps1: -------------------------------------------------------------------------------- 1 | exit 27 -------------------------------------------------------------------------------- /spec/files/reboot/PuppetFakeResource/PuppetFakeResource.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/files/reboot/PuppetFakeResource/PuppetFakeResource.psd1 -------------------------------------------------------------------------------- /spec/files/reboot/dsc_puppetfakeresource.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/files/reboot/dsc_puppetfakeresource.rb -------------------------------------------------------------------------------- /spec/files/test_installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/files/test_installer/README.md -------------------------------------------------------------------------------- /spec/files/test_installer/test.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/files/test_installer/test.nsi -------------------------------------------------------------------------------- /spec/files/test_installer/test.txt: -------------------------------------------------------------------------------- 1 | Meow! 2 | -------------------------------------------------------------------------------- /spec/fixtures/bad.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/doublequotes.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/fixtures/doublequotes.psd1 -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/default/DSCResources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/default/default.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/missing/DSCResources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/missing/will_not_match.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/mixedCase/DSCResources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/mixedCase/MIXEDCase.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/multiCase/Another.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/multiCase/DSCResources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/multiCase/MuLTICase.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/dsc_modules/multiCase/ZzAnother.psd1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures/good.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/fixtures/good.psd1 -------------------------------------------------------------------------------- /spec/fixtures/singlequotes.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/fixtures/singlequotes.psd1 -------------------------------------------------------------------------------- /spec/integration/puppet_x/puppetlabs/compatible_powershell_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/integration/puppet_x/puppetlabs/compatible_powershell_version_spec.rb -------------------------------------------------------------------------------- /spec/integration/puppet_x/puppetlabs/powershell_manager_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/integration/puppet_x/puppetlabs/powershell_manager_spec.rb -------------------------------------------------------------------------------- /spec/integration/puppet_x/puppetlabs/powershell_version_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/integration/puppet_x/puppetlabs/powershell_version_spec.rb -------------------------------------------------------------------------------- /spec/lib/dsc_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/lib/dsc_utils.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper_acceptance.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/spec_helper_acceptance.rb -------------------------------------------------------------------------------- /spec/spec_helper_local.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/spec_helper_local.rb -------------------------------------------------------------------------------- /spec/unit/build/dsc/resource_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/build/dsc/resource_spec.rb -------------------------------------------------------------------------------- /spec/unit/psmodule_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/psmodule_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/provider/powershell_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/provider/powershell_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/README -------------------------------------------------------------------------------- /spec/unit/puppet/type/base_dsc_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/base_dsc_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_archive_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_archive_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_environment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_environment_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_file_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_file_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_group_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_group_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_log_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_log_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_package_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_package_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_registry_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_registry_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_script_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_script_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_service_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_user_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_windowsfeature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_windowsfeature_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_windowsoptionalfeature_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_windowsoptionalfeature_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet/type/dsc_windowsprocess_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet/type/dsc_windowsprocess_spec.rb -------------------------------------------------------------------------------- /spec/unit/puppet_x/puppetlabs/dsc_type_helpers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/spec/unit/puppet_x/puppetlabs/dsc_type_helpers_spec.rb -------------------------------------------------------------------------------- /types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puppetlabs-toy-chest/puppetlabs-dsc/HEAD/types.md --------------------------------------------------------------------------------