Próbuję użyć programu PowerShell DSC do skopiowania zawartości folderu z udziału sieciowego. Oto kod:
Configuration TestSetup {
Node localhost {
File Test {
SourcePath = "\\Server\SomeShare\SomeFolder"
DestinationPath = "E:\test"
Recurse = $true
Type = "Directory"
}
}
}
To jednak nie działa - po uruchomieniu pojawia się następujący komunikat o błędzie:
The related file/directory is: \\Server\SomeShare\SomeFolder.
The path cannot point to the root directory or to the root of a net share.
SourcePath must be specified if you want to configure the destination directory recursively. Make sure that SourcePath is a directory and that it is accessible.
+ CategoryInfo : InvalidArgument: (:) [], CimException
+ FullyQualifiedErrorId : MI RESULT 4
+ PSComputerName : localhost
The SendConfigurationApply function did not succeed.
+ CategoryInfo : InvalidArgument: (root/Microsoft/...gurationManager:String) [], CimException
+ FullyQualifiedErrorId : MI RESULT 4
+ PSComputerName : localhost
Podobne wyniki uzyskuję, próbując zainstalować pakiet z udziału sieciowego lub wyodrębnić archiwum z udziału sieciowego. Korzystam z programu PowerShell 4 w systemie Windows Server 2008 R2 z dodatkiem SP1.
Czy istnieje sposób używania PowerShell DSC z udziałami sieciowymi?