Cannot update firmware on specific computer

I've been having problems updating the firmware on my iPhone4 (and my friend's iPhone4) on my MacbookPro.
I've had this problem since I've gotten my iPhone 4 with firmware 4.2 trying to update to 4.2.1, 4.3, 4.3.1 and now 4.3.2.  What I've had to do was update my iPhone 4 with my iMac and then restore from backup on my MacBook Pro.  (this was one of the workarounds that Apple suggested on their knowledge base). 
The strange thing is, I can update my iPhone 3GS with this MacbookPro just fine.  But not iPhone 4.
I've tried to uninstall and reinstall iTunes... with no luck.
Symptoms:
When trying to update previously, the iTunes will delete the old firmware and try to install the new firmware.  The process would hang at installation of the new firmware.  The iPhone would display the picture that I should connect the iPhone to the computer for update.  When it tries to install the firmware package, it would just error out and go back to the picture.
Now with the newest 4.3.2, iTunes won't even delete the old firmware from the phone.  It would have the message saying something along the line that the firmware isn't compatible with this iPhone.  But... I can take the same firmware from my MacbookPro to my iMac and it would update just fine.
Anyone has ideas why this is happening and how I can fix it?  I'd really like to be able to just rely on my MBP especially since I'm on the road a lot.
Thanks.

I have had similar problems.  Here is what I found.  Not all USB ports are powered.  Apple apparently (rightfully) thinks that when doing a major firmware update that the unit should be powered. I tried different USB ports until I found a "hot" one (charging indicator comes on on the phone) and use that one all the time.  So far, so good.

Similar Messages

  • I cannot uninstall itunes from my computer PC. I cannot update itunes on my computer. I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package

    I cannot uninstall itunes from my computer PC. I cannot update itunes on my computer. I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package Try to find the installation package itunes.msi in a folder from which you installiTunes."
    I have tried a serach for the file itunes.msi and nothing comes up.
    Help anyone/
    thanks

    I get this message." C:\Documents and Settings\Sally-Anne\Local Settings\Application Data\Apple\Apple Software Update\'iTunes.msi' is not a valid installation package Try to find the installation package itunes.msi in a folder from which you installiTunes."
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Report for InstallDate of Security Updates on a specific computer

    Hello everyone!
    There is a way to show the installation date of security updates installed on a specific computer ?
    For listing all updates I found in ConfigMgr reports under "Software Updates - A. Compliance" a report: "Compliance 6 - Specific Computer" but the problem is that when is listed in web reports this doesn't contain a column with installation date. I tried
    to modify it to add another column, but my knowledge in ms sql is very poor.
    Can you help me to modify the code below and add the Install Date column for the security updates?
    declare @RscID int; 
    select @RscID=ResourceID from v_R_System where ((Name0 = @MachineName) and (Active0 = 1));
    select 
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
                ui.BulletinID as BulletinID,
                ui.ArticleID as ArticleID,
                ui.Title as Title,            
                Targeted=(case when ctm.ResourceID is not null then '*' else '' end),
                Installed=(case when css.Status=3 then '*' else '' end),
                IsRequired=(case when css.Status=2 then '*' else '' end),
                Deadline=cdl.Deadline,
                ui.CI_UniqueID as UniqueUpdateID,
    ui.InfoURL as InformationURL
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID 
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company' 
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID 
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification' 
    left join v_CITargetedMachines ctm on ctm.CI_ID=css.CI_ID and ctm.ResourceID = @RscID
    left join (
                            select atc.CI_ID, Deadline=min(a.EnforcementDeadline) from v_CIAssignment a
                            join v_CIAssignmentToCI atc on atc.AssignmentID=a.AssignmentID
                            group by atc.CI_ID) cdl   on cdl.CI_ID=css.CI_ID
    where  css.ResourceID = @RscID 
    and ((css.Status=2) or (css.Status=3))
    and (@Vendor = '' or catinfo.CategoryInstanceName = @Vendor)
    and (@UpdateClass = '' or catinfo2.CategoryInstanceName = @UpdateClass)
    order by catinfo.CategoryInstanceName, catinfo2.CategoryInstanceName, ui.ArticleID
    And maybe you have some link to ms sql tutorials and links to the free sql editing tools. 
    Another question: Is possible to find when a sccm client comunicate for the first time with the server?(Different from the installation date)
    Thanks in advance. Good day!

    Emilian, not sure if you found an answer to this yet but I think this will give you what you need.  LastStatusChangeTime is essentially the InstallDate if the patch was actually installed.  If it was never installed, it will give you
    the last time the update scan was run.
    select
    catinfo
    .CategoryInstanceName
    as Vendor,
    catinfo2
    .CategoryInstanceName
    as UpdateClassification,
    ui
    .BulletinID
    as BulletinID,
    ui
    .ArticleID
    as ArticleID,
    ui
    .Title
    as Title,
    Targeted
    =(case
    when ctm.ResourceID
    is
    not
    null
    then
    else
    end),
    Installed
    =(case
    when css.Status=3
    then
    else
    end),
    IsRequired
    =(case
    when css.Status=2
    then
    else
    end),
    UCSA
    .LastStatusChangeTime,
    Deadline
    =cdl.Deadline,
    ui
    .CI_UniqueID
    as UniqueUpdateID,
    ui
    .InfoURL
    as InformationURL
    from
    v_UpdateComplianceStatus css
    join
    v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join
    v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join
    v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID
    = catinfo.CategoryInstance_UniqueID
    and catinfo.CategoryTypeName='Company'
    join
    v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join
    v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID
    = catinfo2.CategoryInstance_UniqueID
    and catinfo2.CategoryTypeName='UpdateClassification'
    left
    join v_Update_ComplianceStatusAll UCSA
    on css.CI_ID=UCSA.CI_ID
    and css.ResourceID=UCSA.ResourceID
    left
    join v_CITargetedMachines ctm
    on ctm.CI_ID=css.CI_ID
    and ctm.ResourceID
    = @RscID
    left
    join
    select atc.CI_ID,
    Deadline=min(a.EnforcementDeadline)
    from v_CIAssignment a
    join v_CIAssignmentToCI atc
    on atc.AssignmentID=a.AssignmentID
    group
    by atc.CI_ID)
    cdl on cdl.CI_ID=css.CI_ID
    where
    css.ResourceID
    = @RscID
    and
    ((css.Status=2)
    or
    (css.Status=3
    and
    (@Vendor
    =
    or catinfo.CategoryInstanceName
    = @Vendor
    and
    (@UpdateClass
    =
    or catinfo2.CategoryInstanceName
    = @UpdateClass
    order
    by catinfo.CategoryInstanceName,
    catinfo2.CategoryInstanceName,
    ui.ArticleID

  • Cannot update firmware in e61

    Hi
    I cannot update my e61 firmware with Nokia updater program.
    current one is:
    1.0610.04.04
    19-04-06
    RM-89
    the number behind battery is:
    0536127
    I also updated the pc suite but it didn't help.
    also I had some proplems in seminar, i tried to hook in wlan which was in our use but the phone constantly reboot itself.
    HELP!!!Message Edited by lemtz81 on 23-Nov-2006
    06:40 PM

    13-Aug-2008 10:01 AM
    smarteee wrote:
    Although a 3rd option has presented itself since my original post and is becoming more attractive - Get my phone unlocked/wiped or hack the phone and change the product code.
    That particular operation cannot be discussed on these forums since it voids your warranty.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Where can I find detailed instructions for adding updated firmware from my computer to my Canon 6D?

    I have downmloaded the latest firmware for my Canon 6D to my computer. I cannot find detailed instructions to add the firmware to my camera. Do I use the USB port and cable from the computer to the camera? It must be simple but I cannot seem to find instructions and I do not want to make a mistake.
    thank you

    From the download site:
    Firmware changes:
    Firmware Version 1.1.4 incorporates the following fixes:
    1. Fixes a phenomenon in which some images cannot be transferred to mobile devices running the EOS Remote app.
    2. Corrects an error in the German language Feature Guide.
    3. Corrects an error in the Korean language Feature Guide.
    Firmware Version 1.1.4 is for cameras with firmware up to Version 1.1.3. If the camera's firmware is already Version 1.1.4, it is not necessary to update the firmware.
    Please note:
    After the firmware update has been performed the following setting will be reset to default.
    Menu > Custom Function> C.Fn II: Autofocus > AF Microadjustment> 1: All by same amount
    When updating the firmware of the camera, please review the instructions thoroughly before you download the firmware.
    Q&A:
    Preparations for a firmware update:
    Windows
    After the downloaded compressed file (.zip file) is extracted, a firmware folder is created.
    *Extracting the downloaded file:
    Right-click the zip file, and then select Extract All to extract the file.
    The extracted folder contains the firmware (File name: 6D000114.FIR, File size: 21,276,940 bytes) and instructions on the firmware update procedures (a PDF file in five languages: Japanese, English, French, Spanish, and Simplified Chinese).
    Before starting the firmware update operations, please confirm the contents of the download, and carefully read through the firmware update procedures.
    John Hoffman
    Conway, NH
    1D Mark IV, Rebel T5i, Pixma PRO-100, MX472

  • Cannot update firmware on MFP M125NW

    Trying to update an MFP M125NW with the latest firmware.
    Printer is connected and online both via network and USB.
    Get the message:
    Problem Found
    HP Device Update Cannot Proceed
    1. Check that your device is:
    - Connected to your computer (it is as a stated above)
    -  Powered On (yes and I have cycled the power several times)
    - Not in an error state (it isn't).
    2. Clear any error states (there aren't any)
    3. Click Start Again (I have many, many times).
    Anyone have any constructive suggestions ?
    I have already tried running the update program as administrator and that made no difference.

    Reluctantly did a full reinstall of software and drivers with latest available download. 
    Yet again went through the great joy of having to disable all non essential services to allow the install process to work. Never had to do that for any other printer. 
    Printer now connected wirelessly as suggested.
    Still point blank refuses to install the firmware update.
    It is shameful that a company the size of HP with vast resources cannot issue an update that is easily installed. 
    Can someone please provide some constructive advice to resolve this issue?

  • Help!!!Cannot update firmware N95 v20 to v21

    Could anyone help me with this problem
    i've installed NSU and nokia pc suite(all latest..)
    i've plug the my n95(v20), detected by PC suite...
    i run NSU,, detected,,, and downloaded v21 firmware for n95 (112mb)..
    after it finished downloading, when it try to install it.. it says
    "Downloading update failed"
    "internal module error"
    maybe i didnt read the instruction about change profile to general..
    i changed it to general, the problem still the same...
    okay maybe after i didnt change profile there is some file left in my phone.. so i decided to soft n hard reset.... and i connect again... still showing the same problem, after it finished download...
    so i used my other computer(maybe there is some problem with my vista), so i used my XP...
    and it still showing the same problem..
    i've used that msxml4 solution, but it still didnt work...
    Please help me....

    28-Mar-2008 01:07 PM
    blue_panther9_9 wrote:
    Could anyone help me with this problem
    i've installed NSU and nokia pc suite(all latest..)
    i've plug the my n95(v20), detected by PC suite...
    i run NSU,, detected,,, and downloaded v21 firmware for n95 (112mb)..
    after it finished downloading, when it try to install it.. it says
    "Downloading update failed"
    "internal module error"
    maybe i didnt read the instruction about change profile to general..
    i changed it to general, the problem still the same...
    okay maybe after i didnt change profile there is some file left in my phone.. so i decided to soft n hard reset.... and i connect again... still showing the same problem, after it finished download...
    so i used my other computer(maybe there is some problem with my vista), so i used my XP...
    and it still showing the same problem..
    i've used that msxml4 solution, but it still didnt work...
    Please help me....
    28-Mar-2008 01:07 PM
    blue_panther9_9 wrote:
    Could anyone help me with this problem
    i've installed NSU and nokia pc suite(all latest..)
    i've plug the my n95(v20), detected by PC suite...
    i run NSU,, detected,,, and downloaded v21 firmware for n95 (112mb)..
    after it finished downloading, when it try to install it.. it says
    "Downloading update failed"
    "internal module error"
    maybe i didnt read the instruction about change profile to general..
    i changed it to general, the problem still the same...
    okay maybe after i didnt change profile there is some file left in my phone.. so i decided to soft n hard reset.... and i connect again... still showing the same problem, after it finished download...
    so i used my other computer(maybe there is some problem with my vista), so i used my XP...
    and it still showing the same problem..
    i've used that msxml4 solution, but it still didnt work...
    Please help me....

  • N86- cannot update firmware to v30

    i keep receive this message.
    installation failed. the connection to the device was lost. make sure the USB cable is connected directly to the computer and try installation again. if your device does not start, try recovering the device by following the instructions in the nokia ovi suit help.

    When a new device update is available, the software update is downloaded to your computer automatically. You can use Nokia Ovi Suite normally while the download is ongoing. From Tools > Options > General you can define whether you want automatic downloads to take place.
    Note:
    You need to have an active internet connection for Nokia Ovi Suite to be able to download the software updates to your computer, as well as install the updates on your device.
    If you are connected with a modem, the automatic download is not active by default. You can still download the software updates manually. Take into account that this might cause higher data transfer costs.
    Good to know about installing the device software updates
    To be able to install device software updates, you need to be signed in to your Nokia account. To sign in, or if you do not have a Nokia account yet, click Sign into Ovi in the Nokia Ovi Suite top navigation bar.
    If your device is connected via Bluetooth, switch the connection to a USB cable.
    If you have encrypted your memory card, decrypt it prior to updating your device software. If you do not decrypt the memory card, it cannot be accessed anymore after the update has been installed. After decrypting the memory card, you can update your device software normally.
    When the opportunity to make a backup comes during the wizard, it is recommended that you make the backup to minimise the possibility of losing any important data. Content such as your contacts, calendar and messages are always included in the backup
    Note:
    If you have any device applications you have installed yourself, such as games, it is very advisable to make a backup of your device content, because the applications might not work after the update.
    You cannot cancel the software installation once it begins. Note that if the phone recovery window opens during the device software installation, do not try closing it but follow the on-screen instructions.
    Warning!
    Do not disconnect your device during the installation in order to avoid loss of information and device malfunctions!
    After the installation of the software update is complete, the wizard proceeds to the restoration of the device content. Here the possible scenarios are:
    If you made a backup earlier during the wizard, the content of that backup file is automatically restored to your device.
    If you did not make a backup during the wizard, but you have older backup files on your computer, you can restore the content of one of those. In this case you can choose which backup file to use.
    If my post helped you, click on Kudos button and if my solution provided is opt 2 u, accpt my solution

  • N95 cannot update firmware in Australia?

    Hi,
    I have a Nokia N95 purchased on 7th August 2008 from Telstra Australia on a 24 mth contract. Firmware is V10.2.006, I would like to update the firmware to the latest version to hopefully iron out a few bugs and generally speed this thing up. However, when trying to update via a PC/USB through the Nokia updater application I keep receiving the message that my firmware is already up to date. It quite obviously is not, research has indiacted it is V21 or later. Can somebody please explain why this service is not available to me?
    Thanks all,
    Smarteee.
    Solved!
    Go to Solution.

    13-Aug-2008 10:01 AM
    smarteee wrote:
    Although a 3rd option has presented itself since my original post and is becoming more attractive - Get my phone unlocked/wiped or hack the phone and change the product code.
    That particular operation cannot be discussed on these forums since it voids your warranty.
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • How to deny an update on a specific computer?

    One of our computers at the floor is receiving update: KB3008923
    Breaking some thrid party application, the update is received via a downstream server, but this server receives the updates from a higher level server, the main upstream server at the corporate
    offices.
    how can i deny or avoid this computer from receiving this update? is it possible to set a rule on a specific machine from receiving this?
    Thank you.
    Thank you.

    how can i deny or avoid this computer from receiving this update?
    Create a child group of the WSUS Target Group that normally holds this computer.
    Explicitly set the update to NotApproved for that child group.
    MOVE the computer from the parent group to the child group.
    The computer will continue to inherit all approvals from the parent group, except for the update(s) that have been explicitly overridden for the child group. When the need no longer exists, move the computer back to the parent group and delete the child
    group.
    Lawrence Garvin, M.S., MCSA, MCITP:EA, MCDBA
    SolarWinds Head Geek
    Microsoft MVP - Software Packaging, Deployment & Servicing (2005-2014)
    My MVP Profile: http://mvp.microsoft.com/en-us/mvp/Lawrence%20R%20Garvin-32101
    http://www.solarwinds.com/gotmicrosoft
    The views expressed on this post are mine and do not necessarily reflect the views of SolarWinds.

  • Cannot Update Firmware On Zen 8GB MicroPh

    One day I went to listen to my Microphoto to find that it had entered into RECOVERY MODE. I didnt touch it for a week only to plug it into my computer and find that it didnt even read it. The computer said that my zen wasnt plugged in when it really was. I emailed Creative for assistance, but since I'm conveniently out of warranty, it's too much to ask for an EMAIL explaing what I should do. I read countless, very HELPFUL posts here, and eventually got my computer to read the Microphoto for my firmware update, but when I came to update my firmware, it would get close to being finished and it would say FIRMWARE UPDATE FAILED! I dont know what to do! Can ANYONE help me?

    I forgot to mention that after you reinstall the firmware, you must reboot. FWI, here is the entire set of steps I went through to solve this problem on my Touch 20GB:?There is an earlier?topic?"Stuck in recovery mode, during firmware upgrade. Help!!" and I read every single one of them(I know, I need to get a life). Well, I finally solved the same problem you have. My player is a Touch 20GB but the fix may also work for yuors. Creative gave an official response(undoubtedly in response?to many of the?pleas from forum participants)in post #95, and here it is:. Uninstall all Creative software & drivers including the Zen in Device Manager
    2. If you have Windows Media Player installed then uninstall both it
    and Windows Media Player runtime (will require a reboot for each
    process). This is done by going to the Add/Remove programs and
    uninstalling (This will put your PC back to WMP0)
    3. Re-install the Zen Touch drivers from the creative website and reboot
    4. Plug the Zen Touch in.
    5. Make sure you have the firmware update ready, run it but do not click
    on the language bit yet, leave the mouse hovering over your language
    selection.(not sure if this was a necessary step)
    6. On the Zen Touch's Rescue Mode, select "Reload OS"(or on my player, "reload firmware"<img width="6" src="http://forums.creative.com/i/smilies/6x6_smiley-wink.gif" height="6[/img]
    7. As soon as it flashes up "Reload new firmware now via USB" click the
    language button
    8. The PC should find it and allow you to re-load the firmware. (This
    may take a few attempts)
    9. Once complete, click close and restart the pc. .
    They say the problem is with having Windows Media Player(WMP) on your PC when you do the firmware upgrade. When I rolled back WMP to the previous version(WMP 9), the above fix didn't work. After countless tries, for some strange reason, I decided to install WMP 0 and repeat the instructions. It finally worked!?
    Hope this will work for you. Let me know.

  • 6680 Cannot update firmware

    AMigos
    I have tried updating my firmware from ver 4.0.04 to no avail using the Nokia software updater. It will make my screen dead and then later on, the Nokia updater will say my phone has not been updated. What gives?

    I had the same problem with my 6680, so I went to the location where I purchased it and they updated the software (It really needs to be done for the phone to work properly, I had nothing but aggravation until I update the software/Firmware). My retailer Installed Version 5.04.07 15-20-06 RM-36 (Nokia website only has a version 4xxxxx). Since this was done my phone has been a joy to use, in fact I used to purchase a phone every 6 month, I've had this 6680 for over a year and I have no desire to exchange it. Since the software update it works like a dresm... So go to the retailer you purchased your phone from, they have to be able to update the software/Firmware and by the way my retailer, "Kings" of Longford/Roscommon Ireland (an authorized Nokia/.Vodafone dealer) DID NOT Charge me a penny for updating the software... Some food for thought. I hope this is of some help....
    Jdeehere

  • NMH305 - Cannot update firmware

    Dear Support,
    Last week I have acquired the Linksys MediaHUB NMH305. After unpacking and following the instructions I start looking around on the web interface.
    While doing that, I also checked the website and saw that new firmware was available.
    When I matched my current firmware version with the new available, I saw that my HUB was seriously out of date, so I decided to upgrade my version via the webinterface.
    Current Version FW: 2.17.8
    So in the browser, I went to configuration, typed in my password and below it says:
    Firmware Update:
    Latest Firmware Version:
    And a big button with "Update" on it. So I pressed the button and the interface said that new firmware was available.
    When I pressed Update, nothing happens untill the webinterface came back with the following notification:
    "Error - Result"
    Firmware Upgrade has encountered an error.
    Upgrade Aborted!
    While contacting my local support, they suggested that I reset my devive (Reset button + 40sec) and reconnect to it again and update it again.
    Unfortunately, there was no success.
    The way I have setup my LAN environment is, that I have a router where my NAS and PC's are connected to.
    The NAS is working fine while my other PC's can access internet without any problems.
    I hope you can answer my questions:
    - Why can I not update my NAS via the webinterface?
    - Are there any ports, that needs to be forwarded or opened on my router?
    - Is there a way to manually upgrade my HUB?
    For the rest, the NAS is working fine, I can move my files to it, access it and FTP is working too.
    But I saw in the release notes many improvements which I would like to have as well but unfortunately I am on the initial/ga release of the firmware
    Please help
    Thanks in Advance
    Bests
    Paul

    Btw, I have been reading through the forum and encountered a smiliar topic mentioning the same error as I have.
    The fix for that person, was to change his DNS to the IP address of the router.
    When I checked mine, I saw that the first DNS server was pointing to my router while the second was directed to my ISP's DNS.
    So I unchecked the "enable dhcp" and fill in both my ISP's DNS IP Adresses and still no result.
    The weird part is that, when I press update it sees that new firmware is available but when it tries to download, it comes back with the error.
    Greets
    Paul

  • Cannot update firmware on a brand new Airport Express

    I just got a AirportExpress base station to extend the wireless range of my Airport Extreme (Gigabit Ethernet). I hooked everything up and configured my network. I ran the firmware update for the AExtreme and it worked. For some reason the same thing can't be done on the Airport Express. The updater just idles for a while and returns an error code (-6722).
    How do I fix this.
    Any help is greatly appreciated.

    OK, you have proven to yourself that you are not losing speed over Ethernet.
    Wireless is half science and half voodoo.
    Sometimes, having a laptop very close to a wireless router will overload it, causing a drop in speed.
    There may be a "hidden" network at a house near you, which is causing interference. This will not show up on most scanners
    Could be a cordless phone in the area causing difficulty. Won't show on a most scanners.
    Could be a wireless camera/security system at a house nearly causing some issues. Won't show on most scanners
    Could be a USB3 hard drive doing the same
    Could be a BlueTooth device.....wireless mouse, keyboard, headphones....doing the same
    Could be gremlins.  I have them here at times.
    You could try another Express.  Might be better, might be worse. Expect anything.

  • Cannot update firmware on Sun Ray 170

    Hi all,
    I need to update the firmware on a Sun Ray so I get the GUI firmware, as I need to enter the server IP manually.
    I run this:
    /opt/SUNWut/sbin/utfwadm -AaV -f /opt/SUNWut/lib/firmware_gui -u
    and get the output:
    CoronaP1 GUI4.0_48_2007.08.01.15.48
    CoronaP2 GUI4.0_48_2007.08.01.15.48
    CoronaP3 GUI4.0_48_2007.08.01.15.48
    CoronaP4 GUI4.0_48_2007.08.01.15.48
    CoronaP5 GUI4.0_48_2007.08.01.15.48
    CoronaP6 GUI4.0_48_2007.08.01.15.48
    CoronaP7 GUI4.0_48_2007.08.01.15.48
    SunRayP8 GUI4.0_48_2007.08.01.15.48
    and then this:
    /opt/SUNWut/sbin/utfwload -HalL
    For this command I get the output:
    Upgrading units to version GUI4.0_48_2007.08.01.15.48:
    DISP User IP Address Model.Mac Firmware Version
    3.0 ???? 192.168.201.230 OEMRayP7.0003bad74e7b MfgPkg_3.32,nocrypt-03,REV=2005.06.03.15.20
    And the Sun Ray shows it firmware update icon for a second, and then display a pink/purple bar along the top of the screen, on causing the screen to refresh, by for example logging in, the pink bar goes away. The Sun Ray is left unupgraded however.
    Anyone have any ideas?
    Thanks
    Garry

    I have had no trouble in the past upgrading firmware.
    After the initial utfwadm command I do a utfwsync. This will force a download of the firmware but will disconnect all users.
    Then afterwards I check the firmware on the sun ray client with the usual ctrl-V and Pause key.

Maybe you are looking for

  • Safari doesn't recognize http addresses

    When I input: http://www.devon-technologies.com/files/academy/devonthink/videos/videotutorial- 1.mov to safari, I get the error message: Safari can't open "http://www.devon-technologies.com/files/academy/devonthink/videos/videotutorial- 1.mov" becaus

  • Duplex Printing in Reports 3.0

    I am trying to print a report on both sides of the paper, using Reports 3.0. I have no problem doing this with Reports 2.5. The printer properties have been set properly, so it must be the report. Any ideas would be greatly appreciated. thanx Some de

  • Not permitting time period to be overlapped....

    Hi , I have the following table..in Oracle10g Standard Edition: SQL> desc ref_dikaioum_meres_ektos_edras; Name                          Type      Nullable Default Comments SEQ_CODE_DIKAIOUM_EKTOS_EDRAS NUMBER(5)                           SEQ_CODE_ERG

  • Get Managed bean name while running tests.

    hi, while running web application,i can able get managed name. but how to get managed bean name while running unit tests. thanks siva

  • Windows XP will not update to latest version of iTunes, any ideas

    iPhone will not connect to PC (Windows XP) because PC requires 11.1 or later.  When I try and install the latest download it states "the feature is on a network resource that is unavailable, enter an alternate path to "iTunes.msi".  What does this me