Hey Killbat,
Here is something to get your gears turning, I did this in WinNT but I think it is the same in Win2k. Without more details I can't make it more elaborate (by details I mean the names of the files you want to move and the ones you want to keep and how these files get here on a regular basis).
for /f %i in ('dir /b c:\winnt\profiles\blah\desktop') do if "%i" == "Shortcut" echo %i meets requirement
a simple one liner, if you put it in a batch file script the %i's need to be changed to %%i. This will echo every shortcut that starts with Shortcut (case sensitive). I could easily change the Echo to a move statement and make the matching statement more elaborate but I think you get the picture.
Here is something to get your gears turning, I did this in WinNT but I think it is the same in Win2k. Without more details I can't make it more elaborate (by details I mean the names of the files you want to move and the ones you want to keep and how these files get here on a regular basis).
for /f %i in ('dir /b c:\winnt\profiles\blah\desktop') do if "%i" == "Shortcut" echo %i meets requirement
a simple one liner, if you put it in a batch file script the %i's need to be changed to %%i. This will echo every shortcut that starts with Shortcut (case sensitive). I could easily change the Echo to a move statement and make the matching statement more elaborate but I think you get the picture.