I'd like to check whether a shortcut exists in the Startup Menu of each user and delete it if it does.
Something like this:

If Exist('C:\Documents and Settings\%username%\Start Menu\Programs\Startup\StaffTracker*.*')
Del ('C:\Documents and Settings\%username%\Start Menu\Programs\Startup\StaffTracker*.*')
Endif

Is the wildcard syntax correct for the If Exist? If so, how do I transfer the "real" name of the StaffTracker*.* to the Del statement?