From b8bf57b9783fef4c702dfdad10e35fd32045d379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20Panzerbj=C3=B8rn?= Date: Thu, 19 Oct 2017 09:32:39 +0100 Subject: [PATCH] Update NanoComputeExample.ps1 When running this configuration, this error occurs: At line:27 char:17 + PrefixLength = $node.PrefixLength; + ~~~~~~~~~~~~ The member 'PrefixLength' is not valid. Valid members are 'AddressFamily', 'DependsOn', 'InterfaceAlias', 'IPAddress', 'PsDscRunAsCredential'. + CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : InvalidInstanceProperty #'ing out line 27 enables it to run without error. --- Examples/NanoComputeExample.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/NanoComputeExample.ps1 b/Examples/NanoComputeExample.ps1 index 5dba503b..09b2e5a9 100644 --- a/Examples/NanoComputeExample.ps1 +++ b/Examples/NanoComputeExample.ps1 @@ -24,7 +24,7 @@ Configuration NanoComputeExample { IPAddress = $node.IPAddress; InterfaceAlias = $node.InterfaceAlias; - PrefixLength = $node.PrefixLength; + #PrefixLength = $node.PrefixLength; AddressFamily = $node.AddressFamily; }