码迷,mamicode.com
首页 > 其他好文 > 详细

使用 COM 类库创建链接桌面快捷方式

时间:2014-12-24 11:34:35      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

用到的 COM 类库:

Windows Script Host Object Model --> Interop.IWshRuntimeLibrary.dll

示例代码:

private static void _BuildLink()
{
    var startUrl = "http://localhost:8888";
    var location = Environment.GetFolderPath( Environment.SpecialFolder.DesktopDirectory ) + "\\谷歌链接.url";

    try
    {
        IWshShell_Class shell = new IWshShell_ClassClass();
        IWshURLShortcut shortcut = shell.CreateShortcut( location ) as IWshURLShortcut;

        if (shortcut == null) return;
        
        shortcut.TargetPath = startUrl;
        shortcut.Save();


    }
    catch(COMException ex)
    {
        Console.WriteLine(ex.Message);
    }
}

注意:

如果直接复制代码并不能运行,会看到如下错误:

无法嵌入互操作类型“IWshRuntimeLibrary.IWshShell_ClassClass”。请改用适用的接口。 

此时需要在此项目的“引用”中找到“IWshRuntimeLibrary”并右键选择“属性”,将“嵌入互操作类型”设置为“False”。

使用 COM 类库创建链接桌面快捷方式

标签:

原文地址:http://www.cnblogs.com/jRoger/p/4181776.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!