为网站添加网站快捷方式:在用户程序中 http://www.google.com

本文关键字:网站 www google com http 用户程序 添加 快捷方式 | 更新日期: 2023-09-27 18:31:25

我想为网站添加网站快捷方式:在我们安装软件安装程序时,在窗口窗体C#的用户程序(start-->所有程序)中 http://www.google.com,它像在用户程序中一样安装:-

演示(所有程序中的文件夹)

-演示软件快捷方式

-网站链接

提前致谢

为网站添加网站快捷方式:在用户程序中 http://www.google.com

您没有指定要创建它的方式或创建内容。对于完全手动的方式

string fullURLYouWant = "http://www.google.com/";
using (StreamWriter writer = new StreamWriter(yourPath + "''" + yourShortCutFileName + ".url"))
{
    writer.WriteLine("[InternetShortcut]");
    writer.WriteLine("URL=" + fullURLYouWant);
    writer.WriteLine("IconIndex=0");
    writer.WriteLine("IconFile=" + iconFileForYourUrl);
    writer.Flush();
}