Skip to content

Commit 28b4a1d

Browse files
bcwilhitechasewilson
authored andcommitted
Update ModuleVersion in Module Manifest psd1 (#48)
* Added ConvertTo-SidIdentityReg... funct. to addr app packages transation * Mod. Rule/Expected foreach to correct rule input for ConvertTo-SidId... * modified RemoveAccessRule to RemoveAccessRuleSpecific to addr. issue #38 * added Set-RegistryRightsAclAllAppPackages function * added test for Set-RegistryRightsAclAllAppPackages function. * updated test to hanlde deny scenario * updated formatting and defined output type for New-TempAclItem * updated readme.md * updated Test/Set to use Get/SetAccessControl Methods, vs. Get/Set-Acl * updated readme.md with bug fix information * pre-test run, new feature, w/force wipe acl * updated NTFSAccessEntry.psm1 to clear existing currentacl * refactoring changes. * bug fix #46 and code refactoring with added Write-CustomVerbose function * updated README.md with bug fix information * updated fs rights logic to ensure test runs when permissions are less. * incremented the ModuleVersion in module manifest psd1.
1 parent a45c3d4 commit 28b4a1d

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

AccessControlDsc.psd1

+35-35
Original file line numberDiff line numberDiff line change
@@ -8,108 +8,108 @@
88

99
@{
1010
# Version number of this module.
11-
ModuleVersion = '1.1.0.0'
11+
ModuleVersion = '1.3.0.0'
1212

1313
# ID used to uniquely identify this module
1414
GUID = 'a544c26f-3f96-4c1e-8351-1604867aafc5'
15-
15+
1616
# Author of this module
1717
Author = 'Microsoft Corporation'
18-
18+
1919
# Company or vendor of this module
2020
CompanyName = 'Microsoft Corporation'
21-
21+
2222
# Copyright statement for this module
2323
Copyright = '(c) 2017 Microsoft. All rights reserved.'
24-
24+
2525
# Description of the functionality provided by this module
2626
Description = 'Module with DSC resource to manage Registry and NTFS access entries and manage Active Directory SACL'
27-
27+
2828
# Minimum version of the Windows PowerShell engine required by this module
2929
PowerShellVersion = '4.0'
30-
30+
3131
# Name of the Windows PowerShell host required by this module
3232
# PowerShellHostName = ''
33-
33+
3434
# Minimum version of the Windows PowerShell host required by this module
3535
# PowerShellHostVersion = ''
36-
36+
3737
# Minimum version of the .NET Framework required by this module
3838
# DotNetFrameworkVersion = ''
39-
39+
4040
# Minimum version of the common language runtime (CLR) required by this module
4141
# CLRVersion = ''
42-
42+
4343
# Processor architecture (None, X86, Amd64) required by this module
4444
# ProcessorArchitecture = ''
45-
45+
4646
# Modules that must be imported into the global environment prior to importing this module
4747
# RequiredModules = @()
48-
48+
4949
# Assemblies that must be loaded prior to importing this module
5050
# RequiredAssemblies = @()
51-
51+
5252
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
5353
# ScriptsToProcess = ''
54-
54+
5555
# Type files (.ps1xml) to be loaded when importing this module
5656
# TypesToProcess = 'PowerShellAccessControl.types.ps1xml'
57-
57+
5858
# Format files (.ps1xml) to be loaded when importing this module
5959
# FormatsToProcess = ''
60-
60+
6161
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
6262
# NestedModules = @()
63-
63+
6464
# Functions to export from this module
6565
FunctionsToExport = @()
66-
66+
6767
# Cmdlets to export from this module
6868
CmdletsToExport = @()
69-
69+
7070
# Variables to export from this module
7171
VariablesToExport = @()
72-
72+
7373
# Aliases to export from this module
7474
AliasesToExport = @()
75-
75+
7676
# List of all modules packaged with this module.
7777
# ModuleList = @()
78-
78+
7979
# List of all files packaged with this module
8080
# FileList = @()
81-
81+
8282
# Private data to pass to the module specified in RootModule/ModuleToProcess
8383
# PrivateData = ''
84-
84+
8585
# HelpInfo URI of this module
8686
# HelpInfoURI = ''
87-
87+
8888
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
8989
# DefaultCommandPrefix = ''
9090

9191
# 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.
9292
PrivateData = @{
93-
93+
9494
PSData = @{
95-
95+
9696
# Tags applied to this module. These help with module discovery in online galleries.
97-
Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResourceKit', 'DSCResource',
97+
Tags = @('DesiredStateConfiguration', 'DSC', 'DSCResourceKit', 'DSCResource',
9898
'AccessControlDsc', 'DACL', 'SACL', 'Permissions')
99-
99+
100100
# A URL to the license for this module.
101101
LicenseUri = 'https://github.com/mcollera/AccessControlDsc/blob/master/LICENSE'
102-
102+
103103
# A URL to the main website for this project.
104104
ProjectUri = 'https://github.com/mcollera/AccessControlDsc'
105-
105+
106106
# A URL to an icon representing this module.
107107
# IconUri = ''
108-
108+
109109
# ReleaseNotes of this module
110110
#ReleaseNotes = ''
111111
} # End of PSData hashtable
112-
112+
113113
} # End of PrivateData hashtable
114-
114+
115115
}

0 commit comments

Comments
 (0)