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

c# 创建快捷方式

时间:2014-07-10 09:55:36      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   art   


选择 COM 选项卡并选择 Windows Script Host Object Model

Code:

WshShell shell = new WshShell();
IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut("C:\\Program Files (x86)\\gnnt\\浙江新华大宗商品交易中心\\Trader\\浙江新华大宗商品交易中心.lnk");
shortcut.TargetPath = @"C:\Program Files (x86)\gnnt\浙江新华大宗商品交易中心\Trader\AppUpdaterCom.exe";
shortcut.WorkingDirectory = "C:\\Program Files (x86)\\gnnt\\浙江新华大宗商品交易中心\\Trader\\";
shortcut.WindowStyle = 1;
shortcut.Description = "浙江新华大宗商品交易中心";
shortcut.IconLocation = @"C:\Program Files (x86)\gnnt\浙江新华大宗商品交易中心\Trader\AppUpdaterCom.exe,0";
shortcut.Save();
Process.Start(@"C:\Program Files (x86)\gnnt\浙江新华大宗商品交易中心\Trader\浙江新华大宗商品交易中心.lnk");

 

c# 创建快捷方式,布布扣,bubuko.com

c# 创建快捷方式

标签:des   style   blog   color   os   art   

原文地址:http://www.cnblogs.com/lxctboy/p/3812477.html

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