From 790718145f7dbadd3c8c6de14c1ed2a615b7f2ed Mon Sep 17 00:00:00 2001 From: JT <75398863+jeremiahmoree-adot@users.noreply.github.com> Date: Sat, 12 Feb 2022 01:14:48 -0700 Subject: [PATCH] Wiki: add introduction to DSC to wiki (#1740) --- CHANGELOG.md | 2 ++ source/WikiSource/Home.md | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd47b3c44..8270ed9e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SqlServerDsc - Updated pipeline to use the build worker image 'ubuntu-latest'. - Switch to installing GitVersion using 'dotnet tool install' ([issue #1732](https://github.com/dsccommunity/SqlServerDsc/issues/1732)). +- Wiki + - add introduction and links to DSC technology ### Fixed diff --git a/source/WikiSource/Home.md b/source/WikiSource/Home.md index 6ee67cb61..00da9056e 100644 --- a/source/WikiSource/Home.md +++ b/source/WikiSource/Home.md @@ -47,11 +47,23 @@ Get-DscResource -Module SqlServerDsc ## Prerequisites +* Familiarity with Powershell DSC Framework +* Powershell 5.0 or higher +* SqlServer powershell module (optional) + +### Familiarity with Powershell DSC Framework + +SqlServerDSC implements configuration management for MS SQL using the [Powershell DSC](https://docs.microsoft.com/en-us/search/?terms=Desired%20State%20Configuration&scope=PowerShell) technology developed by Microsoft. A [community](https://dsccommunity.org/) maintains resources related to these [tools](https://dsccommunity.org/configmgt/). + +### Powershell + The minimum Windows Management Framework (PowerShell) version required is 5.0 or higher, which ships with Windows 10 or Windows Server 2016, but can also be installed on Windows 7 SP1, Windows 8.1, Windows Server 2012, and Windows Server 2012 R2. +### SqlServer powershell module (optional) + Optionally the PowerShell Module [_SqlServer_](https://www.powershellgallery.com/packages/SqlServer) can be installed which then will be used instead of the PowerShell module _SQLPS_ that is installed with SQL Server.