Chinaunix首页 | 论坛 | 博客
  • 博客访问: 579581
  • 博文数量: 190
  • 博客积分: 10937
  • 博客等级: 上将
  • 技术积分: 2205
  • 用 户 组: 普通用户
  • 注册时间: 2009-04-07 11:28
文章分类

全部博文(190)

文章存档

2012年(1)

2011年(27)

2010年(20)

2009年(142)

我的朋友

分类: WINDOWS

2009-12-11 09:41:26

using IWshRuntimeLibrary;

//建立对象
WshShell shell = new WshShell();
//生成快捷方式文件,指定路径及文件名
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(@"C:\Documents and Settings\Administrator\桌面\" + "my.lnk");
//快捷方式指向的目标
shortcut.TargetPath = @"H:\winform\DeskHelper\DeskHelper\DeskHelper\bin\Debug\DeskHelper.exe";
//起始目录
shortcut.WorkingDirectory = @"H:\winform\DeskHelper\DeskHelper\DeskHelper\bin\Debug\DeskHelper.exe";
//窗口类型
shortcut.WindowStyle = 1;
//描述
shortcut.Description = "my Application";
//图标
shortcut.IconLocation = System.Environment.SystemDirectory + "\\" + "shell32.dll, 163";
//保存,注意一定要保存,否则无效
shortcut.Save();
阅读(1429) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~