From 550c5a3a2de07391a4b5a63518823da7c59b644f Mon Sep 17 00:00:00 2001 From: Nathan Ziehnert Date: Sat, 13 Dec 2025 23:16:09 -0700 Subject: [PATCH] Fix JSON key in PowerShell example `exist` is not a valid property on `Microsoft.Windows/Registry` - however the canonical `_exist` is --- dsc/docs-conceptual/dsc-3.0/concepts/resources/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsc/docs-conceptual/dsc-3.0/concepts/resources/overview.md b/dsc/docs-conceptual/dsc-3.0/concepts/resources/overview.md index 64d70a2..6980c2b 100644 --- a/dsc/docs-conceptual/dsc-3.0/concepts/resources/overview.md +++ b/dsc/docs-conceptual/dsc-3.0/concepts/resources/overview.md @@ -175,7 +175,7 @@ For example, you can test whether a specific registry key exists: ```powershell dsc resource test --resource Microsoft.Windows/Registry --input '{ "keyPath": "HKCU\\key\\that\\does\\not\\exist", - "exist": true + "_exist": true }' ```