Переменные PowerShell DSC обнуляются после выполнения команды Invoke-Command из сценария powershell - PullRequest
0 голосов
/ 02 октября 2019

Попытка вызова сценария DSC Powershell из Invoke-Command с использованием сценария powershell.ps1, получение пустых переменных внутри части конфигурации в DSC.

Configuration setupfilezip
{
   param ($ComputerName)
   $vdirectoryPath = "C:\temp\setupfiles"
   Import-DscResource -ModuleName "PSDesiredStateConfiguration"
   Node 'localhost'{
     File setupfiles {
            Type = 'Directory'
            DestinationPath = $vdirectoryPath
            Ensure = "Present"
        }
     }
   }
setupfilezip

Start-DscConfiguration -ComputerName localhost -Path setupfilezip -Wait -Verbose


///another powershell script

Invoke-Command "C:\tmp\sample2.ps1"

...