4
네트워크 공유의 PowerShell DSC 사본
PowerShell DSC를 사용하여 네트워크 공유에서 폴더 내용을 복사하려고합니다. 코드는 다음과 같습니다. Configuration TestSetup { Node localhost { File Test { SourcePath = "\\Server\SomeShare\SomeFolder" DestinationPath = "E:\test" Recurse = $true Type = "Directory" } } } 그러나 이것은 작동하지 않습니다-실행할 때 다음 오류 메시지가 나타납니다. The related file/directory is: \\Server\SomeShare\SomeFolder. The …