I would like to be able to delete a file in the all users\desktop. To find it:

 Code:
CASE EXIST("%USERPROFILE%\desktop\EMR.RDP")=1 OR EXIST("%ALLUSERSPROFILE%\desktop\EMR.RDP")=1


I want to delete it if it is in either location. I know permission is not an issue under %userprofile%, but it is under %allusersprofile%. Figured there is a way to set the a variable to be the actual file location, should it exist, and then delete that from another line, but I also don't know how to do that. I know I can break that into two different cases, if that is easier. Any guidance would be appreciated.