PowerShell で、ドライブ文字をローカル パスにマップすることはできますか?
たとえば、次のようにマップx:\しますc:\myfolder1\myfolder2\
PowerShell で、ドライブ文字をローカル パスにマップすることはできますか?
たとえば、次のようにマップx:\しますc:\myfolder1\myfolder2\
使用できますsubst:
subst x: c:\myfolder1\myfolder2\
またはNew-PSDrive:
New-PSDrive -Name x -PSProvider FileSystem -Root c:\myfolder1\myfolder2\