From 78c948094ddb5de8f69fab272072b0e8ebf39321 Mon Sep 17 00:00:00 2001 From: Parkreiner Date: Fri, 28 Jun 2024 18:20:46 +0000 Subject: [PATCH] wip: try reverting temporarily --- windows-rdp/main.tf | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/windows-rdp/main.tf b/windows-rdp/main.tf index 273ad20..919b5e4 100644 --- a/windows-rdp/main.tf +++ b/windows-rdp/main.tf @@ -62,17 +62,19 @@ resource "coder_script" "windows-rdp" { # Install the module with the specified version for all users # This requires administrator privileges - try { - # Install-PackageProvider is required for AWS. Need to set command to - # terminate on failure so that try/catch actually triggers - Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -ErrorAction Stop - Install-Module -Name $moduleName -RequiredVersion $moduleVersion -Force - } - catch { - # If the first command failed, assume that we're on GCP and run - # Install-Module only - Install-Module -Name $moduleName -RequiredVersion $moduleVersion -Force - } + Install-Module -Name $moduleName -RequiredVersion $moduleVersion -Force + + # try { + # # Install-PackageProvider is required for AWS. Need to set command to + # # terminate on failure so that try/catch actually triggers + # Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -ErrorAction Stop + # Install-Module -Name $moduleName -RequiredVersion $moduleVersion -Force + # } + # catch { + # # If the first command failed, assume that we're on GCP and run + # # Install-Module only + # Install-Module -Name $moduleName -RequiredVersion $moduleVersion -Force + # } # Construct the module path for system-wide installation $moduleBasePath = "C:\Windows\system32\config\systemprofile\Documents\PowerShell\Modules\$moduleName\$moduleVersion"