是否有任何方法可以使用C#代码在Windows 7的快速启动栏中放置快捷方式(lnk文件)?我用于Win XP的方法不适用于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
我不知道如何在Win7中为它创建路径。有任何想法吗? 感谢