|
8 | 8 |
|
9 | 9 | @{
|
10 | 10 | # Version number of this module.
|
11 |
| - ModuleVersion = '1.1.0.0' |
| 11 | + ModuleVersion = '1.3.0.0' |
12 | 12 |
|
13 | 13 | # ID used to uniquely identify this module
|
14 | 14 | GUID = 'a544c26f-3f96-4c1e-8351-1604867aafc5'
|
15 |
| - |
| 15 | + |
16 | 16 | # Author of this module
|
17 | 17 | Author = 'Microsoft Corporation'
|
18 |
| - |
| 18 | + |
19 | 19 | # Company or vendor of this module
|
20 | 20 | CompanyName = 'Microsoft Corporation'
|
21 |
| - |
| 21 | + |
22 | 22 | # Copyright statement for this module
|
23 | 23 | Copyright = '(c) 2017 Microsoft. All rights reserved.'
|
24 |
| - |
| 24 | + |
25 | 25 | # Description of the functionality provided by this module
|
26 | 26 | Description = 'Module with DSC resource to manage Registry and NTFS access entries and manage Active Directory SACL'
|
27 |
| - |
| 27 | + |
28 | 28 | # Minimum version of the Windows PowerShell engine required by this module
|
29 | 29 | PowerShellVersion = '4.0'
|
30 |
| - |
| 30 | + |
31 | 31 | # Name of the Windows PowerShell host required by this module
|
32 | 32 | # PowerShellHostName = ''
|
33 |
| - |
| 33 | + |
34 | 34 | # Minimum version of the Windows PowerShell host required by this module
|
35 | 35 | # PowerShellHostVersion = ''
|
36 |
| - |
| 36 | + |
37 | 37 | # Minimum version of the .NET Framework required by this module
|
38 | 38 | # DotNetFrameworkVersion = ''
|
39 |
| - |
| 39 | + |
40 | 40 | # Minimum version of the common language runtime (CLR) required by this module
|
41 | 41 | # CLRVersion = ''
|
42 |
| - |
| 42 | + |
43 | 43 | # Processor architecture (None, X86, Amd64) required by this module
|
44 | 44 | # ProcessorArchitecture = ''
|
45 |
| - |
| 45 | + |
46 | 46 | # Modules that must be imported into the global environment prior to importing this module
|
47 | 47 | # RequiredModules = @()
|
48 |
| - |
| 48 | + |
49 | 49 | # Assemblies that must be loaded prior to importing this module
|
50 | 50 | # RequiredAssemblies = @()
|
51 |
| - |
| 51 | + |
52 | 52 | # Script files (.ps1) that are run in the caller's environment prior to importing this module.
|
53 | 53 | # ScriptsToProcess = ''
|
54 |
| - |
| 54 | + |
55 | 55 | # Type files (.ps1xml) to be loaded when importing this module
|
56 | 56 | # TypesToProcess = 'PowerShellAccessControl.types.ps1xml'
|
57 |
| - |
| 57 | + |
58 | 58 | # Format files (.ps1xml) to be loaded when importing this module
|
59 | 59 | # FormatsToProcess = ''
|
60 |
| - |
| 60 | + |
61 | 61 | # Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
|
62 | 62 | # NestedModules = @()
|
63 |
| - |
| 63 | + |
64 | 64 | # Functions to export from this module
|
65 | 65 | FunctionsToExport = @()
|
66 |
| - |
| 66 | + |
67 | 67 | # Cmdlets to export from this module
|
68 | 68 | CmdletsToExport = @()
|
69 |
| - |
| 69 | + |
70 | 70 | # Variables to export from this module
|
71 | 71 | VariablesToExport = @()
|
72 |
| - |
| 72 | + |
73 | 73 | # Aliases to export from this module
|
74 | 74 | AliasesToExport = @()
|
75 |
| - |
| 75 | + |
76 | 76 | # List of all modules packaged with this module.
|
77 | 77 | # ModuleList = @()
|
78 |
| - |
| 78 | + |
79 | 79 | # List of all files packaged with this module
|
80 | 80 | # FileList = @()
|
81 |
| - |
| 81 | + |
82 | 82 | # Private data to pass to the module specified in RootModule/ModuleToProcess
|
83 | 83 | # PrivateData = ''
|
84 |
| - |
| 84 | + |
85 | 85 | # HelpInfo URI of this module
|
86 | 86 | # HelpInfoURI = ''
|
87 |
| - |
| 87 | + |
88 | 88 | # Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
|
89 | 89 | # DefaultCommandPrefix = ''
|
90 | 90 |
|
91 | 91 | # 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.
|
92 | 92 | PrivateData = @{
|
93 |
| - |
| 93 | + |
94 | 94 | PSData = @{
|
95 |
| - |
| 95 | + |
96 | 96 | # 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', |
98 | 98 | 'AccessControlDsc', 'DACL', 'SACL', 'Permissions')
|
99 |
| - |
| 99 | + |
100 | 100 | # A URL to the license for this module.
|
101 | 101 | LicenseUri = 'https://github.com/mcollera/AccessControlDsc/blob/master/LICENSE'
|
102 |
| - |
| 102 | + |
103 | 103 | # A URL to the main website for this project.
|
104 | 104 | ProjectUri = 'https://github.com/mcollera/AccessControlDsc'
|
105 |
| - |
| 105 | + |
106 | 106 | # A URL to an icon representing this module.
|
107 | 107 | # IconUri = ''
|
108 |
| - |
| 108 | + |
109 | 109 | # ReleaseNotes of this module
|
110 | 110 | #ReleaseNotes = ''
|
111 | 111 | } # End of PSData hashtable
|
112 |
| - |
| 112 | + |
113 | 113 | } # End of PrivateData hashtable
|
114 |
| - |
| 114 | + |
115 | 115 | }
|
0 commit comments