Saya mencoba menggunakan PowerShell DSC untuk menyalin konten folder dari jaringan berbagi. Ini kodenya:
Configuration TestSetup {
Node localhost {
File Test {
SourcePath = "\\Server\SomeShare\SomeFolder"
DestinationPath = "E:\test"
Recurse = $true
Type = "Directory"
}
}
}
Namun ini tidak berhasil - ketika saya menjalankannya saya mendapatkan pesan kesalahan berikut:
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
Saya mendapatkan hasil yang serupa ketika mencoba menginstal paket dari jaringan berbagi atau mengekstrak arsip dari jaringan berbagi. Saya menjalankan PowerShell 4 pada Windows Server 2008 R2 SP1.
Apakah ada cara untuk menggunakan PowerShell DSC dengan jaringan berbagi?