├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── General.md │ ├── Problem_with_resource.yml │ ├── Resource_proposal.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── stale.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── analyzersettings.psd1 ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── LICENSE ├── README.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── appveyor.yml ├── azure-pipelines.yml ├── codecov.yml ├── source ├── Classes │ ├── 001.CMReason.ps1 │ └── 020.PSResourceRepository.ps1 ├── ComputerManagementDsc.psd1 ├── ComputerManagementDsc.psm1 ├── DSCResources │ ├── DSC_Computer │ │ ├── DSC_Computer.psm1 │ │ ├── DSC_Computer.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_Computer.strings.psd1 │ ├── DSC_IEEnhancedSecurityConfiguration │ │ ├── DSC_IEEnhancedSecurityConfiguration.psm1 │ │ ├── DSC_IEEnhancedSecurityConfiguration.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_IEEnhancedSecurityConfiguration.strings.psd1 │ ├── DSC_OfflineDomainJoin │ │ ├── DSC_OfflineDomainJoin.psm1 │ │ ├── DSC_OfflineDomainJoin.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_OfflineDomainJoin.strings.psd1 │ ├── DSC_PendingReboot │ │ ├── DSC_PendingReboot.psm1 │ │ ├── DSC_PendingReboot.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_PendingReboot.data.psd1 │ │ │ └── DSC_PendingReboot.strings.psd1 │ ├── DSC_PowerPlan │ │ ├── DSC_PowerPlan.psm1 │ │ ├── DSC_PowerPlan.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_PowerPlan.schema.mfl │ │ │ └── DSC_PowerPlan.strings.psd1 │ ├── DSC_PowerShellExecutionPolicy │ │ ├── DSC_PowerShellExecutionPolicy.psm1 │ │ ├── DSC_PowerShellExecutionPolicy.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_PowerShellExecutionPolicy.strings.psd1 │ ├── DSC_RemoteDesktopAdmin │ │ ├── DSC_RemoteDesktopAdmin.psm1 │ │ ├── DSC_RemoteDesktopAdmin.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_RemoteDesktopAdmin.strings.psd1 │ ├── DSC_ScheduledTask │ │ ├── DSC_ScheduledTask.psm1 │ │ ├── DSC_ScheduledTask.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_ScheduledTask.strings.psd1 │ ├── DSC_SmbServerConfiguration │ │ ├── DSC_SmbServerConfiguration.data.psd1 │ │ ├── DSC_SmbServerConfiguration.psm1 │ │ ├── DSC_SmbServerConfiguration.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_SmbServerConfiguration.schema.mfl │ │ │ └── DSC_SmbServerConfiguration.strings.psd1 │ ├── DSC_SmbShare │ │ ├── DSC_SmbShare.psm1 │ │ ├── DSC_SmbShare.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ ├── DSC_SmbShare.schema.mfl │ │ │ └── DSC_SmbShare.strings.psd1 │ ├── DSC_SystemLocale │ │ ├── DSC_SystemLocale.psm1 │ │ ├── DSC_SystemLocale.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_SystemLocale.strings.psd1 │ ├── DSC_SystemProtection │ │ ├── DSC_SystemProtection.psm1 │ │ ├── DSC_SystemProtection.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_SystemProtection.strings.psd1 │ ├── DSC_SystemRestorePoint │ │ ├── DSC_SystemRestorePoint.psm1 │ │ ├── DSC_SystemRestorePoint.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_SystemRestorePoint.strings.psd1 │ ├── DSC_TimeZone │ │ ├── DSC_TimeZone.psm1 │ │ ├── DSC_TimeZone.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_TimeZone.strings.psd1 │ ├── DSC_UserAccountControl │ │ ├── DSC_UserAccountControl.psm1 │ │ ├── DSC_UserAccountControl.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_UserAccountControl.strings.psd1 │ ├── DSC_VirtualMemory │ │ ├── DSC_VirtualMemory.psm1 │ │ ├── DSC_VirtualMemory.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_VirtualMemory.strings.psd1 │ ├── DSC_WindowsCapability │ │ ├── DSC_WindowsCapability.psm1 │ │ ├── DSC_WindowsCapability.schema.mof │ │ ├── README.md │ │ └── en-US │ │ │ └── DSC_WindowsCapability.strings.psd1 │ └── DSC_WindowsEventLog │ │ ├── DSC_WindowsEventLog.psm1 │ │ ├── DSC_WindowsEventLog.schema.mof │ │ ├── README.md │ │ └── en-US │ │ └── DSC_WindowsEventLog.strings.psd1 ├── Examples │ ├── README.md │ └── Resources │ │ ├── Computer │ │ ├── 1-Computer_RenameComputerAndSetWorkgroup_Config.ps1 │ │ ├── 2-Computer_JoinDomain_Config.ps1 │ │ ├── 3-Computer_RenameComputerInDomain_Config.ps1 │ │ ├── 4-Computer_RenameComputerInWorkgroup_Config.ps1 │ │ ├── 5-Computer_UnjoinDomainAndJoinWorkgroup_Config.ps1 │ │ ├── 6-Computer_SetComputerDescriptionInWorkgroup_Config.ps1 │ │ └── 7-Computer_JoinDomainSpecifyingDC_Config.ps1 │ │ ├── IEEnhancedSecurityConfiguration │ │ ├── 1-IEEnhancedSecurityConfiguration_DisableForAdministrators_Config.ps1 │ │ └── 2-IEEnhancedSecurityConfiguration_DisableForUsers_Config.ps1 │ │ ├── OfflineDomainJoin │ │ └── 1-OfflineDomainJoin_JoinDomainUsingODJBlob_Config.ps1 │ │ ├── PSResourceRepository │ │ ├── 1-Register_PSGallery_Present.ps1 │ │ ├── 2-Register_PSRepository_Present.ps1 │ │ └── 3-Repository_Absent.ps1 │ │ ├── PendingReboot │ │ ├── 1-PendingReboot_RebootAfterDomainJoin_Config.ps1 │ │ └── 2-PendingReboot_ConfigMgrReboot_Config.ps1 │ │ ├── PowerPlan │ │ └── 1-PowerPlan_SetPowerPlan_Config.ps1 │ │ ├── PowerShellExecutionPolicy │ │ ├── 1-PowerShellExecutionPolicy_SetPolicy_Config.ps1 │ │ └── 2-PowerShellExecutionPolicy_SetPolicyForMultipleScopes_Config.ps1 │ │ ├── RemoteDesktopAdmin │ │ └── 1-RemoteDesktopAdmin_SetSecureRemoteDesktopAdmin_Config.ps1 │ │ ├── ScheduledTask │ │ ├── 1-ScheduledTask_CreateScheduledTaskOnce_Config.ps1 │ │ ├── 10-ScheduledTask_RunPowerShellTaskOnceAsUserInteractiveOnly_Config.ps1 │ │ ├── 11-ScheduledTask_DisableABuiltInTask_Config.ps1 │ │ ├── 12-ScheduledTask_DeleteABuiltInTask_Config.ps1 │ │ ├── 13-ScheduledTask_CreateScheduledTasksOnEvent_Config.ps1 │ │ ├── 14-ScheduledTask_RunPowerShellTaskOnceAsGroupManagedServiceAccount_Config.ps1 │ │ ├── 15-ScheduledTask_CreateScheduledTaskOnceSynchronizeAcrossTimeZoneEnabled_Config.ps1 │ │ ├── 16-ScheduledTask_CreateScheduledTasksAsBuiltInServiceAccount_Config.ps1 │ │ ├── 17-ScheduledTask_CreateScheduledTasksOnIdle_Config.ps1 │ │ ├── 18-ScheduledTask_CreateScheduledTasksAtCreation_Config.ps1 │ │ ├── 19-ScheduledTask_CreateScheduledTasksOnSessionState_Config.ps1 │ │ ├── 2-ScheduledTask_CreateScheduledTaskDaily_Config.ps1 │ │ ├── 3-ScheduledTask_CreateScheduledTasksDailyIndefinitely_Config.ps1 │ │ ├── 4-ScheduledTask_CreateScheduledTasksWeekly_Config.ps1 │ │ ├── 5-ScheduledTask_CreateScheduledTasksAtLogon_Config.ps1 │ │ ├── 6-ScheduledTask_CreateScheduledTasksAtStartup_Config.ps1 │ │ ├── 7-ScheduledTask_RunPowerShellTaskEvery15Minutes_Config.ps1 │ │ ├── 8-ScheduledTask_RunPowerShellTaskEvery15MinutesIndefinitely_Config.ps1 │ │ └── 9-ScheduledTask_RunPowerShellTaskOnceAsUserWithHighestPriveleges_Config.ps1 │ │ ├── SmbServerConfiguration │ │ ├── 1-SmbServerConfiguration_AllProperties_Config.ps1 │ │ └── 1-SmbServerConfiguration_DisableSmb1_Config.ps1 │ │ ├── SmbShare │ │ ├── 1-SmbShare_CreateShare_Config.ps1 │ │ ├── 2-SmbShare_CreateShareAllProperties_Config.ps1 │ │ ├── 3-SmbShare_RemoveShare_Config.ps1 │ │ └── 4-SmbShare_RecreateShare_Config.ps1 │ │ ├── SystemLocale │ │ └── 1-SystemLocale_SetSystemLocale_Config.ps1 │ │ ├── SystemProtection │ │ ├── 1-SystemProtection_EnableDriveC_Config.ps1 │ │ ├── 2-SystemProtection_EnableDriveC_5Percent_Config.ps1 │ │ ├── 3-SystemProtection_DisableDriveF_Config.ps1 │ │ ├── 4-SystemProtection_ReduceDriveCDiskUsage_Config.ps1 │ │ └── 5-SystemProtection_MultiDrive_Config.ps1 │ │ ├── SystemRestorePoint │ │ ├── 1-SystemRestorePoint_CreateModifySettings_Config.ps1 │ │ └── 2-SystemRestorePoint_DeleteApplicationInstalls_Config.ps1 │ │ ├── TimeZone │ │ └── 1-TimeZone_SetTimeZone_Config.ps1 │ │ ├── UserAccountControl │ │ ├── 1-UserAccountControl_ChangeNotificationLevel_Config.ps1 │ │ └── 2-UserAccountControl_GranularSettings_Config.ps1 │ │ ├── VirtualMemory │ │ └── 1-VirtualMemory_SetVirtualMemory_Config.ps1 │ │ ├── WindowsCapability │ │ ├── 1-WindowsCapability_AddWindowsCapability_Config.ps1 │ │ ├── 2-WindowsCapability_RemoveWindowsCapability_Config.ps1 │ │ ├── 3-WindowsCapability_AddWindowsCapabilitywithLogLevelandLogPath_Config.ps1 │ │ └── 4-WindowsCapability_AddWindowsCapabilitywithLogLevelLogPathandSource_Config.ps1 │ │ └── WindowsEventlog │ │ ├── 1-WindowsEventLog_SetLogSize_Config.ps1 │ │ ├── 10-WindowsEventLog_RegisterEventSourceWithAllFiles_Config.ps1 │ │ ├── 2-WindowsEventLog_SetLogMode_Config.ps1 │ │ ├── 3-WindowsEventlog_EnableWindowsEventLog_Config.ps1 │ │ ├── 4-WindowsEventLog_DisableWindowsEventLog_Config.ps1 │ │ ├── 5-WindowsEventLog_SetSecurityDescriptor_Config.ps1 │ │ ├── 6-WindowsEventLog_RestrictGuestAccess_Config.ps1 │ │ ├── 7-WindowsEventLog_AllowGuestAccess_Config.ps1 │ │ ├── 8-WindowsEventLog_RegisterEventSource_Config.ps1 │ │ └── 9-WindowsEventLog_RegisterEventSourceWithMessageFile_Config.ps1 ├── Modules │ └── ComputerManagementDsc.Common │ │ ├── ComputerManagementDsc.Common.psm1 │ │ ├── SetTimeZone.cs │ │ └── en-US │ │ └── ComputerManagementDsc.Common.strings.psd1 ├── WikiSource │ └── Home.md ├── en-US │ ├── ComputerManagementDsc.strings.psd1 │ ├── PSResourceRepository.strings.psd1 │ └── about_ComputerManagementDsc.help.txt └── prefix.ps1 └── tests ├── Integration ├── Classes │ ├── PSResourceRepository.config.ps1 │ └── PSResourceRepository.integration.tests.ps1 ├── ComputerManagementDsc.Common.Tests.ps1 ├── DSC_IEEnhancedSecurityConfiguration.Config.ps1 ├── DSC_IEEnhancedSecurityConfiguration.Integration.Tests.ps1 ├── DSC_PendingReboot.Tests.ps1 ├── DSC_PendingReboot.config.ps1 ├── DSC_PowerShellExecutionPolicy.Integration.Tests.ps1 ├── DSC_PowerShellExecutionPolicy.config.ps1 ├── DSC_RemoteDesktopAdmin.Integration.Tests.ps1 ├── DSC_RemoteDesktopAdmin.config.ps1 ├── DSC_ScheduledTask.Integration.Tests.ps1 ├── DSC_ScheduledTask.config.ps1 ├── DSC_SmbServerConfiguration.Tests.ps1 ├── DSC_SmbServerConfiguration.config.ps1 ├── DSC_SmbShare.Integration.Tests.ps1 ├── DSC_SmbShare.config.ps1 ├── DSC_SystemLocale.Integration.Tests.ps1 ├── DSC_SystemLocale.config.ps1 ├── DSC_TimeZone.Integration.Tests.ps1 ├── DSC_TimeZone.config.ps1 ├── DSC_UserAccountControl.Config.ps1 ├── DSC_UserAccountControl.Integration.Tests.ps1 ├── DSC_VirtualMemory.Integration.Tests.ps1 ├── DSC_VirtualMemory.config.ps1 ├── DSC_WindowsCapability.Integration.Tests.ps1 ├── DSC_WindowsCapability.config.ps1 ├── DSC_WindowsEventLog.Integration.Tests.ps1 └── DSC_WindowsEventLog.config.ps1 ├── TestHelpers └── CommonTestHelper.psm1 └── Unit ├── Classes ├── CMReason.Tests.ps1 └── PSResourceRepository.Tests.ps1 ├── ComputerManagementDsc.Common.Tests.ps1 ├── DSC_Computer.Tests.ps1 ├── DSC_IEEnhancedSecurityConfiguration.Tests.ps1 ├── DSC_OfflineDomainJoin.Tests.ps1 ├── DSC_PendingReboot.Tests.ps1 ├── DSC_PowerPlan.Tests.ps1 ├── DSC_PowerShellExecutionpolicy.Tests.ps1 ├── DSC_RemoteDesktopAdmin.Tests.ps1 ├── DSC_ScheduledTask.Tests.ps1 ├── DSC_SmbServerConfiguration.Tests.ps1 ├── DSC_SmbShare.Tests.ps1 ├── DSC_SystemLocale.Tests.ps1 ├── DSC_SystemProtection.Tests.ps1 ├── DSC_SystemRestorePoint.Tests.ps1 ├── DSC_TimeZone.Tests.ps1 ├── DSC_UserAccountControl.Tests.ps1 ├── DSC_VirtualMemory.Tests.ps1 ├── DSC_WindowsCapability.Tests.ps1 └── DSC_WindowsEventLog.Tests.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/General.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/ISSUE_TEMPLATE/General.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Problem_with_resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/ISSUE_TEMPLATE/Problem_with_resource.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Resource_proposal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/ISSUE_TEMPLATE/Resource_proposal.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/analyzersettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.vscode/analyzersettings.psd1 -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/README.md -------------------------------------------------------------------------------- /RequiredModules.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/RequiredModules.psd1 -------------------------------------------------------------------------------- /Resolve-Dependency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/Resolve-Dependency.ps1 -------------------------------------------------------------------------------- /Resolve-Dependency.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/Resolve-Dependency.psd1 -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/SECURITY.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/appveyor.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/codecov.yml -------------------------------------------------------------------------------- /source/Classes/001.CMReason.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Classes/001.CMReason.ps1 -------------------------------------------------------------------------------- /source/Classes/020.PSResourceRepository.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Classes/020.PSResourceRepository.ps1 -------------------------------------------------------------------------------- /source/ComputerManagementDsc.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/ComputerManagementDsc.psd1 -------------------------------------------------------------------------------- /source/ComputerManagementDsc.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/ComputerManagementDsc.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_Computer/DSC_Computer.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_Computer/DSC_Computer.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_Computer/DSC_Computer.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_Computer/DSC_Computer.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_Computer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_Computer/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_Computer/en-US/DSC_Computer.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_Computer/en-US/DSC_Computer.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_IEEnhancedSecurityConfiguration/DSC_IEEnhancedSecurityConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_IEEnhancedSecurityConfiguration/DSC_IEEnhancedSecurityConfiguration.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_IEEnhancedSecurityConfiguration/DSC_IEEnhancedSecurityConfiguration.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_IEEnhancedSecurityConfiguration/DSC_IEEnhancedSecurityConfiguration.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_IEEnhancedSecurityConfiguration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_IEEnhancedSecurityConfiguration/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_IEEnhancedSecurityConfiguration/en-US/DSC_IEEnhancedSecurityConfiguration.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_IEEnhancedSecurityConfiguration/en-US/DSC_IEEnhancedSecurityConfiguration.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_OfflineDomainJoin/DSC_OfflineDomainJoin.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_OfflineDomainJoin/DSC_OfflineDomainJoin.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_OfflineDomainJoin/DSC_OfflineDomainJoin.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_OfflineDomainJoin/DSC_OfflineDomainJoin.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_OfflineDomainJoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_OfflineDomainJoin/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_OfflineDomainJoin/en-US/DSC_OfflineDomainJoin.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_OfflineDomainJoin/en-US/DSC_OfflineDomainJoin.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PendingReboot/DSC_PendingReboot.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PendingReboot/DSC_PendingReboot.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PendingReboot/DSC_PendingReboot.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PendingReboot/DSC_PendingReboot.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_PendingReboot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PendingReboot/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_PendingReboot/en-US/DSC_PendingReboot.data.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PendingReboot/en-US/DSC_PendingReboot.data.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PendingReboot/en-US/DSC_PendingReboot.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PendingReboot/en-US/DSC_PendingReboot.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerPlan/DSC_PowerPlan.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerPlan/DSC_PowerPlan.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerPlan/DSC_PowerPlan.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerPlan/DSC_PowerPlan.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerPlan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerPlan/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerPlan/en-US/DSC_PowerPlan.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerPlan/en-US/DSC_PowerPlan.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerPlan/en-US/DSC_PowerPlan.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerPlan/en-US/DSC_PowerPlan.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerShellExecutionPolicy/DSC_PowerShellExecutionPolicy.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerShellExecutionPolicy/DSC_PowerShellExecutionPolicy.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerShellExecutionPolicy/DSC_PowerShellExecutionPolicy.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerShellExecutionPolicy/DSC_PowerShellExecutionPolicy.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerShellExecutionPolicy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerShellExecutionPolicy/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_PowerShellExecutionPolicy/en-US/DSC_PowerShellExecutionPolicy.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_PowerShellExecutionPolicy/en-US/DSC_PowerShellExecutionPolicy.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_RemoteDesktopAdmin/DSC_RemoteDesktopAdmin.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_RemoteDesktopAdmin/DSC_RemoteDesktopAdmin.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_RemoteDesktopAdmin/DSC_RemoteDesktopAdmin.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_RemoteDesktopAdmin/DSC_RemoteDesktopAdmin.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_RemoteDesktopAdmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_RemoteDesktopAdmin/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_RemoteDesktopAdmin/en-US/DSC_RemoteDesktopAdmin.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_RemoteDesktopAdmin/en-US/DSC_RemoteDesktopAdmin.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ScheduledTask/DSC_ScheduledTask.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_ScheduledTask/DSC_ScheduledTask.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_ScheduledTask/DSC_ScheduledTask.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_ScheduledTask/DSC_ScheduledTask.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_ScheduledTask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_ScheduledTask/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_ScheduledTask/en-US/DSC_ScheduledTask.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_ScheduledTask/en-US/DSC_ScheduledTask.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.data.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.data.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/DSC_SmbServerConfiguration.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/en-US/DSC_SmbServerConfiguration.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/en-US/DSC_SmbServerConfiguration.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbServerConfiguration/en-US/DSC_SmbServerConfiguration.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbServerConfiguration/en-US/DSC_SmbServerConfiguration.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbShare/DSC_SmbShare.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbShare/DSC_SmbShare.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbShare/DSC_SmbShare.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbShare/DSC_SmbShare.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbShare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbShare/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbShare/en-US/DSC_SmbShare.schema.mfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbShare/en-US/DSC_SmbShare.schema.mfl -------------------------------------------------------------------------------- /source/DSCResources/DSC_SmbShare/en-US/DSC_SmbShare.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SmbShare/en-US/DSC_SmbShare.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemLocale/DSC_SystemLocale.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemLocale/DSC_SystemLocale.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemLocale/DSC_SystemLocale.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemLocale/DSC_SystemLocale.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemLocale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemLocale/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemLocale/en-US/DSC_SystemLocale.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemLocale/en-US/DSC_SystemLocale.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemProtection/DSC_SystemProtection.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemProtection/DSC_SystemProtection.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemProtection/DSC_SystemProtection.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemProtection/DSC_SystemProtection.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemProtection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemProtection/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemProtection/en-US/DSC_SystemProtection.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemProtection/en-US/DSC_SystemProtection.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemRestorePoint/DSC_SystemRestorePoint.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemRestorePoint/DSC_SystemRestorePoint.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemRestorePoint/DSC_SystemRestorePoint.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemRestorePoint/DSC_SystemRestorePoint.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemRestorePoint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemRestorePoint/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_SystemRestorePoint/en-US/DSC_SystemRestorePoint.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_SystemRestorePoint/en-US/DSC_SystemRestorePoint.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_TimeZone/DSC_TimeZone.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_TimeZone/DSC_TimeZone.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_TimeZone/DSC_TimeZone.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_TimeZone/DSC_TimeZone.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_TimeZone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_TimeZone/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_TimeZone/en-US/DSC_TimeZone.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_TimeZone/en-US/DSC_TimeZone.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UserAccountControl/DSC_UserAccountControl.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_UserAccountControl/DSC_UserAccountControl.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_UserAccountControl/DSC_UserAccountControl.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_UserAccountControl/DSC_UserAccountControl.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_UserAccountControl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_UserAccountControl/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_UserAccountControl/en-US/DSC_UserAccountControl.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_UserAccountControl/en-US/DSC_UserAccountControl.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_VirtualMemory/DSC_VirtualMemory.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_VirtualMemory/DSC_VirtualMemory.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_VirtualMemory/DSC_VirtualMemory.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_VirtualMemory/DSC_VirtualMemory.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_VirtualMemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_VirtualMemory/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_VirtualMemory/en-US/DSC_VirtualMemory.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_VirtualMemory/en-US/DSC_VirtualMemory.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsCapability/DSC_WindowsCapability.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsCapability/DSC_WindowsCapability.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsCapability/DSC_WindowsCapability.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsCapability/DSC_WindowsCapability.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsCapability/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsCapability/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsCapability/en-US/DSC_WindowsCapability.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsCapability/en-US/DSC_WindowsCapability.strings.psd1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsEventLog/DSC_WindowsEventLog.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsEventLog/DSC_WindowsEventLog.psm1 -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsEventLog/DSC_WindowsEventLog.schema.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsEventLog/DSC_WindowsEventLog.schema.mof -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsEventLog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsEventLog/README.md -------------------------------------------------------------------------------- /source/DSCResources/DSC_WindowsEventLog/en-US/DSC_WindowsEventLog.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/DSCResources/DSC_WindowsEventLog/en-US/DSC_WindowsEventLog.strings.psd1 -------------------------------------------------------------------------------- /source/Examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/README.md -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/1-Computer_RenameComputerAndSetWorkgroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/1-Computer_RenameComputerAndSetWorkgroup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/2-Computer_JoinDomain_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/2-Computer_JoinDomain_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/3-Computer_RenameComputerInDomain_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/3-Computer_RenameComputerInDomain_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/4-Computer_RenameComputerInWorkgroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/4-Computer_RenameComputerInWorkgroup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/5-Computer_UnjoinDomainAndJoinWorkgroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/5-Computer_UnjoinDomainAndJoinWorkgroup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/6-Computer_SetComputerDescriptionInWorkgroup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/6-Computer_SetComputerDescriptionInWorkgroup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/Computer/7-Computer_JoinDomainSpecifyingDC_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/Computer/7-Computer_JoinDomainSpecifyingDC_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/IEEnhancedSecurityConfiguration/1-IEEnhancedSecurityConfiguration_DisableForAdministrators_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/IEEnhancedSecurityConfiguration/1-IEEnhancedSecurityConfiguration_DisableForAdministrators_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/IEEnhancedSecurityConfiguration/2-IEEnhancedSecurityConfiguration_DisableForUsers_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/IEEnhancedSecurityConfiguration/2-IEEnhancedSecurityConfiguration_DisableForUsers_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/OfflineDomainJoin/1-OfflineDomainJoin_JoinDomainUsingODJBlob_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/OfflineDomainJoin/1-OfflineDomainJoin_JoinDomainUsingODJBlob_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PSResourceRepository/1-Register_PSGallery_Present.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PSResourceRepository/1-Register_PSGallery_Present.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PSResourceRepository/2-Register_PSRepository_Present.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PSResourceRepository/2-Register_PSRepository_Present.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PSResourceRepository/3-Repository_Absent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PSResourceRepository/3-Repository_Absent.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PendingReboot/1-PendingReboot_RebootAfterDomainJoin_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PendingReboot/1-PendingReboot_RebootAfterDomainJoin_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PendingReboot/2-PendingReboot_ConfigMgrReboot_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PendingReboot/2-PendingReboot_ConfigMgrReboot_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PowerPlan/1-PowerPlan_SetPowerPlan_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PowerPlan/1-PowerPlan_SetPowerPlan_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PowerShellExecutionPolicy/1-PowerShellExecutionPolicy_SetPolicy_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PowerShellExecutionPolicy/1-PowerShellExecutionPolicy_SetPolicy_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/PowerShellExecutionPolicy/2-PowerShellExecutionPolicy_SetPolicyForMultipleScopes_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/PowerShellExecutionPolicy/2-PowerShellExecutionPolicy_SetPolicyForMultipleScopes_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/RemoteDesktopAdmin/1-RemoteDesktopAdmin_SetSecureRemoteDesktopAdmin_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/RemoteDesktopAdmin/1-RemoteDesktopAdmin_SetSecureRemoteDesktopAdmin_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/1-ScheduledTask_CreateScheduledTaskOnce_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/1-ScheduledTask_CreateScheduledTaskOnce_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/10-ScheduledTask_RunPowerShellTaskOnceAsUserInteractiveOnly_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/10-ScheduledTask_RunPowerShellTaskOnceAsUserInteractiveOnly_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/11-ScheduledTask_DisableABuiltInTask_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/11-ScheduledTask_DisableABuiltInTask_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/12-ScheduledTask_DeleteABuiltInTask_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/12-ScheduledTask_DeleteABuiltInTask_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/13-ScheduledTask_CreateScheduledTasksOnEvent_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/13-ScheduledTask_CreateScheduledTasksOnEvent_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/14-ScheduledTask_RunPowerShellTaskOnceAsGroupManagedServiceAccount_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/14-ScheduledTask_RunPowerShellTaskOnceAsGroupManagedServiceAccount_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/15-ScheduledTask_CreateScheduledTaskOnceSynchronizeAcrossTimeZoneEnabled_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/15-ScheduledTask_CreateScheduledTaskOnceSynchronizeAcrossTimeZoneEnabled_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/16-ScheduledTask_CreateScheduledTasksAsBuiltInServiceAccount_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/16-ScheduledTask_CreateScheduledTasksAsBuiltInServiceAccount_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/17-ScheduledTask_CreateScheduledTasksOnIdle_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/17-ScheduledTask_CreateScheduledTasksOnIdle_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/18-ScheduledTask_CreateScheduledTasksAtCreation_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/18-ScheduledTask_CreateScheduledTasksAtCreation_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/19-ScheduledTask_CreateScheduledTasksOnSessionState_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/19-ScheduledTask_CreateScheduledTasksOnSessionState_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/2-ScheduledTask_CreateScheduledTaskDaily_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/2-ScheduledTask_CreateScheduledTaskDaily_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/3-ScheduledTask_CreateScheduledTasksDailyIndefinitely_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/3-ScheduledTask_CreateScheduledTasksDailyIndefinitely_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/4-ScheduledTask_CreateScheduledTasksWeekly_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/4-ScheduledTask_CreateScheduledTasksWeekly_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/5-ScheduledTask_CreateScheduledTasksAtLogon_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/5-ScheduledTask_CreateScheduledTasksAtLogon_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/6-ScheduledTask_CreateScheduledTasksAtStartup_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/6-ScheduledTask_CreateScheduledTasksAtStartup_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/7-ScheduledTask_RunPowerShellTaskEvery15Minutes_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/7-ScheduledTask_RunPowerShellTaskEvery15Minutes_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/8-ScheduledTask_RunPowerShellTaskEvery15MinutesIndefinitely_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/8-ScheduledTask_RunPowerShellTaskEvery15MinutesIndefinitely_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/ScheduledTask/9-ScheduledTask_RunPowerShellTaskOnceAsUserWithHighestPriveleges_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/ScheduledTask/9-ScheduledTask_RunPowerShellTaskOnceAsUserWithHighestPriveleges_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbServerConfiguration/1-SmbServerConfiguration_AllProperties_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbServerConfiguration/1-SmbServerConfiguration_AllProperties_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbServerConfiguration/1-SmbServerConfiguration_DisableSmb1_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbServerConfiguration/1-SmbServerConfiguration_DisableSmb1_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbShare/1-SmbShare_CreateShare_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbShare/1-SmbShare_CreateShare_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbShare/2-SmbShare_CreateShareAllProperties_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbShare/2-SmbShare_CreateShareAllProperties_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbShare/3-SmbShare_RemoveShare_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbShare/3-SmbShare_RemoveShare_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SmbShare/4-SmbShare_RecreateShare_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SmbShare/4-SmbShare_RecreateShare_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemLocale/1-SystemLocale_SetSystemLocale_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemLocale/1-SystemLocale_SetSystemLocale_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemProtection/1-SystemProtection_EnableDriveC_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemProtection/1-SystemProtection_EnableDriveC_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemProtection/2-SystemProtection_EnableDriveC_5Percent_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemProtection/2-SystemProtection_EnableDriveC_5Percent_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemProtection/3-SystemProtection_DisableDriveF_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemProtection/3-SystemProtection_DisableDriveF_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemProtection/4-SystemProtection_ReduceDriveCDiskUsage_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemProtection/4-SystemProtection_ReduceDriveCDiskUsage_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemProtection/5-SystemProtection_MultiDrive_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemProtection/5-SystemProtection_MultiDrive_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemRestorePoint/1-SystemRestorePoint_CreateModifySettings_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemRestorePoint/1-SystemRestorePoint_CreateModifySettings_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/SystemRestorePoint/2-SystemRestorePoint_DeleteApplicationInstalls_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/SystemRestorePoint/2-SystemRestorePoint_DeleteApplicationInstalls_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/TimeZone/1-TimeZone_SetTimeZone_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/TimeZone/1-TimeZone_SetTimeZone_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/UserAccountControl/1-UserAccountControl_ChangeNotificationLevel_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/UserAccountControl/1-UserAccountControl_ChangeNotificationLevel_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/UserAccountControl/2-UserAccountControl_GranularSettings_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/UserAccountControl/2-UserAccountControl_GranularSettings_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/VirtualMemory/1-VirtualMemory_SetVirtualMemory_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/VirtualMemory/1-VirtualMemory_SetVirtualMemory_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsCapability/1-WindowsCapability_AddWindowsCapability_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsCapability/1-WindowsCapability_AddWindowsCapability_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsCapability/2-WindowsCapability_RemoveWindowsCapability_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsCapability/2-WindowsCapability_RemoveWindowsCapability_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsCapability/3-WindowsCapability_AddWindowsCapabilitywithLogLevelandLogPath_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsCapability/3-WindowsCapability_AddWindowsCapabilitywithLogLevelandLogPath_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsCapability/4-WindowsCapability_AddWindowsCapabilitywithLogLevelLogPathandSource_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsCapability/4-WindowsCapability_AddWindowsCapabilitywithLogLevelLogPathandSource_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/1-WindowsEventLog_SetLogSize_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/1-WindowsEventLog_SetLogSize_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/10-WindowsEventLog_RegisterEventSourceWithAllFiles_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/10-WindowsEventLog_RegisterEventSourceWithAllFiles_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/2-WindowsEventLog_SetLogMode_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/2-WindowsEventLog_SetLogMode_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/3-WindowsEventlog_EnableWindowsEventLog_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/3-WindowsEventlog_EnableWindowsEventLog_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/4-WindowsEventLog_DisableWindowsEventLog_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/4-WindowsEventLog_DisableWindowsEventLog_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/5-WindowsEventLog_SetSecurityDescriptor_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/5-WindowsEventLog_SetSecurityDescriptor_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/6-WindowsEventLog_RestrictGuestAccess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/6-WindowsEventLog_RestrictGuestAccess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/7-WindowsEventLog_AllowGuestAccess_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/7-WindowsEventLog_AllowGuestAccess_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/8-WindowsEventLog_RegisterEventSource_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/8-WindowsEventLog_RegisterEventSource_Config.ps1 -------------------------------------------------------------------------------- /source/Examples/Resources/WindowsEventlog/9-WindowsEventLog_RegisterEventSourceWithMessageFile_Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Examples/Resources/WindowsEventlog/9-WindowsEventLog_RegisterEventSourceWithMessageFile_Config.ps1 -------------------------------------------------------------------------------- /source/Modules/ComputerManagementDsc.Common/ComputerManagementDsc.Common.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Modules/ComputerManagementDsc.Common/ComputerManagementDsc.Common.psm1 -------------------------------------------------------------------------------- /source/Modules/ComputerManagementDsc.Common/SetTimeZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Modules/ComputerManagementDsc.Common/SetTimeZone.cs -------------------------------------------------------------------------------- /source/Modules/ComputerManagementDsc.Common/en-US/ComputerManagementDsc.Common.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/Modules/ComputerManagementDsc.Common/en-US/ComputerManagementDsc.Common.strings.psd1 -------------------------------------------------------------------------------- /source/WikiSource/Home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/WikiSource/Home.md -------------------------------------------------------------------------------- /source/en-US/ComputerManagementDsc.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/en-US/ComputerManagementDsc.strings.psd1 -------------------------------------------------------------------------------- /source/en-US/PSResourceRepository.strings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/en-US/PSResourceRepository.strings.psd1 -------------------------------------------------------------------------------- /source/en-US/about_ComputerManagementDsc.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/en-US/about_ComputerManagementDsc.help.txt -------------------------------------------------------------------------------- /source/prefix.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/source/prefix.ps1 -------------------------------------------------------------------------------- /tests/Integration/Classes/PSResourceRepository.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/Classes/PSResourceRepository.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/Classes/PSResourceRepository.integration.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/Classes/PSResourceRepository.integration.tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/ComputerManagementDsc.Common.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/ComputerManagementDsc.Common.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_IEEnhancedSecurityConfiguration.Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_IEEnhancedSecurityConfiguration.Config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_IEEnhancedSecurityConfiguration.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_IEEnhancedSecurityConfiguration.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_PendingReboot.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_PendingReboot.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_PendingReboot.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_PendingReboot.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_PowerShellExecutionPolicy.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_PowerShellExecutionPolicy.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_PowerShellExecutionPolicy.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_PowerShellExecutionPolicy.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_RemoteDesktopAdmin.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_RemoteDesktopAdmin.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_RemoteDesktopAdmin.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_RemoteDesktopAdmin.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ScheduledTask.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_ScheduledTask.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_ScheduledTask.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_ScheduledTask.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SmbServerConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SmbServerConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SmbServerConfiguration.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SmbServerConfiguration.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SmbShare.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SmbShare.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SmbShare.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SmbShare.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SystemLocale.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SystemLocale.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_SystemLocale.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_SystemLocale.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_TimeZone.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_TimeZone.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_TimeZone.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_TimeZone.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_UserAccountControl.Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_UserAccountControl.Config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_UserAccountControl.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_UserAccountControl.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_VirtualMemory.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_VirtualMemory.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_VirtualMemory.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_VirtualMemory.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_WindowsCapability.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_WindowsCapability.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_WindowsCapability.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_WindowsCapability.config.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_WindowsEventLog.Integration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_WindowsEventLog.Integration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Integration/DSC_WindowsEventLog.config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Integration/DSC_WindowsEventLog.config.ps1 -------------------------------------------------------------------------------- /tests/TestHelpers/CommonTestHelper.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/TestHelpers/CommonTestHelper.psm1 -------------------------------------------------------------------------------- /tests/Unit/Classes/CMReason.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/Classes/CMReason.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/Classes/PSResourceRepository.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/Classes/PSResourceRepository.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/ComputerManagementDsc.Common.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/ComputerManagementDsc.Common.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_Computer.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_Computer.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_IEEnhancedSecurityConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_IEEnhancedSecurityConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_OfflineDomainJoin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_OfflineDomainJoin.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_PendingReboot.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_PendingReboot.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_PowerPlan.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_PowerPlan.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_PowerShellExecutionpolicy.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_PowerShellExecutionpolicy.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_RemoteDesktopAdmin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_RemoteDesktopAdmin.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_ScheduledTask.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_ScheduledTask.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_SmbServerConfiguration.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_SmbServerConfiguration.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_SmbShare.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_SmbShare.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_SystemLocale.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_SystemLocale.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_SystemProtection.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_SystemProtection.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_SystemRestorePoint.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_SystemRestorePoint.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_TimeZone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_TimeZone.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_UserAccountControl.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_UserAccountControl.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_VirtualMemory.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_VirtualMemory.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_WindowsCapability.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_WindowsCapability.Tests.ps1 -------------------------------------------------------------------------------- /tests/Unit/DSC_WindowsEventLog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsccommunity/ComputerManagementDsc/HEAD/tests/Unit/DSC_WindowsEventLog.Tests.ps1 --------------------------------------------------------------------------------