如何使用C#代码在Windows 7 Quick Launch Bar中放置快捷方式

时间:2011-07-20 05:14:54

标签: c# windows shortcut quicklaunch

  

可能重复:
  Create Windows 7 Quick Launch

是否有任何方法可以使用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中为它创建路径。有任何想法吗? 感谢

1 个答案:

答案 0 :(得分:0)

this CodeProject page;我意识到它不是C#;但是,请阅读背景段落以了解更多信息。