File tree Expand file tree Collapse file tree 3 files changed +44
-3
lines changed Expand file tree Collapse file tree 3 files changed +44
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5
5
6
6
## [ Unreleased]
7
7
8
+ ### Changed
9
+
10
+ - ActiveDirectoryCSDsc
11
+ - Automatically publish documentation to GitHub Wiki - Fixes [ Issue #122 ] ( https://github.com/dsccommunity/ActiveDirectoryCSDsc/issues/122 ) .
12
+
8
13
## [ 5.0.0] - 2020-06-20
9
14
10
15
### Changed
Original file line number Diff line number Diff line change @@ -45,11 +45,12 @@ BuildWorkflow:
45
45
46
46
test :
47
47
- Pester_Tests_Stop_On_Fail
48
- - Pester_if_Code_Coverage_Under_Threshold
48
+ - Pester_If_Code_Coverage_Under_Threshold
49
49
50
50
publish :
51
- - Publish_release_to_GitHub
52
- - publish_module_to_gallery
51
+ - Publish_Release_to_GitHub
52
+ - Publish_Module_to_gallery
53
+ - Publish_GitHub_Wiki_Content
53
54
54
55
# ###################################################
55
56
# PESTER Configuration #
Original file line number Diff line number Diff line change
1
+ # Welcome to the ActiveDirectoryCSDsc wiki
2
+
3
+ <sup >* ActiveDirectoryCSDsc v#.#.#* </sup >
4
+
5
+ Here you will find all the information you need to make use of the ActiveDirectoryCSDsc
6
+ DSC resources, including details of the resources that are available, current
7
+ capabilities and known issues, and information to help plan a DSC based
8
+ implementation of ActiveDirectoryCSDsc.
9
+
10
+ Please leave comments, feature requests, and bug reports in then
11
+ [ issues section] ( https://github.com/dsccommunity/ActiveDirectoryCSDsc/issues ) for this module.
12
+
13
+ ## Getting started
14
+
15
+ To get started download ActiveDirectoryCSDsc from the [ PowerShell Gallery] ( http://www.powershellgallery.com/packages/ActiveDirectoryCSDsc/ )
16
+ and then unzip it to one of your PowerShell modules folders
17
+ (such as $env: ProgramFiles \WindowsPowerShell\Modules).
18
+
19
+ To install from the PowerShell gallery using PowerShellGet (in PowerShell 5.0)
20
+ run the following command:
21
+
22
+ ``` powershell
23
+ Find-Module -Name ActiveDirectoryCSDsc -Repository PSGallery | Install-Module
24
+ ```
25
+
26
+ To confirm installation, run the below command and ensure you see the ActiveDirectoryCSDsc
27
+ DSC resources available:
28
+
29
+ ``` powershell
30
+ Get-DscResource -Module ActiveDirectoryCSDsc
31
+ ```
32
+
33
+ ## Change Log
34
+
35
+ A full list of changes in each version can be found in the [ change log] ( https://github.com/dsccommunity/ActiveDirectoryCSDsc/blob/master/CHANGELOG.md ) .
You can’t perform that action at this time.
0 commit comments