这个脚本应该创建一些新的驱动器但是在我运行之后它们不存在,任何想法为什么?完全卡住.... 提前致谢
Function New-Drives {
Param()
New-PSDrive -Name AppData -PSProvider FileSystem -Root $env:Appdata
New-PSDrive -Name Temp -PSProvider FileSystem -Root $env
$env:TEMP=Join-Path -Path C:\Windows\Temp
$mydocs=Join-Path -Path $env:userprofile -ChildPath Documents
New-PSDrive -Name Docs -PSProvider FileSystem -Root $mydocs
}
DIR temp: | measure-object –property length -sum
New-Drives
答案 0 :(得分:1)
您需要在-Persist
来电中添加New-PSDrive
参数。否则它只会在您的powershell会话中创建驱动器。