File tree Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Expand file tree Collapse file tree 1 file changed +61
-0
lines changed Original file line number Diff line number Diff line change
1
+ # PSConfEU 2024 Demos
2
+
3
+ ## DSC Command-line
4
+
5
+ ### List DSC resources
6
+
7
+ - List DSC resources
8
+
9
+ ``` powershell
10
+ dsc resource list
11
+ ```
12
+
13
+ - List PowerShell Adapted DSC resources
14
+
15
+ ``` powershell
16
+ dsc resource list --adapter Microsoft.DSC/PowerShell
17
+ ```
18
+
19
+ - Find DSC resources
20
+
21
+ ``` powershell
22
+ dsc resource list '*DSC*'
23
+ ```
24
+
25
+ ### DSC Resource Invocation
26
+
27
+ - Invoke OSInfo DSC resource
28
+
29
+ ``` powershell
30
+ dsc resource get -r Microsoft/osinfo
31
+ ```
32
+
33
+ ### Output formats
34
+
35
+ ### Tracing
36
+
37
+ ### WhatIf
38
+
39
+ ## DSC Resources
40
+
41
+ ### Resource Manifest
42
+
43
+ ### Resource Types
44
+
45
+ ## DSC Configuration
46
+
47
+ ### ARM Template-like
48
+
49
+ - JSON vs YAML
50
+
51
+ ### Expressions
52
+
53
+ - Reference
54
+
55
+ ### Parameters
56
+
57
+ - Secure paramters
58
+
59
+ ### Metadata
60
+
61
+ - securityContext
You can’t perform that action at this time.
0 commit comments