Uma obeservação importante é que, se você quer utilizar para colocar travas em softwares este é o número que você vai precisar, pois o que tenho visto por aí é o pessoal pesquisando por "Número do Volume do HD" que muda quando é criado um novo volume tipo "Unidade D:", mas o Serial do HD, este não muda, assim pode ser usado para qualquer fim.
Não achei nenhuma solução no fórum e as que achei eram complicadas e pagas, por isto estou postando aqui. Este foi pego no fórum da Sun em Inglês.
[code]import java.io.BufferedReader;
import java.io.File;
import java.io.FileWriter;
import java.io.InputStreamReader;
public class Teste {
public static String getHDSerial(String drive) {
String result = "";
try {
//File file = File.createTempFile("tmp",".vbs");
File file = File.createTempFile("tmp", ".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs = "Set objFSO = CreateObject(\"Scripting.FileSystemObject\")\n" + "Set colDrives = objFSO.Drives\n"
+ "Set objDrive = colDrives.item(\"" + drive + "\")\n" + "Wscript.Echo objDrive.SerialNumber";
fw.write(vbs);
fw.close();
Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
BufferedReader input =
new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
} catch (Exception e) {
}
if (result.trim().length() < 1 || result == null) {
result = "NO_DISK_ID";
}
return result.trim();
}
public static String getCPUSerial() {
String result = "";
try {
File file = File.createTempFile("tmp", ".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs =
"On Error Resume Next \r\n\r\n" +
"strComputer = \".\" \r\n" +
"Set objWMIService = GetObject(\"winmgmts:\" _ \r\n" +
" & \"{impersonationLevel=impersonate}!\\\\\" & strComputer & \"\\root\\cimv2\") \r\n" +
"Set colItems = objWMIService.ExecQuery(\"Select * from Win32_Processor\") \r\n " +
"For Each objItem in colItems\r\n " +
" Wscript.Echo objItem.ProcessorId \r\n " +
" exit for ' do the first cpu only! \r\n" +
"Next ";
fw.write(vbs);
fw.close();
Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
BufferedReader input =
new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = input.readLine()) != null) {
result += line;
}
input.close();
} catch (Exception e) {
}
if (result.trim().length() < 1 || result == null) {
result = "NO_CPU_ID";
}
return result.trim();
}
public static void main(String[] args) {
System.out.println("Serial do HD: " + getHDSerial("c"));
System.out.println("Serial da CPU: " + getCPUSerial());
}
}[/code]
Atenciosamente,
Leonardo A. Santos