Lsdaq reporting name changes with each reboot on OS X Tiger

I am using the PCI-6713 and PCI-6251, and I have recently ported a
DAQmx program on Windows to a DAQmx Base program on Mac OSX Tiger.
  The problem that is killing me is that on reboot the the cards
change their device names on reboot.  For example, sometimes when
I reboot the computer 6713 is Dev1 and 6251 is Dev2 but other times
6251 is Dev1 and 6713 os Dev2.  Has anyone else experienced this
problem?  Can it be fixed or is it something I have to work around?
Brandon

Brandon,
Thanks for contacting National Instruments.
I was not able to replicate this issue on a MAC OSX Tiger. I installed the PCI-6713 and PCI-6251 on the MAC and rebooted it a number of time. The device name stayed the same for the two boards. The driver that I was running on was DAQmx Base 1.5.
What version of the DAQmx Base driver are you running? Do you see the same issue on another MAC system? Are there other boards on the remaining PCI slots and are they being removed at any time?
Thanks,
Somendra
Applications Engineer
National Instruments

Similar Messages

  • Is it Possible to create a Report Name starting with M.

    HI ,
        Just Now I have created a report naming with MYreport. I have expected that system will ask the Access Key since starting letter is M . But  System allowed me to create the Report MYREPORT.
        As per My Knowledge, Only Y and Z letters for Report. But now how system allowed me to create a report starting With M without access key.
    With Regards,
    Neptune.M

    Hi,
    You can name a program with 'MZ' or 'MY'. Infact all the includes of custom module program will be having names starting with 'MZ' or 'MY'.  Try creating a program with other than these combination, the system will surely check.
    Addendum:
    For example if you create a module pool program with name
    SAPMZTEST, then the include names will be
    MZTEST_TOP, MZTEST_O01, MZTEST_I01, MZTEST_F01 and so on..
    Similarly, for Z function group sap creates dynamically creates the following programs:
    SAPLZTEST - Main program
    LZTESTTOP
    LZTESTO01
    LZTESTI01
    LZTESTUXX where X containing includes LZTESTU01,LZTESTU02 stands for 01, 02 and corresponds to function module under the function group.
    Thanks and regards,
    S. Chandramouli.
    Edited by: Chandramouli Subburathinam on May 5, 2008 2:35 PM
    Edited by: Chandramouli Subburathinam on May 5, 2008 2:42 PM

  • GRR3 report name changes when assigned to report group

    I have define report title to be "expense report" in Grr3(both short/middle/long text), but when I execute it, I assigned it to one report group, in GR53, I found the report name is changed to "cash flow report", even I removed it and insert again, it still be cash flow report,,
    The report result is fine, only the report title got this problem, anyone can solve it?

    1.Use transaction code: GRR2. 
    2.Double click on the report
    3. Click on Extras,  Report Texts and then Select Headers
    4. Define your report title under headers.
    Elias
    Edited by: Elias Akorli on Nov 6, 2009 2:01 PM

  • Powershell Name Change with If else not working as expected

    The script we've written below executes the if statement correctly and changes the name properly though the else condition is not working properly.  The example data file we  use for input is shown below and it's name is namechanges.csv
    Test,User,User1,1111,2222,[email protected]
    Test,Smith,User2,2222,3333,[email protected]
    Test,Jones,User3,3333,4444,[email protected]
    Test,Doe,User4,4444,5555,[email protected]
    Test,Example,User5,5555,7777,[email protected]
    The script shown below changes the name in Active Directory, home directory, and Exchange to a unique username and new last name (eg. maiden name needs changed to married name)
    $ADRoot = [ADSI]''
    $ADSearch = New-Object System.DirectoryServices.DirectorySearcher($ADRoot)
    add-PSSnapIn -name Microsoft.Exchange.Management.PowerShell.Admin
    Import-module ActiveDirectory
    Get-Content C:\New_Account\namechanges.csv |
    ForEach {
        $Fname = ($_ -split ',')[0]
        $nLname = ($_ -split ',')[1]
        $lname = ($_ -split ',')[2]
        $NUM = ($_ -split ',')[3]
        $ID = ($_ -split ',')[4]
        $requestor = ($_ -split ',')[5]
     $Counter = 0
    $Emp = Get-aduser -Filter {(employeeID -eq $ID)-and (EmployeeNumber -eq $NUM)}
    $SamAccount = (get-aduser -Filter {employeeID -eq $ID }).SamAccountName
    $SamAccount
    $FNAME = (get-aduser -Filter {employeeID -eq $ID }).GivenName
    $FNAME
    $LNAME = (get-aduser -Filter {employeeID -eq $ID }).Surname
    $LNAME
    $UserPrincipalName = (get-aduser -Filter {employeeID -eq $ID }).UserPrincipalName
    $UserPrincipalName
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $FNAME" "$nlname
    Start-Sleep 2
    if ($Emp -ne $null)
          $Counter = 1
       $Counter
          Do
         $F = $Fname.remove($Counter)
         $newusername = $F + $nLname
         $ADSearch.Filter = "(&(objectClass=user)(sAMAccountName=$newusername))"
         $Result = $ADSearch.FindAll()
         $t = $result.Count          
                   if ($t -lt 1)
          $FoundUniqueUserName = $True
             Else
          $Counter = $Counter + 1
          $FoundUniqueUserName = $False
       While ($FoundUniqueUserName -eq $False)  
       $newusername 
    Start-Sleep 2
    rename-adobject -identity ((get-aduser $Emp).ObjectGUID) -NewName "$Fname $nLname"
    Start-Sleep 2
    Rename-Item \\secret.com\share\home\$SamAccount $newusername
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $Fname" "$nlname
    Start-Sleep 2
    $newUPN = $newusername + "@secret.com"
    Start-Sleep 2
    Set-ADUser $SamAccount -SamAccountName $newusername -UserPrincipalName $newUPN
    Start-Sleep 5
    $Mailbox = Get-Mailbox -Identity $SamAccount
    $SMTPAddress = $Mailbox.PrimarySmtpAddress
    $Domain = $SMTPAddress.Domain
    Start-Sleep 5
    $emailaddress = "$newusername@$Domain"
    Start-Sleep 5
    Set-Mailbox $SamAccount -EmailAddressPolicyEnabled:$False -PrimarySmtpAddress $emailaddress -Alias $newusername
    Start-Sleep 5
    Set-Mailbox $emailaddress -EmailAddressPolicyEnabled:$true
    Start-Sleep 5
         $smtpServer = "mail.secret.com"
         $msg = new-object Net.Mail.MailMessage
         $smtp = new-object Net.Mail.SmtpClient($smtpServer)
         $msg.From = "[email protected]"
         $msg.To.Add($requestor)
         $msg.subject = "A name change request for $FNAME $LNAME was succesfull"
         $msg.body = "A name change request for $FNAME $LNAME was succesfull"
         $smtp.Send($msg)  
    Start-Sleep 8
    Else
         $smtpServer = "mail.secret.com"
         $msg = new-object Net.Mail.MailMessage
         $smtp = new-object Net.Mail.SmtpClient($smtpServer)
         $msg.From = "[email protected]"
         $msg.To.Add($requestor)
         $msg.subject = "A Name change request was received but the script failed to make the change."
         $msg.body = "A name change request for $FNAME $LNAME was requested with the employee id and number of $ID and $NUM. The request was not succesfull"
         $smtp.Send($msg)   
    Out-File C:\New_Account\name_change_log.txt -InputObject "At $([datetime]::now) there was a name change request for $Fname $lname-$nLname with ID of $ID and number of $NUM." -Append
    Start-Sleep 5
    #Remove-Item C:\New_Account\namechanges.csv
    Else {
    "Something went wrong"
    Can someone take a look at the code and see where I went wrong with the else statement?  Let's say hypothetically Test Smith is a common name and already exists in Active Directory in the same OU we attempt to make the username unique however if that
    fails I would like to receive the email and  update the name change in some other way.

    Well the code you presented has two issues that I can see
    You have the following
    While ($FoundUniqueUserName -eq $False)
    $newusername
    Start-Sleep 2
    rename-adobject -identity ((get-aduser $Emp).ObjectGUID) -NewName "$Fname $nLname"
    Start-Sleep 2
    Rename-Item \\secret.com\share\home\$SamAccount $newusername
    Start-Sleep 2
    Set-ADUser $SamAccount -surname $nlname -DisplayName $Fname" "$nlname
    Start-Sleep 2
    $newUPN = $newusername + "@secret.com"
    Start-Sleep 2
    Set-ADUser $SamAccount -SamAccountName $newusername -UserPrincipalName $newUPN
    Start-Sleep 5
    $Mailbox = Get-Mailbox -Identity $SamAccount
    $SMTPAddress = $Mailbox.PrimarySmtpAddress
    $Domain = $SMTPAddress.Domain
    Start-Sleep 5
    $emailaddress = "$newusername@$Domain"
    Start-Sleep 5
    Set-Mailbox $SamAccount -EmailAddressPolicyEnabled:$False -PrimarySmtpAddress $emailaddress -Alias $newusername
    Start-Sleep 5
    Set-Mailbox $emailaddress -EmailAddressPolicyEnabled:$true
    Start-Sleep 5
    $smtpServer = "mail.secret.com"
    $msg = new-object Net.Mail.MailMessage
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg.From = "[email protected]"
    $msg.To.Add($requestor)
    $msg.subject = "A name change request for $FNAME $LNAME was succesfull"
    $msg.body = "A name change request for $FNAME $LNAME was succesfull"
    $smtp.Send($msg)
    Start-Sleep 8
    Which has no open and closing brackets for the while loop, then at the end of the script you have
    #Remove-Item C:\New_Account\namechanges.csv
    Else
    "Something went wrong"
    That else has no opening If statement.....I would fix these issues first, straighten your code out a bit and see if it works then, as the no opening and closing brackets on the While loop and the extra else statement, may be giving you some issues.
    If you find that my post has answered your question, please mark it as the answer. If you find my post to be helpful in anyway, please click vote as helpful.
    Don't Retire Technet

  • New update of Firefox, now my home page keeps changing with each new session. What's the fix?

    After Firefox performed an automatic upgrade, my home page and "Restore to Default" setting changed. I can input the correct URL and save and that works fine during that session. But when the browser is closed and brought back up again, it reverts to this different home page (my companies intranet page). I've tried changing the "home page default" setting in the browserconfig.properties file and did a find and replace of the wrong URL in the "pref.js" files. But it keeps going back to the wrong address each time a new browser session is started. This all happened after an automatic upgrade was done to bring Firefox to version 3.6.8.
    This has happened on both of my work computers that run Windows XP - SP 3, IE 7.0.573 and Symantec Antivirus. So I'd think the chances of both computers being hit by the exact some problem, at the exact same time, changing the home page to the exact same URL and neither of the computers' antivirus protection catching it are rather slim. But I suppose that's a possibility. However, since this happened immediately following the browser upgrade, I have to think that this new installation has something to do with it.
    Any suggestions?

    Did you look for a '''user.js''' file in your Profile folder?
    http://kb.mozillazine.org/User.js_file
    Prefs in that file will override the same pref in the prefs.js file on each Firefox startup.
    Have you contacted your IT department about that issue?
    Maybe they are overriding your homepage setting?

  • ITunes name change with Mobile Phone

    I have a Motorola SLVR phone that I put songs on it using iTunes. My original name for the phone was long and I wanted to change it. Along the right hand side, I clicked on my mobile and renamed it. Now I am unable to add songs to it. There is a circle with a line through it when I try. The phone still has plenty of room on it to add songs. I do not remember the initial name to try to go back to. Did anyone encounter this problem and how did you resolve it? If not, any suggestions would be helpful because I tried everything I knew. Thanks.
    Gateway   Windows XP  

    Since asking the question I am getting regular updates from BT, no improvements  yet and still the message coming back is that EE are waiting  on "Parts" to repair/replace the nearest Mast to our part of Guildford. I thought the days of standing in the back garden to make or accept calls were long gone.... Hey Ho.... its called progress !! Thanks for your response

  • Url wont change with each tab

    The url stays the same in each tab even though I am looking at different sites. So if i opened up Google last then i change to another tab with hotmail the address is still Google even though I am in hotmail.
    == This happened ==
    Every time Firefox opened
    == When I installed latest Firefox

    I updated my adobe...that fixed the problem

  • Report layout changes with  the values in it

    I he a standard report, but i want certain report rows to show up in red when a value of the row is null.
    I know you have to use different templates, but how or where do i need to put the condition to change report row templates?
    Thanks

    Use multiple row/column templates (there are up to 4 available in a report template), controlling which is used via the Row/Column Template 1 Condition and Row/Column Template 1 Expression etc, depending on whether it is a named column (row) template or a generic column template.
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/themes.htm#BABFFGGJ

  • Iphoto thumbnails disappear with each reboot

    My iPhoto thumbnails disappear any time I reboot or log out of iPhoto.
    I use the rebuild command and get them back, but they don't  stay.
    Is this a problem with iPhoto or the address where the thumbnails are stored?

    My iPhoto library is in the correct location on my laptop hard drive.
    This all started with editing photos.
    I backed up to time machine, then deleted @350 photos from a recent download.
    iPhoto froze up with this, and I did a force quit.
    Re opening iPhoto came back with all black thumbnails.
    I option-command opened iPhoto and rebuilt the data, and the thumbnails.
    The photos are there, but every time I log out of iPhoto, the thumbnails are gone again, and I have to rebuild.
    So...  I restored from a journaled copy of iPhoto photos, from time machine.  The problem persisted.
    To restore however I had to move my iPhoto library (30 Gigs)  to an external hard drive because I did not have enough
    room on my hard drive to restore from time machine.
    The data is all there, but the thumbnails just won't  persist. 
    I think it is haunted.
    thanks

  • [Solved] SB Live 5.1 Sound card changes after each reboot.

    Hi
    I have SB Live 5.1 soundcard that changes it's "location" after each upgrade, and I have to do the changes manually in the different applications: xmms, vlc, xine, etc in order to have sound back.
    As you can imagine it's quite tediuos to do the changes everytime.
    And videos, radio or music, can't be heard at all from internet.
    Only when sound card is in hw: 0,0 no manually setups are not needed and sound in internet is ok.
    This is the aplay -l output when is in hw: 0,0
    play -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Live [SB Live! 5.1 [SB0220]], device 0: emu10k1 [ADC Capture/Standard PCM Playback]
      Subdevices: 31/32
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
      Subdevice #4: subdevice #4
      Subdevice #5: subdevice #5
      Subdevice #6: subdevice #6
      Subdevice #7: subdevice #7
      Subdevice #8: subdevice #8
      Subdevice #9: subdevice #9
      Subdevice #10: subdevice #10
      Subdevice #11: subdevice #11
      Subdevice #12: subdevice #12
      Subdevice #13: subdevice #13
      Subdevice #14: subdevice #14
      Subdevice #15: subdevice #15
      Subdevice #16: subdevice #16
      Subdevice #17: subdevice #17
      Subdevice #18: subdevice #18
      Subdevice #19: subdevice #19
      Subdevice #20: subdevice #20
      Subdevice #21: subdevice #21
      Subdevice #22: subdevice #22
      Subdevice #23: subdevice #23
      Subdevice #24: subdevice #24
      Subdevice #25: subdevice #25
      Subdevice #26: subdevice #26
      Subdevice #27: subdevice #27
      Subdevice #28: subdevice #28
      Subdevice #29: subdevice #29
      Subdevice #30: subdevice #30
      Subdevice #31: subdevice #31
    card 0: Live [SB Live! 5.1 [SB0220]], device 2: emu10k1 efx [Multichannel Capture/PT Playback]
      Subdevices: 8/8
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
      Subdevice #4: subdevice #4
      Subdevice #5: subdevice #5
      Subdevice #6: subdevice #6
      Subdevice #7: subdevice #7
    card 0: Live [SB Live! 5.1 [SB0220]], device 3: emu10k1 [Multichannel Playback]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: V8237 [VIA 8237], device 0: VIA 8237 [VIA 8237]
      Subdevices: 4/4
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
    card 1: V8237 [VIA 8237], device 1: VIA 8237 [VIA 8237]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    And this one when have to reconfigure:
    aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: V8237 [VIA 8237], device 0: VIA 8237 [VIA 8237]
      Subdevices: 4/4
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
    card 0: V8237 [VIA 8237], device 1: VIA 8237 [VIA 8237]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 1: Live [SB Live! 5.1 [SB0220]], device 0: emu10k1 [ADC Capture/Standard PCM Playback]
      Subdevices: 32/32
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
      Subdevice #4: subdevice #4
      Subdevice #5: subdevice #5
      Subdevice #6: subdevice #6
      Subdevice #7: subdevice #7
      Subdevice #8: subdevice #8
      Subdevice #9: subdevice #9
      Subdevice #10: subdevice #10
      Subdevice #11: subdevice #11
      Subdevice #12: subdevice #12
      Subdevice #13: subdevice #13
      Subdevice #14: subdevice #14
      Subdevice #15: subdevice #15
      Subdevice #16: subdevice #16
      Subdevice #17: subdevice #17
      Subdevice #18: subdevice #18
      Subdevice #19: subdevice #19
      Subdevice #20: subdevice #20
      Subdevice #21: subdevice #21
      Subdevice #22: subdevice #22
      Subdevice #23: subdevice #23
      Subdevice #24: subdevice #24
      Subdevice #25: subdevice #25
      Subdevice #26: subdevice #26
      Subdevice #27: subdevice #27
      Subdevice #28: subdevice #28
      Subdevice #29: subdevice #29
      Subdevice #30: subdevice #30
      Subdevice #31: subdevice #31
    card 1: Live [SB Live! 5.1 [SB0220]], device 2: emu10k1 efx [Multichannel Capture/PT Playback]
      Subdevices: 8/8
      Subdevice #0: subdevice #0
      Subdevice #1: subdevice #1
      Subdevice #2: subdevice #2
      Subdevice #3: subdevice #3
      Subdevice #4: subdevice #4
      Subdevice #5: subdevice #5
      Subdevice #6: subdevice #6
      Subdevice #7: subdevice #7
    card 1: Live [SB Live! 5.1 [SB0220]], device 3: emu10k1 [Multichannel Playback]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    Could you please tell me how SB Live 5.1 card can be fixed to hw: 0,0?
    Cheers
    Martin
    Last edited by martincho (2010-12-22 05:22:55)

    Hi
    Now it's solved following this link: https://wiki.archlinux.org/index.php/ALSA
    There found section: Set the default sound card
    Where have to change file /etc/modprobe.d/modprobe.conf
    options snd-emu10k1 index=0
    and also in /etc/rc.conf disable modules of the other sound card:
    MODULES=(!snd-via82xx)
    Tks

  • FCE media offline changes with each click

    Alright.  This is an extra weird one.
    Anyone have an explanation for this?  (video:  http://instagram.com/p/uqOE5cgAkn/?modal=true )  (my apologies for instagram but it was the easiest)
    The fun begins when some of those clips ARE actually offline (and not working in the timeline) but most of them are?  Any suggestions?

    If so, what are the advantages of:
    DVD -> Streamclip -> FCE -> Streamclip -> Web via Flash
    over:
    DVD -> Handbrake -> iMovie -> FCE -> iMovie -> Web via Flash
    Anything other than one less step, and not having to deal with iMovie clunkiness?
    Generally when working with digital video, it is the case that the less steps you take to get your video from the source to your final creation the better. Every time you use a program such as Streamclip or Handbrake to convert your media, you are losing a little bit of quality doing so. Secondly, Handbrake should really never be used as a conversion program to prepare your video for editing. It is meant to convert to delivery codecs such as MPEG-4 and not to prepare the video for more editing. Ideally, the best editing process for your workflow would be:
    DVD -> VOB files to Streamclip -> converted files to FCE -> use Quicktime Conversion to make a web friendly video -> Web.
    Anyway, glad the crisis was averted and you're getting used to the new OS/program! I wish you luck with all future projects, and if you need more help we'd be happy to offer assistance.

  • Losing two settings from UltraNav with each reboot

    Every time my X220 reboots, I lose settings for Momentum/glide and Slow Motion (they become unchecked). Sleep and hibernation do not affect settings, only reboot. Driver used is 16.2.14.0.
    Anyone else have this issue?
    Solved!
    Go to Solution.

    I am not sure the cause of this problem, and I cannot reproduce it here, but could you please check to see if you have software called "RapidBoot Shield" installed on your system, and if so, uninstall it?  It could potentially cause this type of problem.

  • How do I change stills with each menu item selected?

    Hi all.
    I am trying to create a menu (with 10 items) which contains one single dropzone box, which will contain a still that changes with each menu item selected (instead of 10 different stills next to each item).
    I have absolutely no idea how to achieve this! Do I create a different menu for each item? Is there a way to have a slideshow within the menu that changes with each item selected?
    Please help!
    Many thanks
    James

    THe way to do what you want to do is layered menus which have some limits
    http://dvdstepbystep.com/layersover.php
    What you would do is change the item that appears in the same section - in other words there would be ten layers with a diffrerent picture in the same exact spot, the rectangle buttons sections do not need to be over the picture section
    http://dvdstepbystep.com/Layers_Example.dmg is a project that does changing images.

  • Need SRM BW Vendor Evaluation Report Names with format

    It would be really appreciable if someone can share the SRM BW Vendor Evaluation Report Names along with the format.
    Cheers,
    Sheetika

    Hi Sheeetika,
    please check here..
    http://help.sap.com/saphelp_nw70/helpdata/en/42/de4c7e2f842cede10000000a1553f7/content.htm
    hope this will help you.
    Thanks,
    vijay.

  • I want a fresh load with each reload not a page from history i need my changes to show up each time i load a page

    I am a web designer and need to be able to reload the entire page fresh each time i make a change so i can test things i just changed on the website how do ni make this happen this was not an issue in the past but now the banners on the site stay the same and they should change with each reload

    If you hold the Shift key when you reload (e.g., Ctrl+Shift+r) then Firefox should disregard cached files and re-request everything.
    Are you changing the banner URL to prevent use of a cached banner?

Maybe you are looking for

  • Problems after updating to iOS 8.1.3

    Not so long ago I have update my iPad air 2 to iOS 8.1.3, before that I haven't this kind of problems with the rotation of the screen, sometimes my iPad just stop working and I have to restart it. I don't know why it happend. How can I fix it ?

  • Warning on activation of iPad

    I bought my wife an iPad Mini for Christmas. Since we are not going to be home at Christmas time when I give it to her, I activated it on her computer and loaded all the apps from her first generation iPad. Unfortunately, Apple sent a congratulatory

  • HP 4600n Color Laser Jet

    When powering up the HP 4600n color laser jet printer, it stops at 64mb************* What does this mean

  • My app folders keep dissapearing or the app go back and fill the screen out of the folders

    My folders keep dissapearing, not all but a lot.  sometimes the apps fill up the sreen after the folder leaves other times I cannot find them.

  • Migration failed 10.8.1 fresh install

    what goes on with this .... ?! downloaded 10.8.1 from appstore, did a fresh install and after reboot and different windows the migration-window came, now i choosed "another volume" (same mac) the volume is shown, next window counts the gb's and after