my aim is to remove the quick launch bar on Win98 workstations at logon. I'm employing Kix2001 and the machines all use user profiles. I've found the target folder here:

c:\windows\profiles\@UserID\application data\internet explorer\quick launch

my issue is that my script- contained below-doesn't seem to delete this folder and thus remove the quick launch bar.

the script is:

if exist ("c:\windows\profiles\@UserID\application data\internet explorer\quick launch")
del "c:\windows\profiles\@UserID\application data\internet explorer\quick launch"
endif

any thoughts or comments are appreciated.