GeT Serial Dia

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

(defun ST:Sys-GetHDDSerial (/ where Dowhat ModelObject SerialObject Model Se rial) (setq where (vlax-create-object "WbemScripting.

SWbemLocator") Dowhat (vlax-invoke where 'ConnectServer nil nil nil nil nil nil nil nil ) SerialObject (vlax-invoke Dowhat 'ExecQuery "Select * from Win32_Physica lMedia") ) (vlax-for Obj SerialObject (setq Serial (cons (vlax-get Obj 'SerialNumber) Serial)) ) (setq Serial (vl-remove nil Serial)) )

You might also like