我是PowerShell的新手,但是我写了一个脚本,在每个用户网络主目录中重命名4个文件夹。用户SAM帐户是从文本文件中提取的。
脚本可以运行但脚本运行后会出现这样的错误。我为什么要这个?
“Get-Item:找不到路径'C:\ Portability',因为它不存在。 在行:3 char:5 + Get-Item -Path“$ line \ Portability”| Rename-Item -NewName“Portability $(Get- ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:ObjectNotFound:(C:\ Portability:String)[Get-Item],ItemNotFoundException + FullyQualifiedErrorId:PathNotFound,Microsoft.PowerShell.Commands.GetItemCommand“
这是脚本:
#Import AD PowerShell Module
Import-Module ActiveDirectory
#Get Home Path for each user
$GetHD = Get-Content C:\Temp\UserList.txt | ForEach {Get-ADUser $_ -properties HomeDirectory | Select HomeDirectory} > C:\temp\UserInfo.txt
#Copy list of paths to C:\temp\dir.txt and safe content to variable $hdirpath
Get-Content C:\temp\UserInfo.txt | Select-Object -Skip 3 | Foreach {$_.TrimEnd()} | Out-File C:\Temp\dir.txt
$hdirpath = Get-Content C:\Temp\dir.txt
#Rename folder if exist adding current date at end of folder
ForEach ($line in $hdirpath) {
Get-Item -Path "$line\Portability" | Rename-Item -NewName "Portability$(Get-Date -Format ""MMddyyyy"")" -WhatIf
Get-Item -Path "$line\Profile" | Rename-Item -NewName "Profile$(Get-Date -Format ""MMddyyyy"")" -WhatIf
Get-Item -Path "$line\Profile.v2" | Rename-Item -NewName "Profile.v2$(Get-Date -Format ""MMddyyyy"")" -WhatIf
Get-Item -Path "$line\TSProfile.v2" | Rename-Item -NewName "TSProfile.v2$(Get-Date -Format ""MMddyyyy"")" -WhatIf
}
答案 0 :(得分:5)
你说"如果存在则重命名文件夹"但是在针对它们运行命令之前,您不会检查文件夹是否存在,这就是您收到错误的原因:
无法找到路径' C:\ Portability'因为它不存在"
您可以使用简单的if
和Test-Path
更新代码,以检查文件夹是否存在,只有在尝试重命名时才会重命名:
ForEach ($line in $hdirpath) {
if(Test-Path "$line\Portability"){ Rename-Item -Path "$line\Portability" -NewName "Portability$(Get-Date -Format ""MMddyyyy"")" -WhatIf }
if(Test-Path "$line\Profile"){ Rename-Item -Path "$line\Profile" -NewName "Profile$(Get-Date -Format ""MMddyyyy"")" -WhatIf }
if(Test-Path "$line\Profile.v2"){ Rename-Item -Path "$line\Profile.v2" -NewName "Profile.v2$(Get-Date -Format ""MMddyyyy"")" -WhatIf }
if(Test-Path "$line\TSProfile.v2"){ Rename-Item -Path "$line\TSProfile.v2" -NewName "Installs$(Get-Date -Format ""MMddyyyy"")" -WhatIf }
}
修改强>
这是一个版本,它不需要多个txt文件作为临时步骤,并为重命名添加了一个函数,以避免重复代码行。
我删除了两位,因为我不确定您为什么要跳过列表中的前三个用户(Select-Object -Skip 3
),或者为什么需要删除任何尾随空格(Foreach {$_.TrimEnd()}
)因为这意味着当您尝试重命名时,HomeDirectory路径将不匹配。
Function Rename-Folder
{
Param (
[Parameter(Mandatory=$true)]
[string]$Path,
[Parameter(Mandatory=$true)]
[string]$NewName
)
if(Test-Path $Path){ Rename-Item -Path $Path -NewName $NewName}
}
Import-Module ActiveDirectory
#Get Home Path for each user
$HomeDirectories = Get-Content "C:\Temp\UserList.txt" | ForEach {Get-ADUser $_ -properties HomeDirectory | Select HomeDirectory}
#Rename folder if exist adding current date at end of folder
ForEach ($line in $HomeDirectories) {
Rename-Folder -Path "$line\Portability" -NewName "Portability$(Get-Date -Format ""MMddyyyy"")"
Rename-Folder -Path "$line\Profile" -NewName "Profile$(Get-Date -Format ""MMddyyyy"")"
Rename-Folder -Path "$line\Profile.v2" -NewName "Profile.v2$(Get-Date -Format ""MMddyyyy"")"
Rename-Folder -Path "$line\TSProfile.v2" -NewName "Installs$(Get-Date -Format ""MMddyyyy"")"
}
注意:我在AD设置中不使用主目录,因此无法完全测试,但在单独测试时它可以正常工作。