Skip to content

Commit b711250

Browse files
SteveL-MSFTSteve Lee (POWERSHELL HE/HIM) (from Dev Box)
authored andcommitted
add psconfeu draft demo
1 parent f722880 commit b711250

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

dsc/examples/PSConfEU_2024_Demo.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
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

0 commit comments

Comments
 (0)