MOVE FILES
Move-Item *.jpg -Destination ‘C:\London\PrintScreen Files’
RENAME FILES
$Pic=”Pics”
dir *.jpg | %{rename-item -path $_.fullname -newname ($Pic+$_.name)}
March 3, 2008
MOVE FILES
Move-Item *.jpg -Destination ‘C:\London\PrintScreen Files’
RENAME FILES
$Pic=”Pics”
dir *.jpg | %{rename-item -path $_.fullname -newname ($Pic+$_.name)}