可能重复:
创建 Windows 7 快速启动
有没有什么方法可以使用 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 中为其创建路径。有任何想法吗?谢谢