zoukankan
html css js c++ java
程序安装时检查是否已经安装.NETFramework
添加新项中添加一个安装程序类
using
System;
using
System.Collections;
using
System.ComponentModel;
using
System.Configuration.Install;
using
Microsoft.Win32;
using
System.Diagnostics;
using
System.IO;
namespace
DOTNETCheck
{
/**/
///
<summary>
///
CheckDotnet 的摘要说明。
///
</summary>
[RunInstaller(
true
)]
public
class
CheckDotnet : System.Configuration.Install.Installer
{
/**/
///
<summary>
///
必需的设计器变量。
///
</summary>
private
System.ComponentModel.Container components
=
null
;
public
CheckDotnet()
{
//
该调用是设计器所必需的。
InitializeComponent();
//
TODO: 在 InitComponent 调用后添加任何初始化
}
Component Designer generated code
#region
Component Designer generated code
/**/
///
<summary>
///
设计器支持所需的方法 - 不要使用代码编辑器修改
///
此方法的内容。
///
</summary>
private
void
InitializeComponent()
{
components
=
new
System.ComponentModel.Container();
}
#endregion
public
override
void
Install(System.Collections.IDictionary stateSaver)
{
//
入口
RegistryKey key
=
null
;
key
=
Registry.LocalMachine.CreateSubKey(
"
Software\\Microsoft\\.NETFramework\\policy\\v1.0
"
);
if
(key
==
null
||
key.GetValue(
"
3705
"
)
==
null
)
{
Process MyProcess
=
new
Process();
MyProcess.StartInfo.FileName
=
"
dotnetfx.exe
"
;
MyProcess.StartInfo.WindowStyle
=
ProcessWindowStyle.Hidden;
MyProcess.Start();
MyProcess.WaitForExit();
//
等待程序执行
MyProcess.Close();
}
}
}
}
查看全文
相关阅读:
Sgu294He's Circles
[HNOI2008]Card洗牌
传球游戏
[BZOJ1478]Sgu282 Isomorphism
[POJ2154]Color
[ZOJ1961]Let it Bead
BZOJ1257 [CQOI2007]余数之和sum
BZOJ1192 [HNOI2006]鬼谷子的钱袋
BZOJ4614 [Wf2016]Oil
BZOJ3209 花神的数论题
原文地址:https://www.cnblogs.com/ghd258/p/262052.html
最新文章
nginx+tomcat+memcache
Ubuntu无法安装rpm包,ubuntu RPM should not be used directly install RPM packages, use Alien instead!
PageOfficeCtrl增加属性OfficeVendor,用来指定是否用WPS打开当前Office文档
PageOffice 页面中打开office编辑文档
国产银河麒麟 安装wps 的简单方法
虚拟机中Linux系统(优麒麟为例)下利用终端命令安装VMwareTools工具详细教程
U盘安装ubuntu18.04 优麒麟18.04 详细过程
ubuntu无法应用原保存的显示器配置
U麒麟在虚拟机VMware更改分辨率
BERT模型实战之多文本分类(附源码)
热门文章
jQuery 参考手册
[POI2007]Zap
[POI2007]大都市meg
[POI2007]天然气管道Gaz
[POI2007]办公楼biu
[POI2007]堆积木Klo
[POI2007]石头花园SKA
[POI2007]旅游景点atr
Uva10601 Cubes
[POJ1721]Cards
Copyright © 2011-2022 走看看