Ich versuche, mit PowerShell DSC Ordnerinhalte von einer Netzwerkfreigabe zu kopieren. Hier ist der Code:
Configuration TestSetup {
Node localhost {
File Test {
SourcePath = "\\Server\SomeShare\SomeFolder"
DestinationPath = "E:\test"
Recurse = $true
Type = "Directory"
}
}
}
Dies funktioniert jedoch nicht - wenn ich es ausführe, wird folgende Fehlermeldung angezeigt:
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
Ich erhalte ähnliche Ergebnisse, wenn ich versuche, ein Paket von einer Netzwerkfreigabe zu installieren oder ein Archiv von einer Netzwerkfreigabe zu extrahieren. Ich führe PowerShell 4 unter Windows Server 2008 R2 SP1 aus.
Gibt es eine Möglichkeit, PowerShell DSC mit Netzwerkfreigaben zu verwenden?