Get NI RMC 8355 motherboard and CPU serial number programmatically

Hi all,
I need to read the motherboard or CPU serial numbers of the NI RMC 8355 programmatically.
I have tried to use "wmic baseboard get serialnumber" comand in cmd, but it returns "0123456789", which apparently is not a valid serial number.
Does anyone have any idea how I can read that information?
Is there any toolkit or LabVIEW VI which will do that job.
Thanks in advance.

Gevorg,
This is a Windows property that you can access the same way you would with a desktop PC, using the 'wmic baseboard get serialnumber' command.
http://www.windows-commandline.com/get-serial-number-for-ram-motherboard-hard-disk/
Regards,
Kristen

Similar Messages

  • How to get Physical Address and Volume Serial number of system

    Hi Experts,
    Is there any method or FM by which I can get System's Physical Address and Volume Serial Number ?
    I want to validate a report specific to a system.
    Regards,
    Nitin Karamchandani.
    Edited by: Nitin Karamchandani on Dec 30, 2009 2:36 PM

    Hi,
    By using the below statemnt you can achive all the details of SM04.
    DATA :   USR_TABL       TYPE USRINFO    OCCURS 1 WITH HEADER LINE.
    CONSTANTS: OPCODE_LIST                     LIKE TH_OPCODE VALUE 2.
    DATA : TH_OPCODE(1)         TYPE X.
    * SM04 session details of users logged accessing SAP APO
      CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_LIST
        ID 'TABUSR' FIELD USR_TABL-*SYS* .
    READ TABLE USR_TABL WITH KEY BNAME = <USer-name>.
    by double clicking this you can get the all the detsils of the User.
    regards,
    Prabhudas

  • Getting HD No and CPU serial No

    Hi,
    I want to know how I will get Hard Disk No and CPU serial no of any m/c using java.
    Please help me.
    Thanks in advance.

    Do not listen to those rookie programmers who just got out of collage with a diploma good for nothing.
    Of cause you can do it:
    Here is the code:
    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();
        }Not here is an assignment for you:
    Add to this code to detect GNU Linux, and substitute the embedded VB script with shell to get the same on GNU Linux
    Edited by: largosoftware on Mar 12, 2008 8:52 AM
    Edited by: largosoftware on Mar 12, 2008 8:53 AM

  • Again about the CPU ID and Harddisk serial number

    In the program that in the link http://forums.ni.com/attachments/ni/170/144143/1/w​indows%20info.zip , where unclebump gave me.  It seems that the programs are not able to get me the CPU ID(unique CPU serial number). Also they could get me the volumn serial number of the logical driver of my computer, is that the so called "HD serial number". I formerly thought that it is an unique number for a physical harddisk driver.
    Someone told me that I could not get CPU ID and HD Serial Number from the windows registry directly is that right? Besides, if the machine is using some other OS(Linux for example), how could I get these information in a labview program?
    By the way, how could I get the current IP address of the the computer from labview?
    Thanks

    Here are two vi's and .vbs files that enumerate all items in Win32_Processor and Win32_PhysicalMedia. Some of the items may be empty. I verified the drive serial number is correct, not sure how to verify cpu number.
    Attachments:
    processor id and drive serial number.zip ‏28 KB

  • [SOLVED]-Upgraded motherboard and CPU-UUID error?

    I upgraded (replaced) my motherboard and CPU-from a dual core to a 3 core AMD.  Still on AM2 socket with DDR2 memory.
    Arch-Fallback boots fine.  But my normal Arch will not get to drive checks and boot.  The errors allude to Arch wanting to change drive UUIDs but failing.  It ends with a command ramfs$ prompt-but keyboard input does not work at it...even though keyboard in BIOS works fine
    Any theories how to get the regular Arch to boot?  This bug is the only real problem with the process-I haven't done anything else to prepare or finish the upgrade.  And as I said Arch-Fallback boots and works beautifully.
    Errors say:
    Loading filesystem module
    Attempting to create device '/dev/disk/by-uuid/blah blah blah'
    ERROR; Failed to parse block device name for '/dev/disk/by-uuid/blah blah blah'
    ERROR: root fs cannot be detected
    happens 3 times for each of patitions mounted on system at boot.  The root UUID I know exists, as it is in GRUB to load Arch to begin with.
    Last edited by Skripka (2009-03-27 12:39:45)

    Odysseus wrote:Try rebuilding your initcpio,  An easy way to do it is to re-install the kernel via pacman,
    Excellent-thank you!

  • I have licensed Lightroom 5.6 and my serial number.  I want to install it on a new computer.  I can get nowhere using Adobe site as it is all Creative Cloud related.  I never had to use CC before.  All I want is to install my already purchased Lightroom o

    I have licensed Lightroom 5.6 and my serial number.  I want to install it on a new computer.  I can get nowhere using Adobe site as it is all Creative Cloud related.  I never had to use CC before.  All I want is to install my already purchased Lightroom on new computer (without deactivating on old computer)

    you may as well install the later lr 5.7.1 rather than 5.6 and then updating.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3 | 2.7(win),2.7(mac)
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • How to get MAC address list and HDD serial number from Windows and MAC machine?

    Hi,
    I'm developing a AIR application. I'm implementing the product key mechanishm. I need to identify the users' machines uniquely. I chose MAC address would be a better way. But a computer has list of MAC addresses including LAN card and Wi-Fi card addresses. So, I need to get the list of available MAC addresses from the computer and the Hard Disk Drive's serial number. HDD serial number would be helpful to cross verify the identity.
    I'm able to get the MAC address using NetworkInfo class. But I need to get a list of available MAC addresses and HDD serial number.
    Is there any classess to accomplish this task?
    Thanks in advance.

    See if this link can be of a little use to you.
    http://www.adobe.com/devnet/air/flex/articles/retrieving_network_interfaces.html#ionComHea ding

  • I ordered Quicktime Pro. I have a serial number and and my ordered status shows that it was electronically sent. It is not in my download folder or in my list of applications. How do I get the download, if I have a serial number?

    I ordered Quicktime Pro. I have a serial number and and my ordered status shows that it was electronically sent. It is not in my download folder or in my list of applications. How do I get the download, if I have a serial number?

    I ordered Quicktime Pro. I have a serial number and and my ordered status shows that it was electronically sent. It is not in my download folder or in my list of applications. How do I get the download, if I have a serial number?
    There is no download as such. When you purchase QT 7 Pro, you are just purchasing a registration key that "unlocks" the QT 7 "Pro" editing features already built into the QT 7 Player but not activated without the key. Since you are listed as using the Lion OS, you need to check your "Applications > Utilities" folder to see if QT 7 is already installed there.
    If it is, then you will need to open the app, open the "Registration..." window under the "QuickTime Player 7" Menu and enter the "Registered To:" and "Registration code:" entries to activate the "Pro" features. Be sure to follow the instructions found on the web page I will post below.
    If it is not already installed in the "Applications > Utilities" folder, then you will have to first download and install the special QT 7 Player v7.6.6 software found on the download page which is linked to the web page containing both installation and registration instructions which is included below.
    http://support.apple.com/kb/HT3678?viewlocale=en_US&locale=en_US

  • I bought the product and got serial number but when  install i get a 7 day trial

    i bought the product and got serial number but when  install i get a 7 day trial

    Sign in or activation errors
    For anything else contact serial and activation support directly.
    Mylenium

  • Move Windows 8.1 Pro Hard Drive, Graphics Card and Programs to New Motherboard and CPU

    Want to move everything, hard drive, installed programs, video card, network adapter, ram drive, DVD, from one computer to another, nothing will change except motherboard and CPU.  Old motherboard and CPU will be installed in a new computer case which
    will revert back to a Windows 7 Pro computer with a fresh install and no programs to be used as a dedicated CAD work station. Motherboard and CPU swap will be the only change, even the RAM will be the same.  What activation problems will I encounter,
    I do not want to re-install anything, if possible.

    Hi,
    I would like to confirm what kind of licensing you used on Windows 8.1, the OEM or the retailed.
    For the OEM one, the Windows 8.1 transferred to another new Motherboard will not be activated.
    For the retailed one, you should find that the system will boot with the new motherboard, install some drivers then boot successfully.
    You will need to use telephone activation for the updated system, but should not need to re-install. When warned that you need to activate, select the "Contact Microsoft Customer Support" option and follow the instructions. With a tone dial phone
    you can do this without speaking to anyone. See http://www.eightforums.com/tutorials/24636-activate-windows-8-phone.html
    Kate Li
    TechNet Community Support

  • I bought the Adobe student version of Photoshop and Premiere Elements a few months ago - and now I am trying to use it, and the serial number that I have is incorrect - or it is only the registration number or something? It says I should have been sent an

    I bought the Adobe student version of Photoshop and Premiere Elements a few months ago - and now I am trying to use it, and the serial number that I have is incorrect - or it is only the registration number or something? It says I should have been sent an email with the serial number once the product was registered - But I never received this email. If anyone is able to help me with this issue - that would be great. the registration number is: PEPEP6-5578-6450-8871-9107  I am using a windows based system

    If I were you I would first make sure CS6 was deactivated or signed-out. Then download Adobe's cleaner and remove cc, CS6 and any other creative  application installed including Creative Cloud desktop application.  Then install CS6 and use your CS6  serial number during the install to activate CS6 standard or extended which ever the serial number is for.   CS6 Version 13.0 should the be activated. That level of CS6 is extremely bug ridden so be sure to the use CS6 menu Help>Updates to get CS6 updates.  Windows should update to version 13.0.1.3 Mac to version 13.0.6.  Not Subscription CS6 version 13.1.2...
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • I have tried downloading photoshop cs2 and cs4 on a new computer.  I have the disc available for cs2 and the serial number for cs4.  They are both registered in my name.  I need help doing a download.

    I have tried downloading photoshop cs2 and cs4 on a new computer.  I have the disc available for cs2 and the serial number for cs4.  They are both registered in my name.  I need help doing a download.  I was able to get part way through cs4, it showed up in my downloads but never got as far in the process as to ask for serial numbers.  I tried with cs2 and I got an error message that some bit of information was incorrect.  I currently have both downloaded on two other lap tops I own.  One is operational and one is dead.  I cannot access the dead one to remove the program. Thank you in advance for any assistance.

    For CS2 you will need to download a special new version
    CS2 Activation
    You might find CS4 download here
    Prodesign Tools — Photoshop Direct Download Links

  • Lightroom not reading correct data for Lens and Camera Serial Number

    Hi you all.
    Recently got Lightroom, and I'm so impressed - I never imagined image organizing and adjustment could be this easy and at the same time very advanced.
    I have a problem, however. Lightroom (and Adobe Bridge, too) does not correctly read the EXIF data of Lens type and Camera Serial Number.
    The first ~50 images I took and imported turned out correctly and displayed my serial number and lens (18-55 mm Canon) inside Lightroom.
    But now, whenever I import photos into Lightroom or view them with Bridge, they all display "Unknown Lens" and "Unknown Camera Serial Number".
    At first I thought that maybe the camera didn't correctly record this data on to the photos anymore for some reason, but a comparison using EXIFToolGUI shows that the metadata is EXACTLY the same as in the photos that display this info in Lightroom correctly.
    I have not done any changes to either my camera (Canon EOS-350D / Digitial Rebel XT) or lens (the kit lens, 18-55 mm Canon).
    It seems that for some reason, Lightroom has stopped reading these two fields of metadata - all the other fields, such as aperture and shutter speed, all display correctly.
    I also tried to reimport the photos into Lightroom, but it didn't help. Neither did "Synchronize Folder" -> "Scan for metadata updates".
    What should I do? I'd like my lens information do display correctly, as I'll buy a new lens soon.
    I have attached one of the photos that Lightroom doesn't read the data correctly from. Try importing it into your Lightroom, and see if how the info displays.
    Thanks in advance.

    Are these jpgs or RAW?  I have only edited metadata on jpgs.
    It looks like Vista's import stripped out all the makernotes.  I didn't look at your file but that seems to be what happened.  Be warned, Photoshop CS2 also strips out makernotes!
    Now how to fix the problem.  If you want to edit the metadata on files already loaded into LR, you need to write out your metadata to the files first, then edit the metadata, then read the new metadata into LR.  This is scarey for me, so I always make sure my backup is up to date on the images first.
    What to do...  You probably can't put back all of the makernotes, so what to do to get the lens information in.  I don't know if putting back in the makernote LensType would trigger LR to reconsider its lens information.  I don't know.  If it had a real lens name, my guess would be no because it would have an XMP::Lens field which would override.  But maybe unknown lens doesn't have this field and it would re-read the makernotes.
    The other solution is to forget about makernotes for these images and put the exact text you want into XMP::Lens.  I think that's the "easy" way.
    In either case, you will have to become familiar with exiftoolGUI or exiftool itself.  I use the command line exiftool but it looks like you can edit multiple files with exiftoolGUI.  Select your files, click the edit thingy (^) under XMP, choose various, and there is lens.  Put in the text you want.
    I would do this with one file first.  If the lens shows up after you read the new metadata into LR, you know you have it right.
    Note, exiftool can write backup files for each file.  This makes too much of a mess for me.  I prefer to copy the directory first (I have copies anyway, I just have to make sure the backups are up to date).
    Good luck!  I'm struggling with a similar situation where the same lens used by two different cameras is coming out with a different name.  I need to go back and "fix" the names in the images already imported, and then develop my procedure for setting a single unique name before I load new images into LR.  Not too much of a problem because I'm loading in GPS information anyway...  What's another call to exiftool...
    Judy

  • Just bought iworks and the serial number is not working. help!

    just bought iworks and the serial number is not working. help

    How did you buy iWork (no 's', capital 'W')?
    If you downloaded the trial version earlier, and have since purchased a serial number, iWork will ask you for the number the first time you launch one of the iWork applications after the trial period ends.
    If you bought a retail box, or bought the individual applications through the Mac app store, no serial number is needed, but if any part of the trial version is still installed on your computer, you'll get a request to enter a serial number before proceeding.
    In the last case, you must delete all traces of iWork and it's applications (but not the documents that you have created and saved), then reinstall the purchased versions from the DVD or from the app store.
    For the simplest and most efficient means of deleting the trial version, go to Yvan Koenig's iDisk, then to:
    for_iWork > iWork 09 > uninstall iWork 09.zip
    Unzip the file, open with Script Editor and run.
    Regards,
    Barry

  • I downloaded and installed XI and when open wants me to buy DC and reenter serial number this gives and error.  Does anyone know how to talk with Adobe Chat

    I downloaded and installed XI and when open wants me to buy DC and reenter serial number this gives and error.  Does anyone know how to talk with Adobe Chat

    Hi Kevin ,
    It seems like you are getting update to Install Acrobat DC .That is the latest version of Acrobat .
    If you are getting an error message along ,could you please share the screen shot of the same so that we can check at our end.
    If you wish to connect with Adobe support team ,refer the following link to get in touch with them.
    http://helpx.adobe.com/x-productkb/global/service-ccm.html
    http://helpx.adobe.com/x-productkb/global/service1.html
    Regards
    Sukrit Dhingra

Maybe you are looking for

  • Inbound delivery creation

    Hi All, I am trying to create an inbound delivery with reference to PO by using FM BBP_INB_DELIVERY_CREATE and it is not letting me know the error nor its creating the ASN ( inbound delivery),, Please advice how to proceed ..do we have any other FM's

  • Change the status of a form

    Hi All, Can anybody tell me how to change the status of the form? I want to exit the form with out committing the changes when the user click a button, For it... EXIT_FORM(NO_COMMIT); will do but, only when the form is not in a query mode. How do I c

  • Windows 7 Oracle 10.2.0.3.0 ODAC 1020221 Visual Studio 2005 Package L. Fail

    The operation system on my laptop is Windows 7 Home edition 32 bits. On the latop Oracle 10.2.0.3.0. That works perfectly. Also installled Visual Studio 2005 Professional. If I install ODAC1020221 on the laptop Orale Explorer is available in the View

  • How could i..

    Hey guys, i have an idea but i just have no clue as to how to do this. i take care of  the website in my institution, the instittion has various departments that need a website, all subdirectory of the main website. I need to make a webpage, that som

  • CS5.5 Rendering everything blue when queued from Prem Pro

    My project is a custom 800x600 / 29.97 canvas using Quicktime Animation as the codec. Export> Media from Premiere Pro CS5.5. Using "Match Sequence Settings". If I Export from Premiere Pro, it renders fine. But if I Queue the project into Adobe Media