You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,16 @@ The better a Pull Request description is, the better a review can understand and
60
60
61
61
[Writing A Great Pull Request Description](https://www.pullrequest.com/blog/writing-a-great-pull-request-description/)
62
62
63
-
Versioning is a crucial part for everything as code. Without version tags you cannot clearly create a stable environment and be sure that your latest changes won't crash your production environment (sure it still can happen, but we are trying our best to implement everything that we can to reduce the risk)
63
+
Versioning is a crucial part of everything as code. Without version tags, you cannot clearly create a stable environment
64
+
and be sure that your latest changes will not crash your production environment (sure it still can happen, but we are trying our best to implement everything that we can to reduce the risk).
64
65
65
66
[Semantic Versioning](https://semver.org)
66
67
67
68
---
68
69
69
70
## Share the Love
70
-
Like this project? Please give it a ★ on [our GitHub](https://github.com/xoap-io/xoap-uberagent-kibana-dashboards)! (it helps us a lot).
71
+
Like this project? Please give it a ★ on [our GitHub](https://github.com/xoap-io/xoap-powershell-dsc-configurations)!
72
+
It helps us a lot.
71
73
72
74
---
73
75
@@ -97,7 +99,8 @@ PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
97
99
98
100
### Local usage
99
101
100
-
On most supported Windows versions you don´t have to do anything. On windows versions prior to Windows Server 2016 or Windows 10 you should install Windows Management Framework 5.1.
102
+
On most supported Windows versions, you do not have to do anything.
103
+
On windows versions prior to Windows Server 2016 or Windows 10, you should install Windows Management Framework 5.1.
101
104
You can download it [here](https://www.microsoft.com/en-us/download/details.aspx?id=54616).
In order to compile this example you need to take care that all the referenced DSC modules are available locally.
132
+
In order to compile this example, you need to take care that all the referenced DSC modules are available locally.
130
133
131
134
You can check availability with:
132
135
@@ -140,9 +143,11 @@ If DSC modules are missing, you can install them simply by e.g. running:
140
143
Install-Module SecurityPolicyDSC
141
144
```
142
145
143
-
It could be that you need to install PowerShellGet and the NuGet provider and that you have to trust the PSGallery to be able to install the DSC modules.
146
+
It could be that you need to install PowerShellGet and the NuGet provider,
147
+
and that you have to trust the PSGallery to be able to install the DSC modules.
144
148
145
-
> Please be aware that this is the most basic example. We advise to always define the module versions in production environments before compiling them and to implement a versioning system to track changes to those DSC configurations. Not defining versions could lead to compiling errors because of functional changes between vmodule versions.
149
+
> Please be aware that this is the most basic example. We advise to always define the module versions in production environments before compiling them and to implement a versioning system to track changes to those DSC configurations.
150
+
> Not defining versions could lead to compiling errors because of functional changes between module versions.
146
151
147
152
Defining the versions of the modules could look like this:
So now that all DSC modules are available and the module versions are defined you need to run the following command in your Powershell to compile it locally:
176
+
So now that all DSC modules are available and the module versions are defined,
177
+
you need to run the following command in your Powershell to compile it locally:
0 commit comments