感谢您使用微软产品。 您可以使用Interope,在您的项目中引入"Windows Script Host Object Model" COM library。然后运行下面的代码:using System;
using System.Runtime.InteropServices;
using IWshRuntimeLibrary;namespace CreateShortcutCOM {
/// <summary>
/// This class creates a shortcut with COM interoperability
/// </summary>
  class ShortcutDemo {
    [STAThread]
    static void Main(string[] args) {
      // Get the app path and filename
      string app = Environment.CurrentDirectory + @"\CreateShortcutCOM.exe";      try {
        // Create a Windows Script Host Shell class
        IWshShell_Class shell = new IWshShell_ClassClass();
        // Define the shortcut file
        IWshShortcut_Class shortcut = shell.CreateShortcut(app + ".lnk") as IWshShortcut_Class;
        // Set all its properties
        shortcut.Description = "Smart sample of creating shell shortcut";
        shortcut.TargetPath = app;
        shortcut.IconLocation = app + ",0";
        // Save it
        shortcut.Save();
      } 
      catch(COMException ex) {
         Console.WriteLine(ex.Message);
      }
    }
  }
}希望对您有所帮助。
 
-微软全球技术中心  -zgh
 
本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利。具体事项可参见使用条款(http://support.microsoft.com/directory/worldwide/zh-cn/community/terms_chs.asp)。
为了为您创建更好的讨论环境,请参加我们的用户满意度调查(http://support.microsoft.com/directory/worldwide/zh-cn/community/survey.asp?key=(S,49854782))。

解决方案 »

  1.   

    非常感谢你能回答我的问题,我想继续问下去有
    有人写了一个CreatShortcut()函数,里面用到shell32这个东西,有什么关于shell32的资料吗:
    谢谢
      

  2.   

    感谢您的回复。关于这个问题,建议您查阅微软的MSDN站点:http://msdn.microsoft.com/library/default.asp相信您能够找到您需要的信息。-:)-微软全球技术中心  -zgh
     
    本贴子以“现状”提供且没有任何担保,同时也没有授予任何权利。具体事项可参见使用条款(http://support.microsoft.com/directory/worldwide/zh-cn/community/terms_chs.asp)。
    为了为您创建更好的讨论环境,请参加我们的用户满意度调查(http://support.microsoft.com/directory/worldwide/zh-cn/community/survey.asp?key=(S,49854782))。