This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / .net 开发的windows services, 如果在server上没有安装.net framework, 如何安装呢?在开发机上可在 .net command prompt 下运行 installutil servicename.exe. 但服务器上不能随便安装开发工具, 没有.net framework, 如何安装呢?
-whatwhenwherewhy(一生何求);
2004-11-21
{136}
(#1991871@0)
-
if you run windows update, you will get option of installing .net framework. or download distributable framework from microsoft website
-gugu(GuGu);
2004-11-21
(#1991901@0)
-
有点误解。 我的意思是不想在每台服务器上安装.net framework, 但是要在这些服务器上安装一个用.net 开发的 windows services. 比如myagent.exe这个windows services 是用vb.net 的template 生成的。 .net framework 的installutil 可以安装, 但是没有.net frame work 如何安装这个services呢?
-whatwhenwherewhy(一生何求);
2004-11-21
{140}
(#1992009@0)
-
没有.net framework,不能运行.net 的程序。就像没有java runtime,就不能运行java程序一样。用visual studio .net 制作安装程序的时候可以把.net framework包括在内。
-bluebison(不是很牛);
2004-11-21
(#1992074@0)
-
thanks man. how can I include framework into the setup package? including " installutil".
-whatwhenwherewhy(一生何求);
2004-11-22
(#1992469@0)
-
You have to create a project to make a installation package. Check visual studio help file for more detail. It won't be hard.
-bluebison(不是很牛);
2004-11-22
(#1993681@0)
-
thanks, got it.
-whatwhenwherewhy(一生何求);
2004-11-23
(#1994298@0)