1.

Solve : Sourcing System Information?

Answer»

Hello all,

Trying to find out how best to acquire the following System Information via a batch script ...

> Computer Name.
> Serial Number.
> Operating System.
> Service Pack.
> Processor Type.
> Processor Speed.
> Memory Size (RAM).
> Number of Physical HDD.
> HDD CAPICITY.
> Number of Partitions/HDD.
> PARTITION Capicity.
> NIC Type/Speed.
> NIC MAC Address.
> Wireless Enabled (YES/NO).
> Wireless NIC MAC Address.

Any help would be appreciatedUse the "systeminfo" command...

Code: [SELECT]systeminfo
pause to retrieve information

Code: [Select]systeminfo >> info.txt to save the retrieved information to a file

Hope that helps.

8-)fffreakThanks for the reply fffreak.

What of the partition info and MAC ADDRESSES - any ideas ??Quote

Thanks for the reply fffreak.

What of the partition info and MAC addresses - any ideas ??
1) to get mac address of your machine you can use getmac
2) to list partition info, you can use diskpart. (XP)
Code: [Select]C:\DOCUME~1\ADMINI~1>diskpart /s diskpart.script

Microsoft DiskPart version 5.1.3565

Copyright (C) 1999-2003 Microsoft Corporation.
On computer: EEE-YEXHFLKKGGU

Disk ### Status Size Free Dyn Gpt
-------- ---------- ------- ------- --- ---
Disk 0 Online 3067 MB 0 B


diskpart.script is just the list command
eg
list disk
Look at diskpart /? for more information.


Discussion

No Comment Found