From 167fa855b8140767b3a0a0f6782a9f1910e24cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Notin?= Date: Mon, 20 Jan 2025 09:52:00 +0100 Subject: [PATCH] Use normal double-quotes instead of curly ones Curly ones aren't usually supported in code / command lines --- docs/identity/domain-services/secure-your-domain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/identity/domain-services/secure-your-domain.md b/docs/identity/domain-services/secure-your-domain.md index e035d0d7461..d223a99f399 100644 --- a/docs/identity/domain-services/secure-your-domain.md +++ b/docs/identity/domain-services/secure-your-domain.md @@ -101,7 +101,7 @@ $securitySettings = @{"DomainSecuritySettings"=@{"NtlmV1"="Disabled";"SyncNtlmPa Finally, apply the defined security settings to the managed domain using the [Set-AzResource][Set-AzResource] cmdlet. Specify the Domain Services resource from the first step, and the security settings from the previous step. ```powershell -Set-AzResource -Id $DomainServicesResource.ResourceId -Properties $securitySettings -ApiVersion “2021-03-01” -Verbose -Force +Set-AzResource -Id $DomainServicesResource.ResourceId -Properties $securitySettings -ApiVersion "2021-03-01" -Verbose -Force ``` It takes a few moments for the security settings to be applied to the managed domain.