Я намагаюся використовувати 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 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
Я отримую подібні результати, коли намагаюся встановити пакет із загальної мережі або витягнути архів із мережевої папки. Я запускаю PowerShell 4 на Windows Server 2008 R2 SP1.
Чи є спосіб використовувати PowerShell DSC з мережевими частками?