The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
25 views

Ubuntu get the time when the Operating System was installed for a non root user [closed]

Does anyone know how to get the time or date when the Ubuntu Operating system was installed (Not the uptime)? Thank you
0
votes
2answers
150 views

Is there any alternative of gettickcount function in java which can give time since boot?

Is there any way to get time since system boot for mac os x in java? In Visual studio we have gettickcount function but in java I am not able to get which function can do the same.. I dont want to ...
-1
votes
3answers
94 views

how to get version of default browser on my mac os x

I want to get system information in mac using objective C. I am searching a lot but did not got single line of code for my use.They provided solutions via javascript but i want them in objective C. ...
0
votes
1answer
93 views

how to get default mail client version on mac os x?

I am new here. I have searched about default mail client information on mac os x. I found some help here How do I get the default mail client using applescript? But i did not got all the information i ...
0
votes
1answer
99 views

Get or generate System Information in “C++”

If you look at your windows pc's system information window and select Components->Display in the left pane. The second from top value in the right pane is PNP Device ID. This is the case for XP at any ...
0
votes
1answer
40 views

Get certain information from passthru and top

I have tried to use this possible solution without any luck: $test = passthru('/usr/bin/top -b -n 1'); preg_match('([0-9]+ total)', $test, $matches); var_dump($matches); That code shows the ...
1
vote
1answer
205 views

How can I get volume id on Windows using Java?

I'm developing a java desktop application to access information, format, change labels and volume id. This app's target are Windows users that will be using mainly Windows XP or Windows 7. I'm ...
0
votes
0answers
178 views

How to export Windows' System Information to a file programmatically

I'm creating a crash report service that could use the information contained in Windows' System Information. Is there a way to export that information to a file so I can include that file in my crash ...
0
votes
1answer
158 views

ListView of Hardware Resources Memory Info (msinfo32)

Is there any way to do this in vb.net? Are there any functions for retrieving that info?Any way to display theme in a ListView? Thank you very much.
1
vote
1answer
332 views

Visual Basic System Information

I want to make a button and display the System Information from Windows.How can I do it?How can i call that info?Thank you very much. Is it possible to make something like this? ...
1
vote
2answers
1k views

How to get software & hardware information from windows (like dxdiag)?

I need to get hardware and software information of Windows like the information we got from dxdiag Computer module : TOSHIBA l775 Processor : Intel(R) i5 CPU M480 @2.67Ghz .. RAM ...
1
vote
3answers
2k 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
209 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
220 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 ...
2
votes
4answers
1k 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?
0
votes
2answers
2k 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 ...
1
vote
2answers
573 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
694 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.
0
votes
1answer
191 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
1k 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.
1
vote
0answers
402 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 ...
5
votes
1answer
791 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 ...
7
votes
5answers
683 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, ...
3
votes
3answers
2k 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
413 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 = ...
3
votes
1answer
757 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 ...
2
votes
7answers
3k 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 ...
61
votes
5answers
17k 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.
3
votes
3answers
3k views

How to get unique machine signature without WMI?

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 ...