如何使用C#代码在Windows7快速启动栏中放置快捷方式
本文关键字:启动 快捷方式 何使用 代码 Windows7 | 更新日期: 2023-09-27 18:02:31
可能重复:
创建Windows 7快速启动
有没有任何方法可以使用C#代码在Windows7的快速启动栏中放置快捷方式(lnk文件(?我在WinXP中使用的方法不适用于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中为它创建路径。有什么想法吗?感谢
请参阅此CodeProject页面;我意识到它不是C#;不过,请阅读背景部分以了解更多内容。