dv2310us and some problems with Windows 7.

Pavilion dv2310us

p/n rv322uar #aba

After you install the updates from MS is working not touchpad and keyboard

Keyb work wen turn off and turn it on

mouse

ACPI\SYN0127
* SYN0127

keyb

ACPI\PNP0303
* PNP0303

BLUETO

BTHENUM\ {00005601-0000-1000-8000-0002ee000001} _LOCALMFG & 000f
BTHENUM\ {00000004-0000-1000-8000-0002ee000002} _LOCALMFG & 000f
BTHENUM\ {00005005-0000-1000-8000-0002ee000001} _LOCALMFG & 000f

pls help

BR

Goran

[Topic has been edited to more clear.]

PROBLEM SOLVED!

I reinstall Windows and all ok

thx for help

BR

Goran

Tags: Notebooks

Similar Questions

  • I am having some problems with Windows 8 randomlly slow operation.

    So the other day I was looking through internet and suddenly my computuer has been very slow, almost like the FPS lag in games. When I turn it on and it works normal for a little while then becomes slow. I tried a lot of things like CCleaner, Defrag, Malwarebytes, for turning on and off and some commands cmd, but I can't remember which. Can someone help me with this problem.

    The problem with cleaning products, is that you are 100% guarantee that your computer will be slower after use.

    Here's why: your computer has cached information it needs (creates a temporary copy).  When you use a product cleaning, you delete the cache (temporary files) and it has rebuilt their brand new from scratch - which is slow (it's why he tried to cache if it didn't build them!) and your computer to get slower and slower, causes each time that 'clean you '.

    I'll stop run the cleaners and stop all the caches of compensation.  You need people.

    The real cause of a slow computer, he is busy running a process (like reconstruction of a cache that you have deleted or deactivated).  Or it could be another process which is busy.  So to remedy this:

    1. Press Ctrl-SHIFT-ESC to display the Task Manager.
    2. Disable everything under the Startup tab, then restart
    3. Leave the computer and idle for a little while if it can end all caching for the indexes, superfetch and more.  You can use it during this time also, but it will end sooner if she is not alone.

    Then, if the slowness is returned, follow these steps:

    1. Press Ctrl-Shift-Escape again and look at the first tab.  Find something that uses a lot of CPU resources.  Programs that use the most CPU are programs causing the slowness.  Now, you know what programs are causing the problem, and you can quit the program, turn it off or do other things to speed up the return.
  • Foreground and background problems with windows Look & Feel

    Hi guys.

    I was faced with a problem that leaves me desperate.
    Consider the code below:
    import java.awt.Component;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import javax.swing.JTextPane;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.table.TableCellRenderer;
    
    public class Tester extends JPanel {
    
        public Tester() {
            super(new GridLayout(1, 0));
    
            String[] columnNames = {"First Name",
                "Last Name",
                "Sport",
                "# of Years",
                "Vegetarian"};
    
            Object[][] data = {
                {"Kathy", "Smith",
                    "Snowboarding", new Integer(5), new Boolean(false)},
                {"John", "Doe",
                    "Rowing", new Integer(3), new Boolean(true)},
                {"Sue", "Black",
                    "Knitting", new Integer(2), new Boolean(false)},
                {"Jane", "White",
                    "Speed reading", new Integer(20), new Boolean(true)},
                {"Joe", "Brown",
                    "Pool", new Integer(10), new Boolean(false)}
            };
    
            final JTable table = new JTable(data, columnNames);
            table.setPreferredScrollableViewportSize(new Dimension(500, 70));
            table.setFillsViewportHeight(true);
            table.getColumnModel().getColumn(2).setCellRenderer(new TextPaneRenderer());
    
            //Create the scroll pane and add the table to it.
            JScrollPane scrollPane = new JScrollPane(table);
    
            //Add the scroll pane to this panel.
            add(scrollPane);
        }
    
        /**
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
         */
        private static void createAndShowGUI() {
            //Create and set up the window.
            JFrame frame = new JFrame("SimpleTableDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
            //Create and set up the content pane.
            Tester newContentPane = new Tester();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
    
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        }
    
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
    
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException ex) {
                        Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (InstantiationException ex) {
                        Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (IllegalAccessException ex) {
                        Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
                    } catch (UnsupportedLookAndFeelException ex) {
                        Logger.getLogger(Tester.class.getName()).log(Level.SEVERE, null, ex);
                    }
                    createAndShowGUI();
                }
            });
        }
    
        class TextPaneRenderer extends JTextPane implements TableCellRenderer {
    
            public TextPaneRenderer() {
                setEditable(false);
            }
    
            @Override
            public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
                setText((String) value);
                setFont(table.getFont());
    
                if (isSelected) {
                    super.setForeground(table.getSelectionForeground());
                    super.setBackground(table.getSelectionBackground());
                } else {
                    super.setForeground(table.getForeground());
                    super.setBackground(table.getBackground());
                }
    
                return this;
            }
        }
    }
    Run the code, click like crazy on different lines and cela again and again. Now, look at the column "sport".
    You will notice that the value in the cells simply sometimes disappear.
    If you comment out the part of the code that defines the appearance, the problem disappeared, which makes me think that
    the result of the problem using the Windows look and feel.
    However, I don't know what I should pay attention in the TextPaneRenderer to make it work as expected.

    Thanks in advance.

    Edmond.

    problem is that the use of text/editorPane text style, i.e. that the display properties are controlled by the style attributes and not the background/foreground settings. Without text style can give erratic behavior (do not nail me, never really he dug up ;-).) Exit door is to force the component using the component colors

    public TextPaneRenderer() {
         setEditable(false);
         putClientProperty(HONOR_DISPLAY_PROPERTIES, Boolean.TRUE);
    }
    

    See you soon
    Jeanette

  • Facing some problems with windows in Rest Web-API authentication

    I have to apply Web service api-rest with Windows authentication is enabled.  How can I implement this so that I can follow the primary and the Windows identity of the user.  When the Windows mode. Unable to track the identity of the main user and also it seems that the published service only works when anonymous authentication is enabled.

    Hi Paul,.

    According to the description, I suggest you post your query in the MSDN forums in the link provided below to improve the assistance on the issue.

    https://social.msdn.Microsoft.com/forums/en-us/home?filter=AllTypes&sort=lastpostdesc

    Do not hesitate to write to us for any other help with Windows, we will be happy to help you.

  • I restored my laptop Toshiba because I had some problems with it and now my Windows Vista computer is indicating that it is 'invaild.

    RESTORED FOR LAPTOP, WINDOWS VISTA INVAILD

    Hi I'm new to these fornums

    I restored my laptop Toshiba because I had some problems with it and now my Windows Vista computer is indicating that it is 'invaild...

    I have the product key on a sticker on the bottom of the laptop, but whenever I entered the code, I also get this:

    The product key you entered will not work with this edition of Vista

    I know that most people are trying to say to activate by phone, but this option is not available

    Help, please

    Now that you have found the key and the certificate of authenticity, you must change to the key on the COA sticker - ONLY then it will activate.

  • Is anyone else having problems with Windows 8 when your typing and e-mail? For some reason, it comes out constantly to the tile screen while I type making me about starting more.

    Is anyone else having problems with Windows 8 when your typing and e-mail? For some reason, it comes out constantly to the tile screen while I type making me about starting more.

    Hi Chaz,

    I thank you for your message and gives us a chance to help you. I see that the Mail app closes while you are typing an email.

    Please answer these questions to get a better understanding of the issue.
    1 have changes made to your computer before this problem?
    2 shut down other applications while they are in use?
    3. do you get an error code?

    You can try these methods to check whether the problem is resolved.

    Method 1: Run the troubleshooter of app.

    http://download.Microsoft.com/download/F/2/4/F24D0C03-4181-4E5B-A23B-5C3A6B5974E3/apps.diagcab

    Open this link to launch the troubleshooter.

    Method 2: Update the application.

    Method 3: Reinstall the application.

    This link has the steps that you can follow to update and reinstall the application.

    http://Windows.Microsoft.com/en-us/Windows-8/what-troubleshoot-problems-app

    Feel free to use the forum for any other issue of Windows, you may have.

  • Problem with windows mail send not of pictures and attachments? Help, please!

    Hello, yesterday I continued to get an error code when you try to update some security updates, I've used the tutorial help and went and deleted some file deep into my system, as he ordered.  He has not yet fixed the error and now my windows mail will not send attachments and the police to the address info seem different?  I'm lost, please help!

    Hi Pishy,

    1. what was the error code that you received when you try updates security?

    2. what tutorial did you delete files?

    3. what happens when you try to send emails with attachments? You receive messages or error codes?

    You can try to perform a restore of the system to a prior restore point you have been affected by the issue.

    Note: When you perform the system restore to restore the computer to a previous state, programs and updates that you have installed are removed.

    To run the system restore, you can consult the following link:

    System restore

    System Restore: frequently asked questions

    For more information, you can also consult the following article:

    Solve problems with Windows Mail

    Hope this information is useful.

  • I don't even know what to call this problem with Windows 7! Can someone please read and help?

    Hi all

    What is c?

    I have half a dozen problems with Windows 7 right now, but let's start with the most irritating.  Screens disappear and reappear.

    I'll open a window and then open another (at the same time) for a reason, and if I don't have my mouse entirely on whatever the window, it "disappears".  That is, it will become transparent with just sort of 'framework' around him.  The content is gone.  But they come back.  It makes the idea behind 'Windows' laughable.

    And try to block and the copy is a nightmare of one window to the other.  Or even on the same page.  I try to block something and move away, and the "block" disappears.

    I thought it might be my mouse, which is your ordinary Microsoft Optical Mouse 2V.0, I went to devices and printers and formatted my mouse (I've never done this before) and my Microsoft Keyboard and recorded.  Nothing wrong with the keyboard.  The mouse just kept screwing as it did before, and I used your basic standard settings - nothing fancy or different.

    Now I write in this little place and nothing is to move, the mouse behaves - what IS IT?

    I am getting this problem in Windows 7 because honestly, I have no idea where else to put it.

    And I have just started with the problems.  Can you please, please, please help?

    I can't help but think that all the problems are related, so I'll put one little summary of what else is happening.

    1 out of nowhere part, I got a notice saying that I had to change the settings to allow Windows update immediately and without my permission (I think that's what he said and I know that there is a setting in devices and printers? or something like that where I allow edits without review)

    2. I can't convince my printer there is NO residential group and that I am the administrator and the only person using the computer.  This screw with my settings (wired) network too.

    3. I have a four-in-one printer (print, copy, scan and fax).  I am at home lately and will be years apparently, so I decided that I wanted to get the printer scanner and fax.  He was already printing and copying.  I turned off, unplugged and did not know that I had to uninstall all software and then reinstall it.  I don't have the time to do it again; I want a clean computer before you set up the printer.  Well, it seems to create small problems in the world.  I keep getting directed to devices and printers, but I want to read all the information before I uninstall just in case.

    4 modules!  They are the bane of my existence.  I do not understand what they are doing when I go and look at them individually. I tried to use IE10 without addons and it's just a big headache.

    5 constantly getting a yellow banner at the bottom of my screen asking me if I want to run * some * and I wanted to know the risks involved.

    6. constantly asked about Active X.  What is it and what does want of me?

    7. all of a sudden an hour ago, my computer has decided to go to "sleep" mode and wants me to change user for myself and when I do, it says it is locked, but I hit the beautiful image and it opens on the regular Windows screen.  WHY?  I don't use a screen saver and I got 20 minutes sleep mode which is just the entire dark screen until I touch the mouse.  No more!

    Guys do you see why I'm going crazy?  Help, please!  I spend all my days this last week and one before that trying to move things.  All this because I wanted my printer to scan.

    ···
    I'll open a window and then open another (at the same time) for a reason, and if I don't have my mouse entirely on whatever the window, it "disappears".  That is, it will become transparent with just sort of 'framework' around him.  The content is gone.  But they come back.  It makes the idea behind 'Windows' laughable.

    ···

    Click Start or press the Windows key and type mouse but do not hit Enter. Search change how your mouse above control panel section.

    When this new pane opens, uncheck the Activate a window by hovering over it with the mouse. Click OK at the bottom to save your changes.

  • I had some problems with my pc, since then when I close Firefox it would not reopen unless I go to Task Manager and end the process for FF.

    I had some problems with my pc, since then when I close Firefox it would not reopen unless I go to Task Manager and end the process for FF. I uninstalled FF and re-installed and no change.
    Walt

    I have a same problem.

  • Problem with windows update and Service pack 1 for Vista 32 bit.

    A screen will appear that says I need to download the Service Pack 1 for Vista. He also says that it is more optimal to download the much smaller file, through Windows Update, rather than on the site. But when I check the Windows Update, it did not for me to download. Update verification that history does not display it has been downloaded before, even if the other Windows updates have been. Do I need? Should I download the version + 400 MB of site or there at - it another way to download smaller files for my PC only? Any help appreciated. Thank you! Here is the text I copied and pasted pop up I got.

    ------------------------------------------------------------------------------------
     
    A problem with Windows Vista
    Windows Vista has stopped working properly.

    This problem has been corrected in Windows Vista Service Pack 1 (SP1).

    What is a service pack?

    An update to software that combines new security and performance with existing updates improvements. Service packs can contain new features or changes to the design of a product.

    To resolve this issue, follow these steps:
    Determine if your type of operating system 32-bit or 64-bit.

    How will I know if my system type is 32-bit or 64-bit?

    Click the Start button, right-click computer, and then click Properties.

    Under system, you can view the system type.

    The average of 32-bit and 64-bit?

    Both 32-bit and 64-bit refer manner that your computer (CPU) CPU processes information. The 32-bit versions and 64-bit Windows are designed for use in computers with 32-bit processors or 64-bit, respectively.

    For more information, go online and read this article for Windows Vista online help:

    32-bit and 64-bit Windows: frequently asked questions

    Check online at Microsoft Download Center to download and install Windows Vista Service Pack 1:

    Windows Vista Service Pack 1 for 32-bit systems
    Windows Vista Service Pack 1 for 64-bit systems
     
    -------------------------------------------------------------------------------

    In the end, P.S. - know what long and thank you in advance for taking the time to read and respond.

    In addition, unrelated question. Does anyone know why my computer would always have an icon in the lower right shows a storage device mass that I did not and when nothing is plugged into ONE of my USB remove locations?

    Ralleny,
    Regarding mass storage disks that appear, you have housing of memory card reader on your PC?  Usually they will appear like this.  I have a HP at home that has a Bay of 5 card reader to the front and I see the same type of items that you see. Mike - Engineer Support Microsoft Answers
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Downloaded and paid of Minecraft and having problems with Java, Anti Virus Scan and Windows Update - error code 800F081F

    Downloaded and paid of Minecraft and having problems with Java, Anti Virus Scan and Windows Update - error code 800F081F

    Would you advice, thank you.

    Hi Hugo,.

    1. what anti-virus software you have installed in the computer?

    2. What is the full error message/code?

    3. the issue occurred after you install Minecraft?

    4. are you able to play Minecraft without any problem?

    5. what happens with Antivirus and Java?

    Windows Update can occur if one or more of the following conditions are met:

    1. the Windows Update database is damaged.

    2. antivirus software is configured to scan the %Windir%\SoftwareDistribution folder.

    3. the service (BITS) Background Intelligent Transfer Service does not receive a content link header.

    4. a required system file is incorrectly registered.

    5. Windows Installer has encountered an error.

    6. the manifesto of component maintenance (EC) is damaged.

    7. the Windows Update service has stopped during the installation.

    8. a version of the file conflict exists with Windows Update agent files.

    Please follow the steps described in the methods to solve the problem:

    Method 1: We will try the steps from the following link and check the result:

    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click the following article:http://windows.microsoft.com/en-US/windows7/Back-up-the-registry

    How to reset the Windows Update components?

    http://support.Microsoft.com/kb/971058?WA=wsignin1.0

    Method 2:

    To correct the errors that occur when you use Windows Update, install, and run the system update readiness tool. The tool analyzes inconsistencies on your computer and fixes as its current installation.

    You can view the following link to download the system update readiness tool and check:

    System tool update that corrects problems of Windows Update is available for Windows 8, Windows 7, Windows Vista, Windows Server 2008 R2 and Windows Server 2008

    http://support.Microsoft.com/kb/947821

    Details of the event log to find what caused the Antivirus and Java to fail:

    What are the information contained in the logs of the event (Event Viewer)?

    http://Windows.Microsoft.com/en-us/Windows7/what-information-appears-in-event-logs-Event-Viewer

    Hope that the information provided is useful.

    For any help related to this problem or any question of Windows, you can still display in the Microsoft Community Forum!

  • I am running windows vista and am warned there is a problem with windows media center, restart my computer and try again. It did not work. Help

    I am running windows vista and am warned there is a problem with windows media center, restart my computer and try again. It did not work. Help

    Run the Setup again.

    Open WMC > tasks > settings > General > installation Windows Media Center > rerun the installation

    Does that help?

    If the above does not help then try to reset WMC: -.

    Open Control Panel > uninstall a program > turn Windows features on or off > scroll multimedia features > uncheck the box against Windows Media Center > follow the instructions on the screen > Reboot > open again to turn Windows features on or off in the control panel > scroll multimedia features > check the box against Windows Media Center.

    Now reconfigure WMC again

  • Problem with Windows Media Player: "Server execution failed" and "files needed to display video are not installed or do not work properly.

    I have a problem with Windows Media Player on laptop Lenovo G780. My laptop is under warranty (bought a month ago), but technical support Lenovo told me that the Windows Media Player program is not covered by the warranty.

    And this is a problem:

    When I click on Windows Media Player - to about 0.1 sec I see it opens and closes the window and nothing happens.

    When I select a mp3 or wmv file and right-click with the option open with Windows Media Player - I get a message: "Server execution failed" - I checked that all services with 'Media' in the name are running.

    When I select a mp3 or wmv file and right-click with the open option with Windows Media Center - Windows Media Center opens with the message: "the files needed to display video are not installed or do not work properly.

    When I select a file mp3 or wmv and right-click with option open with Windows Movie Maker life - see the video

    I tried to turn / WMP and WMC - did not help
    Tried to run as administrator - did not help
    I don't see something suspicious under events

    What can I do else?

    Thank you

    Zarek

    I had the same problem and then by chance, I tried a video on YouTube and it worked for me. Here's how I went on this issue and solved my problem:

    1. go to the computer, then OS (C).
    2. you will need to open Program Files (x 86) and Program Files.
    3. go to Windows Media Player in Program Files (x 86) and open the folder.  Then, remove the wmplayer file.  You may need to work around the error TrustedInstaller.  I'll tell you that, in a moment.
    4. in Program Files, go to the same folder for Windows Media Player and select the same file again. Wmplayer.  Copy the file in another window open.  Copy ensures that if the question comes up again you can at least try to fix it again.
    This should be the end of your problem.  If you need to circumvent the TrustedInstaller question is how:
    1. right click on wmplayer and select Properties > Security > advanced > owner > Edit > other users and groups.
    2. Enter your username and then click on check names.  Click OK.
    3. close the dialog boxes as he has requested.
    4. open again the properties and click Security.  Select your username from the list and click on edit.  From there, select full control.
    This should give you full control over the removal of the original file for WMP and easily allow you to copy the other files (x 86) programs.
    Please let me know how it goes for your problem.
  • Problems with Windows Installer - installer stops and shows the dialog on the command prompts

    Hello

    I hope someone can help me with this question... I looked long and seriously, and you have tried all of the suggestions posted (cancel/save, etc.).

    I am trying to install a program and Windows Installer stops right in the middle of installation and a dialog box appears with information from command line, and the only thing I can do is select 'ok'... the program is not installed.

    Here is the info that appears in the dialog box:

    Windows® Installer. V 5.0.7601.17514

    msiexec/option [optional parameter]

    Installation options
     
    Installs or configures a product
    /a
    Administrative installation - installs a product on the network
    /j [/t ] [/g ]
    Publishes a product - m for all users, allows the current user
     
    Uninstalls the product
    Display options
    / quiet
    Quiet mode, no user interaction
    / passive
    Automatic mode - only progress bar
    / q [n | b | r | f]
    Sets the user interface level
    n no user interface
    b Basic UI
    r reduced UI
    f-full UI (default)
    / Help
    Help information
    Restart options
    /norestart
    Do not restart after the installation is complete
    /promptrestart
    Prompts the user to restart if necessary
    /forcerestart
    Always restarts the computer after installation
    Logging options
    / l [I | w | e | a | r | u | c | m | o | p | v | x | + |. | *]
    i status messages
    w warnings recoverable
    e-all error messages
    a startup of actions
    r registers of the specific action of the
    u user requests
    c initial UI parameters
    m out-of-memory or fatal exit information
    o disk out-of-space messages
    p - Terminal properties
    v performance
    x extra debugging information
    + - Add to the existing log file
    ! -Flush each line in the log
    * - Log all information, except the x and v options
    / log
    Equivalent of / l *.
    Update options
    / Update [; Update2.msp]
    Apply updates
    / uninstall [; Update2.msp] / package
    Remove the updates of a product
    Repair options
    /f [p | e | c | m | s | o | d | a | u: v]
    Repairs a product
    p only if the file is missing
    o If the file is missing or an earlier version is installed (by default)
    e If the file is missing or an equal or higher version is installed
    d if the file is missing or a different version is installed
    c If the file is missing or checksum does not match the calculated value
    has all the files to reinstall the forces
    u all (default) user-specific registry entries
    m all requirements (by default) computer-specific registry entries
    s all (default) shortcuts
    v-runs from source and recaches local package
    Setting public properties
    [PROPERTY = PropertyValue]

    Consult the SDK Windows® install to get additional documentation on the
    command line syntax.

    Copyright © Microsoft Corporation. All rights reserved.
    Portions of this software are based in part on the work of the Independent JPEG Group.

    I hope someone has a suggestion for this problem... I just bought a new laptop and Windows 7 Professional came installed on it.

    Thank you

    Linney thanks for your response!

    The file I'm trying to install is an exe file (so the SIG file is embedded in the exe file).

    I tried the option "Run As Administrator" and it did not work.  However, you gave me an idea that has provided a work around that allowed me to install the program.

    Once this dialog box is displayed with all the control switches, rather than press 'OK', I left on the screen and went in the 'temp' folder and find the MSI program I tried to install (I cross referenced the timestamp of when I tried to install it to find).

    Once I found the updated file, I clicked it, and he proceeded to install the program... I have not had any other problems with the installation.

    So, there's something wrong with the way that the exe file have been created and how the files extracted from the msi file (these are files of Intel and Lenovo - driver updates - so I think they do these things) or there is a problem with Windows Installer.

    For now, at least, I have a work around I use until I find a solution to this problem of permanent

    Thanks for your help and for taking the time to answer!

    I hope this can help someone else in the future

  • Ad hoc problem with windows 7 and my I protect 3

    Hi I have the same problem with windows 7. It worked perfectly, last week and it now has the same msg. I followed the steps and it does not always help you. It works if I am close to a router and then I can put in place a special but will come with errors as the wi is off and it then resets it. Once reset the same msg saying windows cannot implement... Please help I use my I pad for virtual dj
    Now it is set up, but have a problem. It says no network share and it let me use something else, the I pad I joined and it shows on both devices, but does not open virtual dj. It worked last week

    Hello

    These links may help you.

    http://forums.techguy.org/networking/897027-Windows-cant-set-up-ad.html

    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-a-computer-to-computer-ad-hoc-network

    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-networking/why-win-7-cant-remember-network-location-for-ad/d57f4440-238a-490f-96d5-cd4475888d3b

Maybe you are looking for