MSI RS480M2 - works good - but not perfect ;)

Hi ! I got a problem with my mainboard. I read that if i want to use Win 2000 (I got license so I didn't want to change my OS) I have to setup bios for SATA (RAID), to avoid pio mode error in win2k IDE driver. Of course it works very good, but.. the problem is when I use SATA mode - the bios splash (POST procedure) takes very long time. How to speed up POST procedure in SATA mode ?? In PATA mode POST takes 2-3 seconds - in SATA 15-20s. And the second question is ... how can I use SATA mode in WinXP x64 (I got 120 days beta from MS webpage) - there is no driver on ATI disk for x64. Is it possible ?? Now I'm doing bios setup to change from SATA (in w2k) to PATA (in XP64) everytime I want to boot. Is WinXP64 compatible with SiI SATA without drivers ? What do you think ?

If you explore the download packages, there's a MakeDisk.txt with the following instructions on buidling the floppy:
   If you lost your Driver Disk labeled as "Silicon Image SATA RAID Drivers"
   This file will teach you how to make one Driver Disk
   First please perpare one formatted 1.44M Floppy
   Then please copy necessary driver from MSI Driver CD
- Driver for Win2000/NT40/XP/2003
  Please copy CDROM:
  ATI\RS480\SBDrv\SATARAID
                           si3112r.cat  file
                           Si3112r.inf  file
                        Si3112r.sys  file
                        SiiSupp.vxd  file
                           SilSupp.cpl  file
                           SIWinAcc.sys file
                           TxtSetup.oem file
Danno

Similar Messages

  • My iphone 6 connects to the car via bluetooth, the music works good, but the phone calles does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai and a Dodge rent car and get the same results.  I updated the last 8.0.2.

    My iphone 6 connects to the car via bluetooth, the music works good, but the phone calls does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai Sonata and a Dodge Dart rent car and get the same results.  I updated the last 8.0.2.  It worked the first day i had the phone, and then i updated to Ios 8.0.2 and it quit working.
    Now when i get in the car, it acts like it is connected and makes the same call it was on after syncing to bluetooth, but it really isn't on a call.  This is happening on both cars.
    Does anyone know if this is the phone and i need to take it to Apple or if there is an issue that Apple is working on getting a fix for?
    My son in law has the exact same phone as me, we both got the on 10/6, he had a Dodge Dart and his is working via bluetooth.
    Someone HELP please, as i consider this a safety issue by not having my calls go to bluetooth.

    We had the same problem, but figure out the solution.
    You MUST have at least 1 song added to your ITUNE!  After you add a free song, then everything else should work as normal!
    Hope this helps!

  • Is there any official market or store or anything in Egypt to fix my iphone 4 it jumped from 5th floor and the back hous was crashed and the network sensor was not working good but the phone and the screen and the others things are ok so plz help ???

    Is there any official market or store or anything in Egypt to fix my iphone 4 it jumped from 5th floor and the back hous was crashed and the network sensor was not working good but the phone and the screen and the others things are ok so plz help ???
    my iphone is now just coverd with case and the back house is crased

    Etisalat, Mobinil and Vodafone provide warranty service in your country.  You can also search Google for a 3rd party repair shop near you.

  • Hi, Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) shows a yellow triangle saying : Charging is not supported with this accessory. Please I need some help here. Thanks =D

    Hi Someone Know why my charger is not working properly but always it was been working good but now when conect my iphone (3gs) appears a golden triangle saying :Charging is not Supported with this accessory. Please I Need Some Help Here. Thanks =D

    sounds like the cable or the iphone connector are somehow damaged

  • Just want to say that's Block pop-up windows it's realy need to fix not work ever i think in Microsoft explorer it's work good but in firefox else new virsion Firefox4 it's not work right so please yts have to fix it it's so many important addon

    just want to say that's Block pop-up windows it's realy need to fix not work ever i think in Microsoft explorer it's work good but in firefox else new virsion Firefox4 it's not work right so please yts have to fix it it's so many important addon

    [Quote]
    Waiting for Tidbits and Elector to grace my post with there constant negativity and start a war of words as usual... since they love stirring the pot and angering the Windows Phone Community every time they reply to posts.  I just can't believe they spend that much time here on the forums replying if they are not a paid Verizon employee or a paid basher from a competing platform.
    [/Quote]
    Well I found nothing wrong in your post. So why even make a statement like the quote I included?
    Once more I am a retired government employee. So I have the time to post. Or has my rights been taken away to voice an opinion?
    Your posts was great you were not whining about your rights to file complaints to the FCC or FTC etc. One of the best I have read.
    And I am not trying to sway you from your phone choice. If you looked at my avitar it shows apple iphones. But I use and have used androids and not Windows phones.
    However your numbers of windows phone users all leaving over the issue is miniscule in the number of users of Android and iOS devices.
    I have written many times I wish all the devices get updated like iOS devices do. But at present that is not happening
    No bashing, no adversarial post just a little common sense is all I use.
    And again your post was great.
    Good Luck

  • cffeed caching works locally but not on server

    So I got my new Hostek account set up (woohoo!) and I've started uploading some basic files so I can do thinks like validate my code and make sure everything's working.  One thing that does not work (but does locally) is my news feed caching.
    Pulling in two RSS feeds was seriously slowing down my index page loading, so I stole a trick from Ray Camden on caching the feeds.  It works perfectly on my dev machine at home, but doesn't work on my hosted account.
    Here's the exact code being used:
    <cfset feedurl = "http://velonews.competitor.com/feed">
    <cfset cacheTime = #createtimespan(1,0,0,0)#>
    <cfif not structKeyExists(application,"rsscache") or dateDiff("n", application.rsscache.created, now()) gt cacheTime>
        <cffeed source="#feedurl#" query="entries">
        <cfset application.rsscache = structNew()>
        <cfset application.rsscache.data = entries>
        <cfset application.rsscache.created = now()>
    </cfif>
    <ul>
    <cfloop query="#application.rsscache.data#" startrow="1" endrow="6">
    <cfoutput><li><a href="#rsslink#">#title#</a></li></cfoutput>
    </cfloop>
    </ul>
    I tried wrapping a try/catch around the top section (above the <ul>) and still got nothing for an error message.  The page just stops being rendered at that first <ul>.
    I'm not sure why it works locally but not on the web server.  Any ideas?

    Miraculously, I got it working.
    I changed this:
    <cfloop query="#application.rsscache.data#" startrow="1" endrow="6">
    <cfoutput><li><a href="#rsslink#">#title#</a></li></cfoutput>
    </cfloop>
    To this:
    <cfoutput maxrows="6" query="application.rsscache.data">
    <li><a href="#rsslink#">#title#</a></li>
    </cfoutput>
    And bingo!  It worked. Perhaps it's an idiosyncrasy between CF9 and CF10.

  • GL Journal entry looks good but not Fixed Assets in 11.5.10.2.0 -

    In the GL Journal entry it looks perfect, but not in FIXED ASSETS
    This is on 11.5.10.2.0
    Depreciation amount is not correct in Fixed assets and Any thoughts on that or please let us know how to go about
    In the Form
    Depreciation
    Period
    Jan-12
    expenses 651.94000.89..whateer
    Deprectiaon should be 442.00 whereas it is showing different number
    whereas it does show properly in GL Journal entry
    How to get this value transferred or migrated
    GL looks good but not in Fixed assets- Is there a process we can review or
    find more information on it

    Hi,
    I am pasting my comments next to yours :
    These are the issues that needs to be resolved:
    • Depreciated balance are over stated in Fixed Assets and needs to be adjusted to reflect what is in GL. => I wasn't sure how this was was possible, since I  assumed that your Asset depreciation journals in GL were being fed from FA. So if depreciation was thought to be incorrect in FA, its corresponding balance in GL should've been incorrect as well. But I guess that's not the case because your other questions imply that some of these assets were acquired and their might have been some conversion activity involved.
    • Fixed Assets mass additions are selecting GL accounts that should not be selected. We need to know how to change the criteria for selection. +=> Check the Asset Clearing and CIP clearing accounts on your asset categories+
    Later:
    • We need to learn the proper way to convert assets we acquired from acquisition into our Oracle Fixed Assets system, so that depreciation start at the time we acquire the assets. => That is correct, you could change your original date placed in service to the acquisition date as part of conversion and if you have the correct prorate convention, they should depreciate the way you want it to.

  • TS3376 the application is working good, but the location of my device has found was totally wrong. any idea?

    the application is working good, but the location of my device has found was totally wrong. any idea?

    That would be the issue here.
    The gateway is a modem/router that is in charge of your network.
    The AirPort sensed this during setup and configured itself to operate correctly and passively with an "upstream" router on the network.....so, the Airport is in Bridge Mode.
    The upside is that the AirPort is configured correctly to work with your gateway. The downside.....and Catch 22....is that the Guest Network will not operate correctly when the AirPort is in Bridge Mode. 
    The AirPort has to be the router "in charge" in order for the Guest Network feature to work correctly.
    If you want to try to break some basic networking rules, and have two devices both trying to perform routing chores on the network, that might be a workaround.  But, things get complicated to set this up.....and it will produce what is known as a Double NAT error on the network......which may allows things to work OK....or....cause problems.
    Double NAT errors are unpredictable. It will be one of those things where you will not know if things will work until you try. No guarantees possible.
    The network will have to be completely redone if you want to try this, and you will have to set up new Static IP addresses for devices that need them.
    In general, if you want to try this, the network layout must look like this:
    Internet Connection > SMC Gateway > AirPort Express > Ethernet Switch > Devices.
    With things set up the way that they are now......the simpler thing to do would be to use the SMC wireless for your "main" network and the AirPort Express wireless for "guests". 
    The downside....."guests" will be able to "see" devices on your "main" network with this type of setup.

  • Flash site works locally but not online (uploaded to server)

    We have bought a flash portfolio template and have customized it with our pictures, video, etc.
    When we test it locally on our computer (using different web browsers) it all works perfectly well. We have uploaded the finished website to our server and when you go to the address online, it doesn't work (a loader progress shows but it is stopped and nothing happens).
    We have however uploaded the original template we bought and it works perfectly online.
    The template consists of and index.html, various .swf, and various .xml that we have modified according to the template instructions (it also contains a java script folder we haven't touched).
    What is it wrong with our modified template - it works locally without problem…!
    Thanks for your help

    When a Flash file works locally but not on-line, it's almost always a pathing issue (provided you did upload ALL files and do not have something missing... as suggested by Ned).
    A "pathing issue" results when the main .swf cannot find one or more of the associated Flash files...like an xml file or images.
    It can be something as simple as using switching file names to all lower case. Local machine is not case sensative... most servers are. So "My Photo.JPG" is not the same as "my_photo.jpg". When naming files, best to use all lower case, no spaces in any file or folder names... use_underscore_instead.
    But the most common cause is that those associated files (xml, images, etc.) are not pathed relative to the Web page where the main .swf is embedded. Pathing to the .xml and image files should be as though the .swf was located in the same folder as the Web page... NOT the actual location of the .swf file.
    And that includes paths to the xml file and paths to image files coded into those xml files. Everything need to be coded relative to the Web page.
    This topic has been covered a number of times here:
    http://forums.adobe.com/message/4368273#4368273
    http://forums.adobe.com/message/4294529#4294529
    http://forums.adobe.com/message/4280086#4280086
    http://forums.adobe.com/message/4267408#4267408
    Best wishes,
    Adninjastrator

  • Firefox will not open on my computer the majority of the time. If I shut down and restart it will work sometimes, but not always. This started recently in the last two weeks. Today is June 12th 2011.

    Firefox will not open on my computer the majority of the time. If I shut down and restart it will work sometimes, but not always. This started recently in the last two weeks. Today is June 12th 2011.

    See:
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • HT1386 my Ipod will not connect to my computer it worked yesterday but not today and it is only a new ipod touch, it will not even be recognised on my itunes but yet it can charge off my computer. need help!

    it worked yesterday but not today and it is only a new ipod touch, it will not even be recognised on my itunes but yet it can charge off my computer. need help!

    iOS: Device not recognized in iTunes for Mac OS X
    or
    iOS: Device not recognized in iTunes for Windows

  • I just bought the new HDMI cord for the IPad, it works good but a small potion of the TOP and the BOTTOM is cut off. It doesn't seem to do it for movies. My monitor is a 23 IN' acer s series.

    I just bought the new HDMI cord for the IPad, it works good but a small potion of the TOP and the BOTTOM is cut off. It doesn't seem to do it for movies(although I can't really tell. My monitor is a 23 IN' acer s series. I just installed the drivers for my monitor with no change. I think I have a CD somewhere for my monitor maybe it has some kind of program in there that can help me. I can post a picture if I need to. Thanks

    No work around that I know of.
    Apple Feedback http://www.apple.com/feedback/

  • Occasionally Firefox 3.6.12 won't display photos on certain sites. Reloading works sometime but not alwasys.

    At times on auction some sites such as ebay, (and others), photos won't display. If I press the reload button there's a chance the photo will display. If reload doesn't work the first time, pressing it 3 or 4 times may work but not always. Closing the site then re-opening works sometimes but not always. Annoying.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I can connect my Iphone 6 and Ipad Air to my Bose Soundlink but not my IMac.  I have tried all the usual solutions but nothing works.  It has worked recently but not in the last week. Help

    I can connect my Iphone 6 and Ipad Air to my Bose Soundlink but not my IMac.  I have tried all the usual solutions but nothing works.  It has worked recently but not in the last week. Help

    make sure it's not being connected to by any of the other two
    one can only connect 1 device at the time and just by waking up sometimes a headset connects to a device
    automaticly
    then forget the bluetooth device in OS X and put the headset in pairing mode / discovery mode and connect with it once again with the mac

  • Constant Error; Adobe Flash Player 11.4 r402 has stopped working. But NOT running Trusteer Rapport.

    I am experiancing this unbelieveably annoying and constant Flash error;  Adobe Flash Player 11.4 r402 has stopped working.
    But NOT running Trusteer Rapport, I never have, and it's not even installed on my computer.  So what's causing this?

    There were a couple AntiVirus/AntiMalware products that keep coming up, but I haven't validated that in the lab and don't want to call anyone out publicly without reporting the issue to them first.

If you could tell me what antivirus/antimalware products and versions you have installed, that would be helpful.
    So, third party stuff aside, I'd like to know more about the crashes your seeing:
    1.) Please provide links to the Firefox crash reports.  If you have multiples, the first few would be great.
         In Firefox, type about:crashes in the address bar
         If the link starts with "bp...", it's already been submitted -- just right-click on it and copy the link, and paste it into the reply here.
         If not, click it to submit it, and copy the subsequent link.
    2.) In firefox, type about:support
         Just copy and paste the output into the reply.
    3.) In Firefox, type about:plugins
         Please copy and paste the output into the reply
    4.) Please provide the output of the DirectX Diagnostic Utility
         Click Start > type "dxdiag" [enter]
         Click Save All Information
         Copy the output of the file into the reply, or use Adobe SendNow/DropBox/PasteBin to share the file.
    5.) If you can provide an exact URL and step-by-step instructions on repeating the crash (if it's consistent), that would be really helpful.  My goal is to build out a configuration that matches yours as closely as possible, reproduce the problem and then debug it.
    If you're not comfortable sharing that diagnostic information publicly, send me a private message.  Just click my name and use the options on the right.
    Thanks!

Maybe you are looking for

  • Acrobat standard 9.0 download

    I purchased acrobat 9.0 as a download in 2010. I have a serial number. I need the software download again. HELP!

  • Sound input and frequency comparing

    Hi everyone, I am using Labview to create a tuner for eletric guitars. I don't know how to acquire the data from my sound card input. Is there anyone who can send me the Labview diagram? I need it urgently, thanks in advance Cosmo

  • Installer was unable to access a critical file/directory. Please try installing again.(Error code: 43)

    Problems with installing the Creative cloud update - (Error code: 43). Anyone had this problem and found a fix for it?

  • Variable text

    I am creating a flyer my client would like to personalize the flyer to each person that the flyer is sent to. It should read (persons name) how would you like to save 40% see detail inside. I need to know how to create a variable text box that would

  • Changing Order in Browser

    Hi all! Yesterday I noticed that my custom order of my projects in the browser mode changed from 'custom' to 'import date'. It's not the first time this happened to me. I just wonder whether it has has something to do with 'Rebuilding Library', which