Skip to content

Commit 85bdbcf

Browse files
committed
Merge branch 'reference-doc-compare-and-object' of https://github.com/Gijsreyn/operation-methods into reference-doc-compare-and-object
2 parents 4b3a3cb + 27a5b1d commit 85bdbcf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/reference/resources/Microsoft/DSC/Transitional/RunCommandOnSet/examples/run-powershell-command.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ dsc config set --input $document
7070
To verify the result, you can run the `winget.exe` command:
7171

7272
```powershell
73-
winget list --id Microsoft.PowerShell
73+
winget list --id Microsoft.PowerShell.Preview
7474
```
7575

7676
<!-- Link reference definitions -->

docs/reference/resources/Microsoft/Windows/WindowsPowerShell/examples/manage-a-windows-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ differingProperties:
4040
- StartupType
4141
```
4242
43-
The `inDesiredState` field of the result object is set to `false`, indicating that the instance isn't in the desired state. The `differingProperties` field indicates that the `property` property is mismatched between the desired state and actual state.
43+
The `inDesiredState` field of the result object is set to `false`, indicating that the instance isn't in the desired state. The `differingProperties` field indicates that the `StartupType` property is mismatched between the desired state and actual state.
4444

4545
## Ensure a service is running with automatic startup
4646

docs/reference/schemas/config/functions/reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ resources:
5151
- name: Echo bitness
5252
type: Microsoft.DSC.Debug/Echo
5353
properties:
54-
output: "[reference(resourceId('Microsoft/OSInfo', 'System')).actualState.bitness]"
54+
output: "[reference(resourceId('Microsoft/OSInfo', 'System')).bitness]"
5555
dependsOn:
5656
- "[resourceId('Microsoft/OSInfo', 'System')]"
5757
```
5858
5959
```bash
60-
dsc config get --file reference.example.1.dsc.config.yaml config get
60+
dsc config get --file reference.example.1.dsc.config.yaml
6161
```
6262

6363
```yaml

0 commit comments

Comments
 (0)