Link to home
Start Free TrialLog in
Avatar of lenoza
lenoza

asked on

Remove Desktop shortcut with bat file

I use a bat file to place url shorcuts on workstation desktops.  i need to remove them from some workstations can i do this with a bat file?  here is what i put them out ther with.

xcopy "\\share\ie\CMHC FAQ.url" "%allusersprofile%\desktop\" /d /y
xcopy "\\share\ie\CMHC-SharePoint.url" "%allusersprofile%\desktop\" /d /y
xcopy "\\share\ie\EMR-SharePoint.url" "%allusersprofile%\desktop\" /d /y
xcopy "\\share\ie\EMR Helpdesk.url" "%allusersprofile%\desktop\" /d /y
xcopy "\\share\ie\Lock Workstation.lnk" "%allusersprofile%\desktop\" /d /y

i tried the del and erase but no luck.

thanks,
Le0
Avatar of cookre
cookre
Flag of United States of America image

You don't say what the failure was, so we're left guessing:

* files read-only?
* does copying process have rights to delete?
* not found?
Avatar of adnix
adnix

what is the exact command you executed?

anyway try this:
del %allusersprofile%\desktop\"CMHC FAQ.url"
del %allusersprofile%\desktop\"CMHC-SharePoint.url"
del %allusersprofile%\desktop\"EMR-SharePoint.url"
del %allusersprofile%\desktop\"EMR Helpdesk.url"
del %allusersprofile%\desktop\"Lock Workstation.lnk"
Avatar of lenoza

ASKER

The error I recieve is:
The system cannont find the file specified.

I tried the above syntax with no success.  Any suggestions, I am upping the point value because this will save me a ton of hands on works.

Le0
How about this? (note the position of the double quotes)

del "%allusersprofile%\desktop\CMHC FAQ.url"
del "%allusersprofile%\desktop\CMHC-SharePoint.url"
del "%allusersprofile%\desktop\EMR-SharePoint.url"
del "%allusersprofile%\desktop\EMR Helpdesk.url"
del "%allusersprofile%\desktop\Lock Workstation.lnk"

Are you sure they are URLs? Most shortcuts are .lnk files, maybe try that?
Hmm....just noticed that the last one WAS an .lnk...guess that's not it. Sorry.
ASKER CERTIFIED SOLUTION
Avatar of AlexFM
AlexFM

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of lenoza

ASKER

Thanks Alex you duh man