Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
4answers
6k views

How to find out the number of CPUs in python

I want to know the number of CPUs on the local machine in Python. The result should be user/real as output by time(1) when called with an optimally scaling userspace-only program.
7
votes
5answers
334 views

How to retrieve useful system information in java?

Which system information are useful - especially when tracing an exception or other problems down - in a java application? I am thinking about details about exceptions, java/os information, ...
4
votes
1answer
326 views

What is the Equivalent of Windows WMI for MacOS C++ Development?

I have a C++ application that gets detailed system information (processor type, available disk space, other hardware profile info) on Windows using WMI. I want to perform the same type of operations ...
2
votes
3answers
2k views

How to get unique machine signature?

I know that a question has already been asked about generating a unique ID for a machine but my question is slightly different. I want to know whether there are any other methods (API calls?) to get ...
1
vote
3answers
46 views

Display all the lines after a particular line in a text file using Batch

This is my code. @ECHO OFF systeminfo > C:\SystemInfo1.txt findstr /C:"OS Name:" /C:"OS Version:" /C:"OS Manufacturer:" /C:"Original Install Date:" /C:"System Boot Time:" /C:"System ...
1
vote
2answers
44 views

How to check Computer system information from web server

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 ...
1
vote
1answer
25 views

System and hardware information Library or open source project

I need a System and hardware information library written with .net/C#. I am developing an application like Process Explorer. Do you know opensource projectlike this ? network bandwith, Cpu/Ram ...
1
vote
4answers
136 views

How do I get linux system information in Ruby

How do I get the software/hardware information of a linux system (this has to work for Fedora, Ubuntu etc) in Ruby?
1
vote
2answers
129 views

Get number of cores on a XP 64 bit system

Hej, I wrote a function that should give me the number of cores of a windows system. It works on all systems except XP 64 bit. Here's the way I get the information: $objWMIItems = ...
1
vote
2answers
276 views

How to find unix/linux sytem info using java or shell script?

How to find unix/linux system info like OS version, RAM, no. of processors, hard disk, memory dedicated to a particular process, memory utilization of java using java or shell scripts.
1
vote
0answers
258 views

How to get the total amount of shared video memory of a graphic card on Mac OSX?

Using e.g. the command line tool and creating a NSDictionary from the output of: system_profiler -xml SPDisplaysDataType it is possible to get to know the amount of video memory. The key ...
1
vote
1answer
532 views

Checking Battery Status in Blackberry development

I am developing an application for 8900 + 9000 Blackberry. In my application I need to check if the battery is connected to a charger, specifically an in-car charger. I used the following to check ...
1
vote
5answers
2k views

Get System Information of a Remote Machine (Using Java)

As the question's title says, I want to get the system information (like OS name, version, etc.) of a remote system using Java. But before anyone answers this question, I just want to ask whether this ...
0
votes
2answers
195 views

Execute Unix system command from JAVA problem

I am facing a weird issue with executing a system command from JAVA code. Actually i want to get the Mac OSX system information from my JAVA App. For that im using ...
0
votes
0answers
194 views

How to get motherboard information like Motherboard Name, North Bridge Properties, South Bridge Properties, etc.?

I've been searching about this a lot but couldn't get the right answer. Everywhere people suggest WMI but WMI doesn't have any details about the motherboard. I need the information shown by CPU-Z or ...
0
votes
1answer
87 views

Reliable CPU information and high level programming languages

Could somebody advice to me if this is possible to get reliable data using any of the high level programing language/libraries? Or I need to take an assembler to achieve my goal. I need to get : CPU ...
0
votes
3answers
505 views

How can I get the memory size of the display adapter card using C++?

I would like to get the display adapter card memory size. What is the best way to do this? My development enviroment is Visual Studio C++ 2008. Thanks.
0
votes
3answers
302 views

How to get the system info with Python?

I need to get the info under what environment the software is running. Does python have a library for this purpose? I want to know the following info. OS name/version Name of the CPU, clock speed ...
0
votes
1answer
246 views

label to display graphics card or total system ram through registry possibly?

hi all i have this great code that i love that will display the kind of processor model and speed like so RegistryKey Rkey = Registry.LocalMachine; Rkey = ...