Ich versuche, den Speicherort auf das zugeordnete Netzlaufwerk Z in PowerShell festzulegen, und es funktioniert nicht.
Ich habe die folgenden Laufwerksbuchstaben: C, D, E, Z. Bei den ersten drei handelt es sich nur um lokale Datenträger, und das Z ist natürlich der Netzwerkspeicherort, der dem Buchstaben Z zugeordnet ist.
Ich kann von C nach D, nach E und wieder nach C wechseln, aber ich kann aus irgendeinem Grund nicht aus Liebe zu Gott zum Buchstaben Z wechseln. Ich kann jedoch zu diesem Speicherort wechseln, muss jedoch den Netzwerkspeicherort eingeben, anstatt den Laufwerksbuchstaben zu verwenden.
PS C:\Windows\system32> D:
PS D:\> C:
PS C:\Windows\system32> Z:
Set-Location : Cannot find drive. A drive with the name 'Z' does not exist.
At line:1 char:13
+ Set-Location <<<< Z:
+ CategoryInfo : ObjectNotFound: (Z:String) [Set-Location], DriveNotFoundException
+ FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
PS C:\Windows\system32> Set-Location \\fileserver\karta
PS Microsoft.PowerShell.Core\FileSystem::\\fileserver\karta> C:
PS C:\Windows\system32> Z:
Set-Location : Cannot find drive. A drive with the name 'Z' does not exist.
At line:1 char:13
+ Set-Location <<<< Z:
+ CategoryInfo : ObjectNotFound: (Z:String) [Set-Location], DriveNotFoundException
+ FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
PS C:\Windows\system32> Set-Location Z:
Set-Location : Cannot find drive. A drive with the name 'Z' does not exist.
At line:1 char:13
+ Set-Location <<<< Z:
+ CategoryInfo : ObjectNotFound: (Z:String) [Set-Location], DriveNotFoundException
+ FullyQualifiedErrorId : DriveNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
PS C:\Windows\system32>
Warum funktioniert es nicht? Wird dies in PowerShell nicht unterstützt ... Verwenden von Laufwerksbuchstaben zum Festlegen des Speicherorts für einen Netzwerkspeicherort?