using System.Diagnostics
//按钮事件
Process p = new Process()
p.StartInfo.FileName="C:\\Documents and Settings\\Administrator\\桌面\\腾讯QQ.lnk"
p.StartInfo.Arguments = ""
p.StartInfo.WorkingDirectory = ""
p.StartInfo.UseShellExecute = false
p.StartInfo.RedirectStandardInput = true
p.StartInfo.RedirectStandardOutput = true
p.StartInfo.RedirectStandardError = true
p.StartInfo.ErrorDialog = false
p.StartInfo.CreateNoWindow = true
p.Start()
p.Close()
开始菜单 cmd首先你要知道你的QQ位于电脑硬盘的哪个位置, 例如我的在"D:\Program Files\Tencent\QQ\Bin\QQ.exe"
然后 在CMD中输入“cd ..”然后回车,这个命令是“回到上一层文件夹里
一直输入上个命令,直到你到达C盘根目录后,输入”d:"然后回车,这个命令是来到D盘(假如你的QQ程序在E盘,就输入“e:")
然后输入”cd D:\Program Files\Tencent\QQ\Bin“回车,这个命令是来到QQ程序所在文件夹(注意是来到QQ所在文件夹,也就是后面不加”qq.exe“)
然后输入”start qq.exe“回车就OK了
你说的CALENDAR当然也可以这样打开
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)