I want to create a shortcut based on the windows username via a batch file
i was thinking along the lines of:
if %username% in (a,b,c,d) (
shortcut ShortcutName DestinationPath
)
else (
shortcut OtherShortcutName OtherDestinationPath
)
I'm having issues with the first part as I already know how to create shortcuts via command line...
Hope I can find some help.