Possible Duplicate:
Create Windows 7 Quick Launch
Is there any method to place a shortcut (lnk file) in the quick launch bar of windows 7 using C# code? The method I used for Win XP doesn't work for Win7:
string strAllUsersAppData = Environment.GetEnvironmentVariable("APPDATA");
string strQuickLaunch = strAllUsersAppData;
strQuickLaunch += @"\Microsoft\Internet Explorer\Quick Launch";
//then i used a method to copy the lnk file in the strQuickLaunch path
I don't know how to create the path for it in Win7. Any ideas? Thanks