且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何检查.NET是否已安装

更新时间:2023-11-26 21:30:58

你可以在我的电脑中查看 - >程序和功能。搜索Microsoft .Net Framework 3.5。

要开发应用程序和安装,您需要管理员权限。


请看一下:

http://msdn.microsoft.com/en- us / library / hh925568(v = vs.110).aspx [ ^ ]

是否在这台机器上安装了.NET Framework ??? [ ^ ]


我在另一个论坛找到了它:
cmd中的




dir / b / ad / on%systemroot%\ Mesrosoft.NET \ Framework\v?。*

I have a machine where I do not have administrative rights (including local) and I want to run an application to be developed in c#.
The OS is Windows 7.

I would like to check if the application would run on it, that means if the .NET environment is installed.

I can not see any directories that could give me a clue.

Any help will be welcome.

Thank you in advance.

David


PS: I would like to find something easier than developing and running the application and see what happens.

you can check it in My Computer -> Program And Feature. search for "Microsoft .Net Framework 3.5".
And to develop an application and installation you need rights by admin.


Please have a look:
http://msdn.microsoft.com/en-us/library/hh925568(v=vs.110).aspx[^]
Is .NET Framework installed on this machine???[^]


I have found it in another forum:
in cmd:

dir /b /ad /o-n %systemroot%\Microsoft.NET\Framework\v?.*