I am working on a program that i want to gather system information in order to determine if the computer is compatible with software. I would like to add the program to a website for visitors to check their machine. so far it had been uploaded to a web server. but instead of checking the users machine, it only checks the web server. Am i missing like a connect function or something to connect to the user machine, like possibly to connect to localhost or something of the sort. Any advice or help will be greatly appreciated. Thanks.
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
You can't do that unless you have the client computer install your application.
What sort of information are you looking to obtain from the client machine?
You can check the operating system client-side in Javascript:
http://www.programmersheaven.com/mb/java-script/215704/215704/how-to-retrieve-clients-system-info/
Unfortunately you can't check things like RAM, hard disk space without running on the client machine, so your installation package would need to verify these requirements.