Ms-6309 v1.0: USB problem using Windows XP

Hello!
I have CELERON 950 with msi ms-6309 v1.0 motherboard. Bios version: 1.9.
I'm using Windows XP. I cann't plugin any USB device such as mouse or flash drive, because while plugining operation system is freezing. I cann't do
nothing. The only way is to reset by button.  
How to solve this
problem?
Thank you!

Installation of the following drivers and updates has not solved a problem:
SP1 for Windows XP
VIA 4-in-1 from http://www.viaarena.com
USB 1.10 Filter Patch from http://www.viaarena.com
spec of the machine:
Motherboard: msi ms-6309 v1.0
cpu: celeron 950 MHz (bios tetect  as 1GHz)
memory: 320mb
video: ATI Radeon 9000 Pro
Bios version: 1.9
OS: Windows XP RUSSIAN
If device plugged  before loading system - the device works normally (i can work with my flash drive).
With Windows 98, Windows 2000 - USB works normally.

Similar Messages

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • Problems using windows media player to transfer files to zen x

    All 9gs of my music is stored in windows media player music library.transferring it to zen xtra has caused many cds arriving at player with wrong content under different artists and some songs copied many times over. Is there a known conflict using windows player and zen xtra?I would use mediasource but my cds imported to ther interface with many not identified even thogh all my music was clearly labeled with artist, title and gnere in windows music library.Any help would be great. I cant get my 9gs of music into the zen without content mess u
    ps.
    thanks matt

    I, for one, am incredibly dissapointed in the portable file aspect of this player. i work in a PC store and we sell the Zen Touch , i also received one for christmas. At first i was very happy that i could also use it to carry my files to and from school but all my hopes were extinguished when i realized that the computers i would transfering to and from had to have the creative software installed. Obviously, Creative's target consumers are of the Student generation, so they must have known that we, as students , use computer labs in school. So why not add the firmware to override the creative software when transfering data files? What's written on the box and the sales pitch creative uses is extreamly misguided and alot of the buyers have come back to the store with complaints. They arn't happy, i'm not happy, creative should fix this porblem, and yes it is a problem and not "part of the design".

  • Problem using Windows Media Player 10 to put music on my Muvo V

    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish

    Eilish wrote:
    <FONT face=Century size=3>Please Help
    I hvae just bought a Creative Muvo V200 GB. I have tried using Windows Media Player 0 to load songs onto it. It goes through the motions and syncs ok and when I check 'removable' on Windows Media it shows that the songs are on there. However when I turn the MP3 Player on it registers 'no music'
    I tried wiping the player by downloading the firmware and starting from scratch but still get the same problem.
    Just don't like the layout of Creative so would really appreciate some advice on how to fix Windows Media.
    Thank You
    Eilish
    Thanks for that piece of information. Player is definitely working as I have about 20 songs on it through realplayer.
    Put a folder of new songs on desktop and a shortcut to my Muvo V200 but when I try to drag and drop it won't let me. All songs on the Muvo are in the root folder. Am I doing it the proper way? I'm afraid I'm a bit moronic when it comes to computers so if you can be patient perhaps you might like to send it again to me idiot speak.
    Really appreciate it
    Eilish

  • Scanner problems using windows 8 and canon pixma mx432. printer is set up but wont scan

    I have my printer installed on my computer already but the scanning function is not even coming up to be able to use it. I recently was given a new computer and it has windows 8 on it. it took a lot to get it to even be installed on the computer but the scanner portion won't work. When I bring it up it has the section where the scanner should be but nothing is there to push. What can I do to get this function working correctly?

    All the drivers for 4350D and MF4690 and a few more models I owned in a few more offices have the scanner bug in the drivers for Windows 8. No new drivers been released to fix the problem all those scanners I owned have. Now Canon just put the Windows 8_Notice_ENG inside the driver package and includes the [Limitations During Operation] that says:
    When using the scan function while the device is connected to a computer by USB, removing the USB cable and then
    plugging it back in or turning the device off and then on will cause the scanning function to be unable to execute. If this
    occurs, please restart the computer.
    Seriously, Canon? Restart the computer everytime it doesn't work, and I have to go through the hazzle saving all the files I am working on just to restart to get the scanner to work? I have tried to mod the newer drivers for MF4770n and a few new models to make it work with those 4350D 4690 models, it will then detect the scanner without restart, but the scanner won't produce a readale image using my modified drivers. Now stick with VM Player running Windows 7 to scan the files with those old scanners. I won't buy another Canon scanners for my future needs if Canon just can't fix the Windows 8 driver problems all those scanners I owned.

  • USB problems after Windows 8.1 update

    Since I updated to windows 8.1 my USB ports have problems. The issues occur when I am trying to use a USB to serial cable. It will work for a short period of time and then stop. The error I get says connected device quit responding. Then it will start working again. Sometimes the system will crash and the error is that the driver unloaded before a que'd request was finished. When this happens, it takes about 5 minutes for the computer to come back up.
    I had no such issues before the upgrade. Cisco anyconnect, VPN software no longer works either and I don't have the software myself as it was emotely downloaded by my company tech support, but any suggestion for fixing it would be appreciated as well.

    The following document..
       Release Notes for Cisco AnyConnect Secure Mobility Client, Release 3.1
    ..contains this statement.
    Note: When upgrading to Windows 8.1, uninstall AnyConnect, and reinstall it after your Windows upgrade is complete.
    For help with this situation, post in the Cisco forums.
       Cisco Support Community
    -Jerry

  • Problem using window.showModalDialog in  Internet Explorer7

    hi,
    can any one tell me the issues related with <b>window.showModalDialog</b> and Internet Explore 7 as i am getting error when i am trying to log out a page where i am using ShowModalDialog
    Thanks

    Hi Abhai,
    Please find the reg file searching "ie6sp2" in google. Download  and apply it on your computer and  then try to see <b>window.showModalDialog</b> .I think reg file should fix your problem.
    Regards,

  • Elements 7 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • Correction - Elements 12 problem using Windows 7

    I have been running Elements 12 on Windows 7 for a month without any problem. I also use Nik  Software suite plug-in.  Yesterday on opening and clicking on Photo Editor  within seconds a message box appears 'Photoshop Elements 12 Elements 12 Editor has stopped working.  A problem caused the program to stop working correctly. Windows will close the program and notify you if a solution is available'.   No solution has been notified and I doubt that I would understand it!  I have performed System Restore.  I am still receiving the same message.
    Organizer appears to open without problem, but I do not use it.
    Apologies for the error in the title of the previous attempt!

    I located the relevant folder and file on the C drive.
    Holding the three keys down and double-clicking etc as instructed produced
    no response. However, double-clicking before pressing and holding the three
    keys did produce the prompt. I deleted the settings as required.
    Unfortunately after I opened PSE Editor there was a delay of about 5
    seconds before the error message returned and Windows closed the program.
    So no further progress. I await your further advice!

  • When I attempt to download a Adobe PDF document I get a plackard saying "There was an error processing a page. There was a problem reading this document (109)." I don't have the problem using Windows Explorer. Can you help?

    I don't have any details other than what I have explained in the question. Have always been able to download Adobe files in the past. Tried Windows Explorer and it worked. Don't like Windows Explorer.

    Using FF 5.0.
    I've encountered this opening the following file:
    * http://download.esha.com/fandc/error/sqlfc.pdf
    The error occurred the first time I tried to open, but subsequent times it has opened fine. A co-worker gets the error everytime when trying to view in his FF 5.0. It has always opened fine in IE for both of us (like the OP meant, I think -- I don't like IE. Not even a little bit!).
    Downloading the file seems fine (opening in Acrobat Reader itself).

  • Nokia Lumia 530 backup problem (Using Windows 8.1)

    My phone has suddenly stopped backing up, even though it keeps telling me it hasn't been backed up for some time, and needs to be backed up. When I tell it to back up, it gets to about 99%, and then I get the message "there was a problem backing up your settings. Try again later."  What exactly does "later" mean? I've been trying at various times of the day every day for about 4-5 weeks now. From what I've read on the internet, this does appear to be quite a widespread problem.
    Other things I have tried:
    Turning the phone off and back on again.
    Unchecking the "Apps back up" button
    Uchecking the "Settings back up" button
    Checking both backup buttons again
    Deleting previous back ups using my phone
    Logging into One Drive on my laptop and manually deleting previous backups
    Changing the screen time out on my phone to 15 minutes (as opposed to 1 minute)
    Making sure I have a good phone and wifi signal, and having the phone plugged into the charger
    None of this has had any effect!!!!
    The strange thing is that when I go onto One Drive, it tells me that it did back up (I've only got the one phone, so there's no chance I'm getting confused between phones.)
    Please does anyone have any advice? Also, is there a way of telling my phone to automatically back up at regular intervals, eg once a week, or once a month, so I don't have to keep thinking about it?
    Thank you for reading all this!

    Hi, TulaTheQuang. Have you tried rebooting your phone by pressing the power and volume down keys simultaneously for 10-15 seconds? Also, check if all system apps on your phone are up to date. Go to Settings> applications> store> check for updates. Check if you will be able to successfully backup your files. 
    We'll wait for your response. 

  • I can't sync iphone with itunes via USB, Im using windows 8.1 system, after update7.0.6 itunes was not detect the iphone, pls help....

    can't sync itunes with iphone via USB, windows 8.1 system

    Right click on your device under Portable devices and click on Uninstall and when the uninstaller box pop ups select delete the driver and click OK. Now click on Scan for hardware changes on top of the page and see if you get apple mobile device support driver under USB Devices and if not then disconnect your device from the computer and try to connect it to a different USB port and check also open control panel and select Apple Mobile Device  Support from the List and Click on Repair and check. If still the device is not showing under USB then uninstall the following services from your computer.
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if unable to uninstall ignore and move to next)
    Bonjour
    Apple Application Support
    Restart your computer once after the uninstallation is completed and then download latest version of iTunes from http://WWW.apple.com/iTunes/download
    Locate the iTunes setup file and right click the file and run the installation file as Administrator and let the installation complete.
    Then check if your device gets deteced in iTunes and if still the device is not detecting in itunes then go to device manager and see under Usb if you can see Apple Mobile Device Support Driver and continue with the step. 5 of above given link in my previous post. And if still thedevice is not showing under USB then right click on your device under potable device and click update driver and first check for updates automatically and see under USB if you see the driver now and if not then go back to device under portable device select update driver, let me choose driver from the list, Have disk, browse file in the following location " C://Program Files/Common Files/Apple/Mobile Device Support/Drivers and select usbaapl file and install the same (if you can't find the driver on above location then look for the driver in Program Files(x86) instead of Program files and if you can't find usbaapl then look for usbaapl64 and complete the installation and then restart the computer and check if your device get recognized in iTunes.
    Note: when installing the drivers keep the iTunes closed till the drivers installation is completed.

  • Sound Problems using Windows Vista.

    Hello everybody!
    I have a problem with the sound in Windows Vista with my iMac. I install BootCamp Drivers (last version) and the sound system works with this drivers, but, when it's playing music, I always listen to a very strong noise. I don't have any microphone active (actually I desactivate all about input sound in control panel, to considerate where is the problem)
    So, please, Can someone help me?
    Thank you so much...
    Rafa
    Madrid, SPAIN

    Just an idea for you. There is an entire Apple Discussion forum dedicated to Boot Camp and Windows XP & Vista.
    Whereas, not everyone here with an Intel iMac has installed, tried to install or has experience with BC & XP or Vista, everyone there has or at least has an interest. You may attract help more quickly there.
    The Forum is at the bottom of the main Apple Discussions page under Windows Compatible Technology.
    Here is a link;
    Forum: Boot Camp Public Beta

  • Problem Using (windows-ASP) websites

    Please Help!
    I am a new MAC user. I have been trying to access (and post listings) to an ASP (Windows) site. Their listing page doesn't allow me to type, and it doesn't recognize my fonts. I was told by the program developer of the site that I need to go to Apple.com and download something called V3 (so I can communicate with ASP). I have looked everywhere on the site and can't figure it out. Can anyone please help?
    powerbook g4   Mac OS X (10.4.1)  

    Hi, thank you for the response.
    I am trying to post items for sale at:
    http://bidhound.com
    Everything is OK until I get to the description. The site doesn't accept anyhting I type. It works fine from a PC. I can use Classic (Internet Explorer 5 - which came with my PowerBook, but I have to use html. And...as you know, IE 5 is SO horribly outdated and it is difficult to look at. Any other suggestions?

  • PROBLEM USING WINDOW STORE IN WINDOW 8.1

    HI Sir 
         when i open window store and install any app many time a box open and say your current connection is slow
                       and many time it say time out
                                                                    and after this it take a long
    time and show pending app but the app is so small and it take a long time   please solve my problem

    Hi,
    Please try the following method to fix it:
    1. Disable your antivirus software.
    2. reset your Windows store cache:
    Type WSReset.exe into search box, and run it as administrator. Windows Store will openand you’ll get a conformation message saying that:
    The cache for the Store was cleared. You can now browse the Store for apps.
    It will the take you back to Windows Store. Now try to install or update the apps or download fresh apps and see if it’s working like it should.
    Karen Hu
    TechNet Community Support

Maybe you are looking for

  • HP Pavilion P2-1013w Desktop PC - UEFI Install with WIndows 8.1 Pro RTM causes hang

    I have an HP Pavilion P2-1013W Desktop PC with the UEFI enabled bios. With Windows 8.1 Pro RTM Build (MSDN Download available now from Microsoft - Released September 17th 2013 - Again,. this is 8.1, a.k.a. Windows Blue RTM) SATA Mode is set to AHCI B

  • Purchase Orders replicated in BE with wrong number

    Hello, Recently we've observed that in our dev system Purchase Orders are being replicated from SRM to R/3 System with numbers used for POs created in R/3, Let say, for example,  that in SRM the PO number starts with 33 and once the PO is replicated

  • Lazy Initialization

    Josh Bloch and Neal Gafter posted the following code puzzler. The thread in the static block blocks if you do "t.join()" but "t.join(10)" lets the program finish. Is this due to the private static variable which is being lazily initialized? Thanks fo

  • IWeb For Commercial Use, Implemented Back End Code Questions

    Hello Well I have been looking for this anwer all day. I was wondering wether iWeb could be used for commerical use without any issues of copywrite or license software trouble. Now I know that the software is licensed to me and I cannot redistrubute

  • Best way to make house plans using photoshop- City Planning Board rejected my 1st

    I need to submit pro looking house plans to a city board. I am too Lisdexic to learn a new program at this stage of my life, but I am skilled with Photoshop pixel tools...(.There are some Phtshp  tools I have never used). I have looked at most of the