Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SystemProtection/SystemRestorePoint: New DSC Resources #373

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- SystemProtection
- New resource to configure System Protection settings (formerly xWindowsRestore) - Fixes [Issue #364](https://github.com/dsccommunity/ComputerManagementDsc/issues/364).
- SystemRestorePoint
- New resource to create and delete restore points (formerly xSystemRestorePoint) - Fixed [Issue #364](https://github.com/dsccommunity/ComputerManagementDsc/issues/364).
- WindowsEventLog
- Added support to restrict guest access - Fixes [Issue #338](https://github.com/dsccommunity/ComputerManagementDsc/issues/338).
- Added support to create custom event sources and optionally register
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,11 @@ The **ComputerManagementDsc** module contains the following resources:
settings on the local machine.
- **SmbShare**: This resource is used to manage SMB shares on a machine.
- **SystemLocale**: This resource is used to set the system locale on a
Windows machine.
Windows machine
- **SystemProtection**: This resource is used to configure System Protection settings
on a workstation (servers are not supported).
- **SystemRestorePoint**: This resource is used to create and delete restore points
when System Protection is enabled (servers are not supported).
- **TimeZone**: This resource is used for setting the time zone on a machine.
- **UserAccountControl**: This resource allows you to configure the notification
level or granularly configure the User Account Control for the computer.
Expand Down
21 changes: 20 additions & 1 deletion source/ComputerManagementDsc.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,26 @@
AliasesToExport = @()

# DSC resources to export from this module
DscResourcesToExport = @()
DscResourcesToExport = @(
'Computer'
'OfflineDomainJoin'
'PendingReboot'
'PowerPlan'
'PowerShellExecutionPolicy'
'RemoteDesktopAdmin'
'ScheduledTask'
'SmbServerConfiguration'
'SmbShare'
'SystemLocale'
'SystemProtection'
'SystemRestorePoint'
'TimeZone'
'VirtualMemory'
'WindowsEventLog'
'WindowsCapability'
'IEEnhancedSecurityConfiguration'
'UserAccountControl'
)

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
Expand Down
Loading
Loading