-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Automate Wiki Publish - Issue #41 * Fix Wiki Home
- Loading branch information
Showing
3 changed files
with
44 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Welcome to the FSRMDsc wiki | ||
|
||
<sup>*FSRMDsc v#.#.#*</sup> | ||
|
||
Here you will find all the information you need to make use of the FSRMDsc | ||
DSC resources, including details of the resources that are available, current | ||
capabilities and known issues, and information to help plan a DSC based | ||
implementation of FSRMDsc. | ||
|
||
Please leave comments, feature requests, and bug reports in then | ||
[issues section](https://github.com/dsccommunity/FSRMDsc/issues) for this module. | ||
|
||
## Getting started | ||
|
||
To get started download FSRMDsc from the [PowerShell Gallery](http://www.powershellgallery.com/packages/FSRMDsc/) | ||
and then unzip it to one of your PowerShell modules folders | ||
(such as $env:ProgramFiles\WindowsPowerShell\Modules). | ||
|
||
To install from the PowerShell gallery using PowerShellGet (in PowerShell 5.0) | ||
run the following command: | ||
|
||
```powershell | ||
Find-Module -Name FSRMDsc -Repository PSGallery | Install-Module | ||
``` | ||
|
||
To confirm installation, run the below command and ensure you see the FSRMDsc | ||
DSC resources available: | ||
|
||
```powershell | ||
Get-DscResource -Module FSRMDsc | ||
``` | ||
|
||
## Change Log | ||
|
||
A full list of changes in each version can be found in the [change log](https://github.com/dsccommunity/FSRMDsc/blob/master/CHANGELOG.md). |