Help for this page

Select Code to Download


  1. or download this
        
    C:\tmp>perl
    print system ('wmic path win32_computersystemproduct get uuid');
    ...
    
    0
    C:\tmp>
    
  2. or download this
    C:\tmp>perl
    $a=qx(wmic path win32_computersystemproduct get uuid);
    ...
    
    >>>
    C:\tmp>