From 9d93d3357ab070e016fb23c9a1541391edbeed88 Mon Sep 17 00:00:00 2001 From: LadtoHelp <72976165+LadtoHelp@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:57:43 +1100 Subject: [PATCH] Update armTemplateWVD.json Added the exit codes 0 and 267014 as valid exit codes to the FSlogix install script block. "validExitCodes": [0,267014] During the AVD build, the install of FSLOGIX can exit with the code 267014. This is a valid and successful exit code however because its not a common or known sucessful exit code, the build process can fail. --- solutions/14_Building_Images_WVD/armTemplateWVD.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/solutions/14_Building_Images_WVD/armTemplateWVD.json b/solutions/14_Building_Images_WVD/armTemplateWVD.json index 5dc5376..bb97a39 100644 --- a/solutions/14_Building_Images_WVD/armTemplateWVD.json +++ b/solutions/14_Building_Images_WVD/armTemplateWVD.json @@ -60,7 +60,9 @@ "name": "installFsLogix", "runElevated": true, "runAsSystem": true, - "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/solutions/14_Building_Images_WVD/0_installConfFsLogix.ps1" + "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/solutions/14_Building_Images_WVD/0_installConfFsLogix.ps1", + "validExitCodes": [0,267014] + }, { "type": "PowerShell", @@ -119,4 +121,4 @@ ] -} \ No newline at end of file +}