Bridge can not work on Windows XP guest

PROBLEM DESCRIPTION:*
The guest can not obtain an IP address when configured as "Bridge" : Connectivity is limited or null.
When configured as "NAT" it works properly, with DHCP assigning an IP.
PLATFORM DESCRIPTION:
Oracle VM VirtualBox 4.0.10
Host: Windows XP SP3. Core 2 Duo. 3GB RAM. 2.53GHz. HP6930p
Guest: Windows XP Home Edition.
ACTIONS TAKEN:
Uninstall-Reinstall Oracle VM.
12.5.5 Bridged networking adapters missing:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Network\MaxNumFilters: not found in registry
%windir%\setupapi.log: "ROOT\SUN_VBOXNETFLTMP\0005" installed correctly.

I have and issue with that too.
I am unable to view WMP files from the internet -
wired. Worked fine with the old router but when the
ABEn was installed. lost abbility to view them. Works
fine on my Mac Laptop 10.4.9 - wireless.
Like:
http://www.med.wayne.edu/news_media/streamingmedia/som
events/student_affairs.asp

Similar Messages

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • HT3986 I installed windows 7 to my macbook pro, but my mousepad does not work in windows 7 and also i can not connect my windows 7 to projector, but i can use my macbook's mouse pad and i can connect my mac to projector,so please help me for windows 7 pro

    I installed windows 7 to my macbook pro, but my mousepad does not work in windows 7 and also i can not connect my windows 7 to projector, but i can use my macbook's mouse pad and i can connect my mac to projector,so please help me for windows 7 problem

    i try to download now, do you think when i download and install the windows support software, can i fix the problem?

  • Better privecy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers?

    Question
    better privacy does not work with windows vista home prem. what other program removes LSO'S AND HOW can I stop trackers? edit
    Details

    As a temporary workaround, I believe this Adobe management page allows you to clear your "Flash cookies": [http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html Adobe - Flash Player : Settings Manager - Website Storage Settings panel] (hosted on macromedia.com -- Macromedia was the original developer of Flash).
    Regarding the script error, if I'm reading the script correctly, it is related to accessing your Flash cookies directory. It seems the publisher's support forum is not currently available for searching, but that might be a good next step.
    In the meantime, could you check whether the script has the correct location for your Flash cookies directory? If you can't access Tool > BetterPrivacy, you could check here:
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''bpr''' and pause while the list is filtered
    (3) There should be a bolded setting named '''extensions.bprivacy.DataDir''' which looks approximately like the following:
    C:\Users\''yourWindowsUsername''\AppData\Roaming\Macromedia
    Do you have a similar value? If you paste the path used by BetterPrivacy into a Windows Explorer window, does it open? Also, click a couple levels in the folder, can you see:
    Flash Player \ #SharedObjects
    If the value is wrong, right-click the wrong value and choose Reset. BetterPrivacy should update the value the next time you try to access it.
    If the value is blank, you could try inserting a sensible value and see whether that helps.
    Any luck?

  • The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RA

    The RAW setting in Bridge is not working. When I open Bridge I can see only icons, no images. The RAW tool icon is grey, not active. I am going on a trip Tomorrow and I need Bridge to be working. It was working earlier.

    I never notied that icon before, and I've been using Bridge for 7 years.
    Usually, when you have no image previews for raw files, this means that your Camera Raw plug-in is older than your camera. People always come across this problem when they use a new camera with older software.
    To be sure, we need to know which camera you are using, and which version of Camera Raw. To save typing this out for the three-thousandth time, please follow this page which I wrote earlier:
    http://yphotography.co.uk/articles/get-adobe-camera-raw-acr-open-photos/
    This covers the subject, which is by far the most commonly asked question about opening raw files by a country mile.
    If everything checks out fine, let us know. If not, give us more information and we may be able to fix this for you.
    PS. Please just open one discussion per problem. There are three threads on this now. It makes it difficult to follow.

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

  • Web Service Client(Console App) not working on Windows Server 2008 R2 Standard Edition

    I am trying to consume an ASMX Web Service in a console app, its working fine in Windows 7,Windows Server 2012 Standard,Windows Server 2008 R2 DataCenter,Windows Server 2008 R2 Enterprise, But its not working in Windows Server 2008 R2 Standard Edition which
    is the deployment server.
    I tried consuming the ASMX web service using Web Reference and Service Reference as well but its not helping. Its throwing up the following error,
    Message:There is an error in XML document (1, 331491).
    Inner Exception : System.Xml.XmlException: '.', hexadecimal value 0x00, is an invalid character. Line 1, position 331491.
    The scenario is that i call the web service and it returns me an XML i am not able to receive the XML on Windows Server 2008 R2 Standard Edition.
    Please provide suggestions on this I need to resolve this ASAP.

    Hi,
    This question is better asked here:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=asmxandxml
    Experts here are more familiar about it and they can give you more efficient suggestion.
    Thank you.

  • ITunes 9 Home Sharing does not work on Windows 7 x64

    iTunes 9 Home Sharing does not work on Windows 7 x64.
    Getting the following error message:
    Home sharing could not be activated because this computer is not authorized for the account "iTunes account." Please authorize this computer and try again.
    This is a bug since my computer is authorized in iTunes and there is only 2 computer authorized for my iTunes account, so I have 3 more left till I should get this message.
    I've just upgraded my iPhone to OS 3.1 using it this morning.
    Please advise.
    Environment: Windows 7 x64, HP TouchSmart tx2-1020us Notebook
    Ivan Farkas
    <edited by host>

    I am using Windows 7 x64.
    I am running iTunes 9.0.2.25
    I am running Mcafee.
    I can see and play music from the iTunes installation on my Windows 7 machine, but I CANNOT access the library to copy songs from this computer to other computers on my network.
    YES, I have enabled "Home Sharing" using my iTunes account. NO, I have not authorized more than 5 computers on this account.
    I believe this to be a Windows 7 related issue, as Home Sharing worked as advertised when I was using Vista (before I upgraded to Windows 7).
    I CAN set up Home Sharing on two other (host) computers in my home network and it works. These computers are XP and a MacBook Pro. I CANNOT access my Windows 7 machine x64 to COPY music from one autorized library to another. Please help!!!
    P.S. - I have attempted to get this to work by turning OFF my McAfee firewall. Windows firewall is disabled.
    Message was edited by: turcott

  • MFA not working on Windows Server 2012 R2

    Been using MFA since PF days.  Deployed it successfully many times but for some reason it's not working with Windows Auth, Terminal Services on a Win 2012 R2 DataCenter box?  The machine was successfully added to my domain PhoneFactor group, I
    can see and add the machine on the master MFA.  Services are running but when I remote in I go right through without MFA stopping me?  Any ideas?
    TIA

    6.3.0 has just been released and 2012 R2 is *still* not supported. What the hell?!?
    "Version 6.3.0 of the Azure Multi-Factor Authentication Server adds the
      following additional functionality:
    * Added one-way SMS functionality for AD FS, RADIUS and User Portal
    * Added .csv file import for OATH tokens
    * Added support to parse phone numbers in E.164 format during import
      From the directory
    * Fixed problem preventing slave servers from performing MFA if the
      master server was unavailable. This problem was found to exist in
      all 6.2.x builds. All customers running 6.2.x should upgrade to 6.3.
    * Fixed directory sync issue for recursive security groups
    * Added additional logging to AD FS adapter
    * Other minor bug fixes and security improvements
    Known Issues:
    * Windows Authentication for Terminal Services is still not supported for
      Windows Server 2012 R2"
    So they added a whole stack of other functionality, but still didn't get around to taking a look at this bug. I'm stunned. Is there any sort of timeline on fixing this, or is 2012 R2 just going to remain unsupported forever?

  • HP Laserjet P1006 is not working on Windows 7 (64-bit).

    I lost my original CD-Driver and I tried to download the CD-Driver on HP website but it doesn't work when I click printing.  It seems that my HP Laserjet P1006 is not working on Windows 7 (64-bit).
    Can anyone give me a link that works for installing driver for HP Laserjet P1006 for Windows 7 (64-bit)?  
    Thanks for helping!

    Hi @achieverone ,
    I can help you with finding the drivers for the Laserjet P1006.
    Just to clarify, you were able to install the printer software, but it just isn't printing correct?
    Here are the two drivers available for Windows 7 64 bit.
    HP LaserJet P1000-P1500 Hostbased Plug and Play Basic Driver.
    HP LaserJet P1005/P1006/P1500 Printer Series Full Feature Software and Driver.
    Try and print a hardware self test on the printer to find out if it is a hardware or software issue.
    Open and close the lid five times quickly. It should print off a page with black lines on it.
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    What were the results when you ran the Print and Scan Doctor? (did it print or scan, any error messages)
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Flash 10.2 not working in Windows 7 IE8 despite 'successful' installation

    Hi there,
    I downloaded flash player to attempt to view flash media on sites such as bbc website and youtube.
    Despite the installation claiming to be successful, I still cannot view video on any sites I have tried.
    (bbc website says I don't have the correct version, youtube says I need to upgrade)
    My system details are as follows:
    Windows 7 Home Premium, 32-bit operating system
    Internet Explorer 8.0.7600.16385IC  (it makes no mention of being 64-bit)
    Flash Player 10.2.152.26
    I have tried following the troubleshooting guides on the adobe website, particularly 'Flash player does not work in Windows 7'
    but I have not managed to fix the problem.
    I've also gone through several threads on this forum, relating to similar problems, but I'm sorry I haven't been able to fix it.
    So far, the stuff I have tried is listed below, but since it has not worked, I assume I have done something incorrectly, missed something,
    or I have not yet found the right solution.
    The Flash Player does not appear on my programs list, but it does show up in the control panel/list of installed programs.
    I don't know how to get flash player to run on its own, so I can't access settings etc. for the hardware acceleration.
    The folder located at C:\Windows\System32\Macromed\Flash contains 5 files:
    Flash10m.ocx; FlashInstall.log ; FlashUtil10m_ActiveX.dll; FlashUtil10m_ActiveX.exe; install.log
    When I visit the adobe page for testing flash player, it does not show me any animation; there is a blank white rectangle with a tiny red 'X' in its top left corner, which I assume should be a box containing the version information if the player had been recognized.
    I have looked at the IE8 'tools/Manage Add-Ons - 'show' All Add Ons, and there is no listing of  'Shockwave  Flash Object'
    although there is a listing of   'shockwave activeX control' which is enabled.
    I've set my IE8 security settings to medium for the categories of 'Trusted Sites' and 'Internet' and I've made sure to set:
    'Download Signed ActiveX Controls' to 'Prompt'  and 'Run ActiveX Controls And Plug-ins' to 'Enable'
    I've tried unintalling the flash player using the specified tool, removing the adobe download tool, and manual re-installation.
    Finally, I tried (with much hesitation) to modify the registry key referred to in the Flash-Killer or 'kill-bit' guidlines.
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{D27CDB6E-AE6D-11CF-96B8-444553540000}
    The key existed, with a Name: compatibility flags  ; Type: REG_DWORD  ; Data: 0x0000400 (1024)
    So I changed the value from 400 to 000 as suggested.
    This is not worked either, despite uninstalling flash player, re-booting and re-installing.
    Finally, I updated the graphics driver for my ATI RADEON HD 5670 card, but aside from scaring me by drastically altering the screen resolution and not allowing me to roll back the driver, it has unfortunately not solved the flash player problem.
    I appreciate that the people with expertise have given loads of help on this problem, I hope I haven't missed something important when following the advice, but I'm pretty stuck, so if anyone can help, I thank you very much.
    thanks,
    pad

    Hi eidnolb,
    unfortunately, the installation of FP 9.0.280 based on running flashplayer9r280_winax.exe has not worked:
    I cannot see the animation / spinning, there is no animation and no box showing the version.
    (I have included a partial screenshot in this message, file name flashplayer_test_screenshot.jpg)
    Therefore, I did not continue with the instructions.
    The control panel list of programs does show 'Adobe Flash Player ActiveX' as being installed, version 9.0.280.0
    There were no messenger utilites listed in the system tray.
    As you advised, the first thing I did was to modify the {D27CDB6E-AE6D-11CF-96B8-444553540000} registry key value from 400 to 000.
    After modifying the value by making it Zero, I re-started the computer.
    Regarding Administrator Account, I looked on ther 'User Accounts' information, and there is only one user, my dad, and he is listed as Administrator.
    Sorry, but I will need to ask for your further advice. In case it is useful, I tried to get a list of all processes that were running on the computer
    (in case some of them inhibit the installation. most of them don't mean anything to me, even when they are given a description by the windows 7 Task Manager Processes List - I have pasted the text file below in this post, since I couldnt see how to attach files.)
    thank you for your help,
    pad2001
    Image Name                     PID Session Name        Session#    Mem Usage
    ========================= ======== ================ =========== ============
    System Idle Process              0 Services                   0         24 K
    System                           4 Services                   0        956 K
    smss.exe                       312 Services                   0        880 K
    csrss.exe                      456 Services                   0      3,328 K
    wininit.exe                    528 Services                   0      3,736 K
    csrss.exe                      536 Console                    1      6,104 K
    winlogon.exe                   592 Console                    1      5,288 K
    services.exe                   632 Services                   0      7,200 K
    lsass.exe                      640 Services                   0      9,380 K
    lsm.exe                        652 Services                   0      3,436 K
    svchost.exe                    760 Services                   0      7,008 K
    svchost.exe                    856 Services                   0      5,832 K
    atiesrxx.exe                   920 Services                   0      3,376 K
    svchost.exe                    988 Services                   0     16,176 K
    svchost.exe                   1028 Services                   0     51,320 K
    svchost.exe                   1068 Services                   0     28,928 K
    audiodg.exe                   1156 Services                   0     15,976 K
    svchost.exe                   1200 Services                   0     12,432 K
    svchost.exe                   1316 Services                   0     11,852 K
    atieclxx.exe                  1408 Console                    1      4,956 K
    wisptis.exe                   1432 Console                    1      6,512 K
    AvastSvc.exe                  1552 Services                   0     22,832 K
    wisptis.exe                   1792 Console                    1      8,360 K
    TabTip.exe                    1804 Console                    1     10,448 K
    dwm.exe                       1892 Console                    1     29,420 K
    explorer.exe                  1940 Console                    1     53,728 K
    RtHDVCpl.exe                   336 Console                    1      8,688 K
    AvastUI.exe                    328 Console                    1      4,060 K
    sidebar.exe                    476 Console                    1     36,108 K
    spoolsv.exe                   2264 Services                   0      9,464 K
    taskhost.exe                  2272 Console                    1      6,072 K
    svchost.exe                   2332 Services                   0     11,252 K
    svchost.exe                   2524 Services                   0     12,836 K
    PsiService_2.exe              2572 Services                   0      3,052 K
    SeaPort.exe                   2616 Services                   0      7,908 K
    WLIDSVC.EXE                   2684 Services                   0      9,104 K
    SearchIndexer.exe             3104 Services                   0     19,096 K
    WUDFHost.exe                  3244 Services                   0      5,468 K
    WLIDSVCM.EXE                  3372 Services                   0      2,644 K
    wmpnetwk.exe                  3452 Services                   0      3,772 K
    notepad.exe                   3600 Console                    1      6,096 K
    svchost.exe                   3876 Services                   0     11,480 K
    iexplore.exe                  2936 Console                    1     29,228 K
    iexplore.exe                  3640 Console                    1     59,180 K
    wltuser.exe                   3704 Console                    1     10,016 K
    dllhost.exe                   2480 Services                   0      5,000 K
    svchost.exe                   2680 Services                   0     21,228 K
    InputPersonalization.exe      3180 Console                    1      1,440 K
    wuauclt.exe                    116 Console                    1      5,516 K
    taskmgr.exe                   3204 Console                    1      9,052 K
    iexplore.exe                  1872 Console                    1    112,188 K
    cmd.exe                       1048 Console                    1      2,936 K
    conhost.exe                   3012 Console                    1      5,200 K
    tasklist.exe                  4300 Console                    1      4,664 K
    WmiPrvSE.exe                  4340 Services                   0      5,352 K

  • Redirect Printer is not working in windows 2008 R2 Server( Server Running as AD and Terminal Service(both role in single server))

    Dear Team
    i need solution from Microsoft for the issue;
    My infrastructure
    - Windows Server 2008 R2 (Role - AD and Terminal Service)- Updated
    - Client Machine running with windows 7 pro (Updated)
    - Client Using RDP Client to connect Windows 2008 Terminal Session
    - All are working fine, but Redirect Printing is not working (Through Windows 7 Pro) ... (HP Laser Jet 1020 plus - attached in Client PC)
    - it is working fine from Windows XP
    - i was done All terminal setting in both end, also try RDP Login with Administrator User, but issue is not resolve;
    What Microsoft can say about the issue;
    Thanks & Regards,
    VIMAL PRAJAPATI | 09824111686

    Have you checked the Print Service log in event viewer?
    Here's How.
    I have the Microsoft XPS driver on my clients, so I use that fact to my advantage below.
    Click Start Button/Administrative Tools/Remote Desktop Services/Remote Desktop Services Manager on the RDSH server
    Click the Sessions tab.  PC’s are listed Under Client Name by their computer name.  Take Note of the corresponding
    ID.  We will use this to locate the Printer information in the Event Log.  
    In the Event Log open Application and Services Logs/Microsoft/Windows/Print Service/Admin/ and Find the Event ID 823 entry that has the corresponding ID from the sessions tab you previously noted.  
    This Event Log Entry is created at Logon and you can only get the session ID when they are logged in.
    This tells you what client printer was mapped for the client.  The name that appears is the name of the Printer that was set on the client when the printer was installed.
    See if you see any errors here.
    If you see Event Id 823 with the following message “The default printer was changed to Microsoft XPS Document Writer,winspool,Ne00:. See the event user data for context information.”  Twice in a row with no other messages in between, and the first occurs
    at the time the user logged in, then their printer was not properly redirected.
    You see the Microsoft XPS driver mapped for each session prior to Easy Print redirecting the client machine’s Default Printer.
    Since your printer is the HP 1020 I would bet the driver on the client does not work with Easyprint.  I would try the  the HP Universal Print Driver or the driver for a printer that is very close, like the HP 1018.
    Thanks,
    Jeremy

  • TS1538 Ipod Classic will not work with Windows 8. Is there a fix?

    Itunes will not work with Windows 8. I have the latest version of itunes!
    When will the fix be available?
    When I try to Sync my ipod, nothing happens.

    Hi,
    You can download the latest official Firefox here: https://www.mozilla.org/en-US/firefox/new/
    You may also have to install [http://www.oracle.com/technetwork/java/javase/downloads/jre7u9-downloads-1859586.html Java] (choose either Windows x86 Offline or Windows x86 Online), and [http://get.adobe.com/flashplayer/ Flash] (choose the Firefox version and also deselect extras).
    For the Firefox metro version, please see [https://wiki.mozilla.org/Firefox/Windows_8_Integration#Elm_Nightly_Builds this]. You can install and use it along with the other version.

  • My laser jet 100 color MFP M175nw is not working after windows 8.1 upgrade,

    my laser jet 100 color MFP M175nw is not working after windows 8.1 upgrade, driver on your website fails to setup at 83 % with an error message

    Welcome to the HP Forums  MillaMagia,
    I see by your post that the USB isn't being recognized.
    I can help you with this issue.
    Are you using the same USB cable? (known good USB cable)
    You want to use the normal USB slot 2.0 cable and not the latest USB 3.0.
    USB 3.0 are supposed to be backwards compatible.
    Try another USB port on the Laptop, some of the USB ports are more powered then others.
    I have provided a document to see if the printer is partially recognized in the device manager, which is causing the printer not to be recognized again. (the uninstall from the CD should have removed the entry and the printer from the registry)
    Leave the printer turned on and the USB cable connected directly to the computer and the printer's power cord directly into a wall outlet.
    How do I get into Windows Device Manager?
    Here is a document for Identifying problems in Windows Device Manager.
    Check to see if there are any hardware driver conflicts, you might see a ! mark or a red x beside a device with a conflict or unknown device, look under universal serial bus controllers, look for USB printing support or mass storage device, delete the entry by right clicking and select uninstall, OK.
    Let me know how it was listed. (screen shots welcome)
    If this is a Laptop then check the power management settings.
    Access the device manager. Windows 8-How do I access the Device Manager.
    Select universal serial bus controllers from the list, for each USB root hub, right click and left click on properties, for power management remove the check mark for "Allow the computer to turn off this device to save power". It allows the computer to limit or turn off power for this device.
    Disconnect the USB, run the full uninstall and reinstall the printer software again.
    If you need further assistance, let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • HP B500 Wireless Bluethooth Adapter for HP Printer Not Working With Windows 8.1

    I have been using the HP BT500 bluetooth Wireless adapter to print wirelessly to my HP Officejet Pro 8500 printer.  I have been using Windows Vista, but recently upgraded to Windows 8.1.  I learned after the upgrade that the HP B500 wireless bluetooth adapter is not compatable with Windows 8.1.  I have attempted to find a driver upgrade for the B500, but there does not appear to be one available.  I have also searched the HP site and other sites in an attempt to locate an alter wireless blotth adapter to replace the B500, but have again been unable to locate one. 
    Is there a wireless bluetooth apter that will allow me to print wirelessly to my HP Office Pro 8500 from my laptop?

    Hi @Raider83,
    Welcome to the HP Forums!
    I noticed that your HP B500 wireless bluetooth adapter for your HP Officejet 8500 is not working with Windows 8.1. I am sorry to hear this but happy to look into this for you!
    I am not sure if you are using a 32-bit or 64-bit Operating System. But sometimes with Windows 8.1 you can use compatibility mode to install an older version of the driver. Which might help the situation. Here is a link to some other Windows drivers, HP bt500 Bluetooth USB 2.0 Wireless Adapter Drivers.
    Once you got a driver downloaded, follow this guide, Make older programs compatible with this version of Windows, on how to install it using compatibility mode.  It is not guaranteed to work, but it is worth a try!
    If you still need me to look for other bluetooth adapters, please respond with your printer's Product/Model Number. To find your printer's Product/Model Number follow instructions in this link. Finding Your HP Product Model Number. As there are multiple HP Officejet 8500 printers.
    Thank you for posting, and have a nice day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

Maybe you are looking for

  • Help me please (THE operation could not be completed )

    hi. i tried to watch a live channel by safari. if i use normal pc i can see it but when i use mac book pro i can't.i am a new user of mac book so not enough idea. i installed flip 4 mac as-well to convert the window media file for mac. but still its

  • Datetime filter in Power View

    Hello, I have made a power view report from an ssas cube. Despite the fact that the attribute fulldate (see following image) has date type on the cube when I choose advanced on the filter it is being treated like string. I would like this to be treat

  • App version check on iPad

    Hi, If the developer has not provided an About options, how can one verify the installed version on the iPad itself? I am familiar checking this using iTunes... Cheers, Roger

  • Working with wf_bpel_Q

    I have raised a business event in oracle workflow administrator. But I couldn't see the event going into wf_bpel_qtab. Any logs I can look into to check if the event is really getting raised?

  • Display totals of 0 when no rows problem

    i have the following data code code2 rank id a1 red ff 1 a1 red ff 2 a1 red cm 3 a1 blue ff 4 a1 blue ff 5 a1 blue ff 6 a1 blue wma 7 I want to display this grouped as follows a1 red ff 2 a1 red cm 1 a1 red wma 0 a1 red wmb 0 a1 blue ff 3 a1 blue cm