I am trying to rename a file and then copy a file to that location, the error I am getting is that
Rename-Item : Cannot rename because item at .... does not exist.
The issue I believe is that the file does not have an extension, so I have something like:
rename-item "\\$serverName\c$\temp\filename" -NewName filename.$currentdate
Hm, I doubt it is because of no extension.
Rename-Item
works fine with such files or folders.In your example, you are missing one \ at the beginning, there should be two of them.
Anyway if you want to be sure, you may use following (you should have variable $currentdate already populated):
With those two commands you will see if it fails on Get-Item or on Rename-Item.