A Question about Compatibility with Parallels

Hello, all. I wasn't too sure where to post this, and I saw someone else posted a Parallels question here so I figured it wouldn't be a big deal. I have a MacBook Pro 15 Inch that I bought in May this year, and I was wondering if I could use Parallels to install Windows XP on it. I'm not sure if it will work because Apple apparently designed my computer to only work with Windows 7 if I were to install it through Boot Camp, but since I'm not really in the mood to shell out two hundred bucks for that OS, I was hoping I'd be able to just get Parallels and install Windows XP without any post-installation issues (like being unable to connect to the Internet and such, like the problems one would run into through a Boot Camp install if they didn't install the drivers). Could I use Parallels on my Mac instead of Boot Camp and install Windows XP?
Also, I have a minor question that I think I might already know the answer to, but I just thought I'd ask anyway while I'm here. Could Parallels Desktop 4 work with my computer?

AxelRWolfe wrote:
Could I use Parallels on my Mac instead of Boot Camp and install Windows XP?
           Yes.
Could Parallels Desktop 4 work with my computer?
Verify that you machine meets the below requirements:
Hardware and Software Requirements for Parallels Desktop version 4
Hardware Requirements
  Any Macintosh computer with an Intel processor (1.66 GHz or greater). To run 64-bit
operating systems in virtual machines, an Intel Core 2 or later processor is required.
Minimum 1 GB of memory, 2 GB of memory is recommended.  
CPU must support  Intel-VTx Virtualization feature
Almost on all CPUs used in Mini Macs Virtualization is supported, but in several early Mac Mini models it may be disabled in firmware.
Please see article http://kb.parallels.com/en/5653 how to enable Intel VT-x Virtualization support. 
Note: Your Mac must have enough memory to run Mac OS X and your Mac applications,
plus the memory required for the virtual machine's operating system and the applications
installed in it.   About 300 MB of disk space on the boot volume for the Parallels Desktop installation.
About 15 GB of disk space for each virtual machine.  
Software Requirements
Mac OS X Leopard v10.5.2 or later
Mac OS X Tiger v10.4.11 or later  

Similar Messages

  • Motherboard upgrade, question about compatibility with existing hard drives etc.

    Hi, I currently have an K8N Neo2 Platinum socket 939 board, 2 gig of OCZ Platinum PC3200 DDR400 RAM, a Lian Li V1000 ATX case, an AMD Athlon 64 3000 processor, 2 Sata 1 hard drives and a TAGAN TG380-U01 380W power supply. All this stuff is from around 2005.
    I'm thinking of upgrading my board to a MSI 870A-G54. Obviously I'll need new memory and a new processor, but my question is this - will I still be able to use the Lian Li case, and the Sata 1 hard drives/power supply with the above board? Also, does it have onboard graphics or will I need a dedicated video card?
    Thanks,
    Chris

    Quote from: russianpolecat on 05-May-11, 07:19:26
    Hi, I currently have an K8N Neo2 Platinum socket 939 board, 2 gig of OCZ Platinum PC3200 DDR400 RAM, a Lian Li V1000 ATX case, an AMD Athlon 64 3000 processor, 2 Sata 1 hard drives and a TAGAN TG380-U01 380W power supply. All this stuff is from around 2005.
    I'm thinking of upgrading my board to a MSI 870A-G54. Obviously I'll need new memory and a new processor, but my question is this - will I still be able to use the Lian Li case, and the Sata 1 hard drives/power supply with the above board? Also, does it have onboard graphics or will I need a dedicated video card?
    Thanks,
    Chris
     Case, HDD - Yes
     Onboard graphics - No
     PSU, maybe but probably not. Something with more power would probably be wise to get. What PSU you get would depend on the CPU & graphics card you get.

  • A few questions about MacBooks and Parallels Desktop.

    I have a few questions about MacBooks and Parallels Desktop.
    1) I understand I need at least 1GB of RAM to run Parallels Desktop but what about the hard drive, is the stock 60GB drive big enough?
    2) Related to question 1, even if it was big enough to allow me to install and run Windows would the 60GB drive be enough if I wanted to install a Linux distribution as well?
    3) This has nothing to do with Parallels Desktop but thought I'd ask it here anyway, do Apple Stores carry just the stock MacBooks, or do they carry other configurations?
    Thanks
    Keith

    1. Depend on how intensive you use that HD for saving data on both Mac OS and XP. For standard installation on both OS X and XP, the space of 60 Gb is enough.
    2. Same answer as no 1. You can install all three on that HD space, but the extra spacce available will be less and less for your data. You can save your data on external or back up on cd/dvd and erase it from the HD to keep the free space.
    Remember to leave at least 2 or 3 Gb for virtual memory usage.
    3. Just call them, maybe they don't have it in store stock, but by appointment they might configure one for you before your pick-up date.
    Good Luck

  • I want to upgrade to Lightroom 5, but I'm concerned about compatibility with my 2008 intel Core 2 Duo iMac with only 4G of Ram.  Will I be able to run Lighroom 5 if I upgrade from Snow Leopard to Lion?

    I want to upgrade to Lightroom 5, but I'm concerned about compatibility with my 2008 intel Core 2 Duo iMac with only 4G of Ram.  Will I be able to run Lightroom 5 okay if I upgrade from Snow Leopard to Lion?  What will happen to the applications that aren't 64-bit compatible?  Also the Eye-one Display 2 colorimeter to calibrate the monitor will not run on Lion, so that will be an expensive upgrade to an i1DisplayPro. Is the upgrade important enough to offset the expense?  I have an Epson R2000 printer.  Will there be problems with the drivers if I upgrade to Lion?  It would be great to hear from other mac users who are also photographers and who print their own photos.    

    Before upgrading to Lion be sure to read this link:
    https://discussions.apple.com/docs/DOC-6271
    Adobe lists these requirements:
    http://www.adobe.com/products/photoshop-lightroom/tech-specs.html
    Looking at http://www.everymac.com/ even the earliest 2008 iMac was fully 64 bit, even though Boot Camp doesn't support 64 bit Windows on that machine.

  • Question about function with in parameters

    Hello,
    I have a question about functions with in-parameters. In the HR schema, I need to get the minimum salary of the job_id that is mentioned as an in-parameter.
    this is what I am thinking but I dont know if it's correct or not or what should I do next!
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    begin
    SELECT min_salary INTO min_sal
    FROM jobs
    where job_id = get_minimum_salary(xy);
    RETURN i_job_id;
    end get_minimum_salary;
    thanks in advance
    EDIT
    Thanks for your help all.
    Is it possible to add that if the i_job_id which is the in type parameter does not have a minimum salary then use the following function to register an error:
    create or replace procedure insert_error (i_error_code in number,
                                                      i_error_message in varchar2)
    as
    begin
    insert into error_table (error_user, error_date, error_code, error_message)
    values (user,sysdate,i_error_code,i_error_message);
    end insert_error;
    This function is basically to say that an error has occured and to register that error, at the same time I need to print out the error using the dbms_out.put_line.
    Any ideas of how to do that?
    Thanks again
    Edited by: Latvian83 on Jun 1, 2011 5:14 AM

    HI
    I have made little bit changes in ur code. try this
    create or replace function get_minimum_salary (i_job_id in varchar2)
    return number
    as
    v_Min_sal jobs.salary%type=0;---- Variable declaration
    begin
    SELECT min_salary INTO v_ min_sal
    FROM jobs
    where job_id = i_job_id;
    RETURN v_Min_sal;
    end get_minimum_salary;
    Regards
    Srikkanth.M

  • Question about Communication with Oracle 7

    Hi,
    Generally we use Oracle Snapshots for Communication, but since Oracle 9.2.0.5 do not work with Oracle 7.1.5.2.4. we are thinking about do use Oracle Interconnect for this Link.
    Now I have the following two Questions about Communication with Oracle 7:
    1. Is an Adapter for Oracle 7.1.5.2.4 available?
    2. From your experience, does it make sense to install Oracle Interconnect for implementation of only one read only Link with 3 Tables if an OAS for BI is available?
    Thanks,
    Hannes

    1. The Oracle database adapter is for Oracle 8i and up. I checked the code needed in the database and doubt that will work in Oracle 7.
    1. The other option Advanced Queuing also needs 8i and up.
    2. For me it doesnt make sense that you want to connect to Oracle 7. Oracle 7 is unsupported and should not have to be developed against. Also the license costs for Oracle Interconnect ~17K without any discount is a bit steep for read only links to three tables. Having the OAS means you wont have to pay another additional ~17K for the apps server.

  • Questions about editing with io HD or Kona 3 cards

    My production company is switching from Avid to Final Cut Pro. I have a few editing system questions (not ingesting and outputting, just questions about systems for the actual editors - we will have mac pros with either kona 3 or io HD for ingest and outputs)
    1) Our editors work from home so they most likely will be using MacBook Pros - Intel Core 2 Duo 2.6GHz 4GB computers with eSata drives to work on uncompressed HD, will they be able to work more quickly in FCP if they are using the new Mac Pro 8-Core (2 Quad-Core 2.8GHz Intel Xeon) or will the mac book pro's be able to hold their own with editing hour long documentaries, uncompressed HD
    2) Will having an AJA Kona 3 (if we get the editors mac pros) or io HD (for the mac book pros) connected be a significant help to the editor's and their process, will it speed up their work, will it allow them to edit sequences without having to render clips of different formats? Or will they be just as well off without editing with the io HD?
    I'm just trying to get a better understanding of the necessity of the AJA hardware in terms of working with the editors to help them do what they have to do with projects that have been shot on many formats- DVCPro tapes, Aiptek cameras that create QTs and P2 footage.
    Thanks

    1. with the IoHD, laptops become OK working with ProRes and simply eSata setups. Without the Io, they can't view externally on a video monitor (a must in my book). It will not speed up rendering a ton, nor will it save renders of mixed formats. The idea is to get all source footage to ProRes with the Io, and then the Io also lifts the CPU from having to convert ProRes to something you can monitor externally on a video monitor, and record back to any tape format you want... all in real time.
    2. Kona 3's on Towers would run circles around render times on a Laptop... no matter what the codec, but the Kona does not really speed renders up. That's a function of the CPU and just how fast is it. (lots of CPU's at faster speeds will speed up render times).
    I'd recommend you capture to ProRes with Io's or the Kona 3 and don't work in uncompressed HD. You gain nothing doing it quality wise at all. And you only use up a ton of disk space (6 times the size in fact) capturing and working in uncompressed HD, which from your post, you're not shooting anyway. The lovely thing about ProRes is that it's visually lossless, efficient, and speeds up the editing process. Mixing formats can be done, but it's better to go to ProRes for all source footage, and edit that way.
    With either the Kona or the Io, you then can output to uncompressed HD tape... that's what they do for you no matter what codec you've edited in. ProRes is designed to be the codec of choice for all HD projects when you're shooting different formats especially... Get them all singing the same tune in your editing stations, and you'll be a much happier camper. Only reason to buy laptops is portability... otherwise you're much better off with towers and the Kona 3 speed wise.
    Jerry
    Message was edited by: Jerry Hofmann

  • Question About compatibility

    Is Lenovo G500 compatible with windows 10?(Aka Are there gonna be any very serious issue if you update a Lenovo g500 to windows 10?) EDIT: I saw the compatibility list and it says that is not compatible but the "Get Windows 10" app says it is, can anyone please tell me if it will be ok to upgrade or not?

    Hello,
    When running Windows, there will be absolutely no difference between your Mac and any other PC that has the same processor, graphics card, etc.
    So, yes, you'll be able to use all the same games that you could on a similarly equipped PC. The Mac is just a PC that can also run the Mac OS.
    Understand, that you will need to run the Windows games in Windows. The Mac OS is only going to run Mac OS software (unless you use something like the Parallels program that permits running Windows and the Mac OS Simultaneously).
    I hope this helps.
    Let us know if you have other questions.
    P.S., if you'd like, go ahead and click the "Helpful" or "Solved" buttons on any of the posts / replies above if you feel they were helpful or adequately answered your question.

  • New to Logic 9, Questions about mixing with summing box.

    Hello - glad to be aboard. I just picked up Logic9 last week.. I have been on DP...well since it was P (I guess 20yrs,) Been contemplating the move for quite some time, but as I too, pay the bills with music, I've got to stay on DP until I and Logic are full integrated into my system. With that being said, I am DP by day- getting things done, and when the day is done, Its Logic time. I'm in the studio on forums, watching a bunch of videos that I bought, taking notes creating "Key Command" Flash cards - just kidding on that one) - I am really looking forward to making the switch. - I was going to order DP6, as well, but I think there's no need for that... this might be the right move.
    On to my question....
    My setup in the nutshell - Mac2.8. with MOTU PCIe,, using MOTU audio interfaces, 2x2408mkIII's, 1x24i/o, and 1x308) - I am using 2 x Rosetta 800''s as well, and from my DAW mix out through them into a Dangerous 2BUS summing box - which means - obviously, that I group my tracks in my daw and send out various outputs (i.e, Output 1-2 might be vox, 3-4 for gtrs, 5-6 for drums, etc.) - I then run to the 2Bus, out into a TK Audio BC1 buss compressor, routed back into the Apogee, and into the DAW - where I bring the stereo mix back in. - This means (2) things
    1. I have no need for a Master Fader
    2. I don't bounce
    There are a couple of things that are confusing me - It seems that in Logic, when i create a track, Logic is "kind enough" to think ahead for me, and not only gives me the audio track, but also another fader, I guess which acts like an overall channel strip or fader for that output. It also assigns a master fader for me as well. In DP, when i create an audio track - I get just that - an audio track. Its routing assignment is indicated by the inputs and outputs I select. If I want to route it out to inputs 1-2, then I choose that output - but nothing else pops up. If I had the need to assign a Master Fader - then I would key command to add a Master Fader. While, in the scheme of things its not that difficult to just "delete" these tracks - I am sure during the course of normal work flow, it will get old. I tried deleting the master fader (on a test project I was working on) and saving as a template. But when I opened up the template and started assigning audio tracks, the ol' master fader came back. To me, it seems like fader duplication that I really don't need to see. - I just want to see my audio tracks - and route them to their appropriate outputs from the channel strip.
    I assume the automatic assigning of a master fader - would be helpful if I wasnt mixing "outside" the box, and would be required if I "bounced" my final mixes down from within Logic. - And I also would assume that these Aux channels, or whatever that are assigned when i create audio tracks, are nothing more than overall "volume: controls for that output.
    Another annoying issue related to this - I have named all of my ins and outs withing the MOTU PCI interface - I then when into the I/O assignment page in Logic and requested that Logic use the names provided by the driver (my names) - it does.... In parenthesis after their's - but outputs 1-2 - keep reverting to the name "Stereo Out".... frustrating.
    Again - While I will miss alot of things from DP....I actually am seeing quite a few benefits over DP and the videos.. while not as useful as hands on work... are training me to see the screens, workflow, etc - and they are very helpful. When I do go into mess around - I am much farther ahead.. and at least know kind of where I am.
    But I'm really trying to minimize the impact of the switch.... so perhaps some of the long-time guys can asssit. I havent seen much on the various forums about diverting from logic's norm out into summing boxes....etc.
    Thanks very much - sorry about the long winded message - But I wanted to explain it the best I could.
    kj
    orcasound

    Hey Orcasound, welcome to the forum, and also welcome to Logic.
    Nice setup BTW, especially the Dangerous 2BUS into the BC1 coming back to the Rosetta 800"s, that gonna sound sweet mate.
    OK Q1: The master fader for output 1-2 is always gonna be there, I've never found a way of getting rid of it, you can fortunately set up the mixer so that it won't show though. At the top of the mix window is a heap of boxes highlighted in blue, all you need to do is deselect the master and the output as per this screen shot:
    Save this in your template and you'll never have to see those pesky faders again.
    Q2: Same thing really, logic will always show 1-2 output as stereo out. Which is annoying, even if you manually name them from the I/O labels window it's always stereo, everything else if fine apart from 1-2. To be honest I've just learned to live with it.
    Glad you made the switch, I find DP to be bloated and a bit tired nowadays.

  • Questions about rebuilding with end goal of mortgage in 1.5 -2 years

    Hello all. I have been reading the forum diligently for the last few months, but I’m in a conundrum as to what to do next in my rebuilding process and was hoping for advice. Here’s a snapshot of my current situation. In 2008- 2009 I had a sudden lay off and a long term relationship end. I was left holding what seemed like insurmountable debt.  I paid the collections (didn’t know about PFD) but was still left with a credit report that had a bunch of lates, a collections account and a paid judgement.  All accounts closed on me with the exception of a JCP that I had forgotten about, but American Express sent me a preapproval for the Optima Card with a 700 CL. I took it gratefully, and went off to lick my woundsAfter years of struggling in a few low paying jobs I’ve made it back to my former status salary wise and I’m looking to get myself into a small home in the next 1.5 to 2 years. What’s on my credit report? JCP( 2008) – 4800 CL again thanks to his forum, hit the luv button and got a huge CLIAmex Optima ( 2009) – 2100 CL (thanks to the 3x Amex thread I got my first CLI in years on this card)Credit Union Visa(3/ 2013)- 2500 – this card hasn’t budged in two years, but is my lowest interest rate.Care Credit (10/2014) -1500 CL wish I had known about the recon when I apped for this card. It's too low to be useful to me.Discover(4/2015)- 6000 CLAAoA is 7.9 years. Credit history is 18 + Years. Utilization is 9%1 paid CO on Experian due to fall off August 2015.1 paid judgement on all 3 CRAs due to fall off in April of 20161 inquiry on TU and 1 Inquiry on Equifax. None on Experian.No lates.CK Fakos 750, Discover TU Fico 712, Experian 665 My question is…what next?  I would love to app for the American Express Blue Cash Everyday card and the Chase Freedom in October, but it occurs to me that I have no loan info on my report as my old car loans and home loans were from nearly 16 years ago. I want to avoid a car payment until I buy a house, however, does it make more since to get a loan from my CU to flesh out my report or should I go ahead and app for those two credit cards after that Collection falls off and my Discover ages a bit?   Thanks in advance for any insites.

    PDXgigi wrote:
    Thanks Dagsky. Any ideas on how long I should take to pay the loan back for best score?  I'm wondering if I should I have it paid off before I look for a mortgage. Also, what do you consider to be small? I was thinking of taking a year to pay back 1000 to 1500. I have some concerns about score dropping when the loan was paid off as well. 
    Thanks again!Small as in no more than $500. Terms as long as you can get.  If your CU won't go more than 12 months, go somewhere else. SDFCU for example, will go 36 months on a $500 secured loan at 3.99%, monthly payments of $14 and change. 

  • Installing new hard drive in Mac Pro - question about compatibility.

    I'm looking to install an extra internal hard drive in my 2009 Mac Pro, but I need to know if there are any compatibility issues with newer hard drives. I am looking at the Western Digital WD1002FAEX Caviar Black:
    http://www.amazon.co.uk/gp/product/B0036Q7MV0/ref=s9_simh_gw_p147_d0_g147_i1?pf_ rd_m=A3P5ROKL5A1OLE&pf_rd_s=center-2&pf_rd_r=1HY9SF4S3JFEA79TK610&pf_rd_t=101&pf _rd_p=467128533&pf_rd_i=468294
    Would anyone be able to tell me if this is likely to be compatible with my 2009 8 core Mac Pro? Or if there is anything I should be looking out for in particular? I know pre-installed hard drives are 3GB/s and the above hard drive is 6GB/s, does this matter?

    Any SATA drive
    About urls:
    http://www.amazon.co.uk/gp/product/B0036Q7MV0/
    is all that is needed.
    For a bit more, WD1502FAEX WD Black 1.5TB
    http://www.wdc.com/en/products/internal/enterprise/

  • Question about compatibility of OS X 10.6.8 system disk

    I recently bought a used early 2006 iMac Intel (Model 4.1) from an authorized Apple reseller (my old iMac G5's logic board finally died and was not worth fixing), which came with a fresh install of Snow Leopard OS X 10.6. I have updated all the Apple software on this computer and backed it up onto a bootable backup firewire external HD.
    My question is: If I buy a new OS X 10.6.8 system disk from Apple, and if I ever have to reinstall the operating system onto the iMac (NOT an erase and install), would there be compatibility problems resulting from my using a NEW disk on an iMac whose (updated) OS X 10.6.8 system software was originally installed with ANOTHER OS X 10.6 system disk? (I don't know for sure what version of OSX 10.6 was used in the original install, although I think it was 10.6.8.)
    Incidentally, having Snow Leopard is Great. It makes much more software available that was not compatible with Tiger. (I also have some newish PCs with Linux that help meet my computer needs.)
    Many thanks for any feedback.

    Apple sells Mac OS X 10.6.3 DVDs. These can be used on any Intel Mac which originally shipped with 10.6.2 or earlier without running into compatibility problems.
    (89825)

  • Question about compatibility w/ Mac OS

    Ok... I'm new here (since I've never had a problem with my Zen Vision: M, 30 GB) so I don't know how many times before my question has been asked. I'm thinking about purchasing a Mac Book, and don't know how my Zen will work on it. I know that Mac's can now run Windows, and I've also learned about?this 3rd party?software called XNJB for Creative users running on OS X. My question is, is there any other option? I spoke to this guy at the apple store that said you can install Windows Media Player on OS X, so would it be possible to just use that to transfer my files into my Zen without having to install Windows or some third party program?Message Edited by cinsere89 on 05-08-200709:08 AM

    Only software that I am aware of for syncing a zen vison m to a mac is:http://www.wentnet.com/projects/xnjb/?

  • Question about benchmarking with Premiere Pro

    Hi all:
    I am a writer for a website that focuses a lot on benchmarking PC hardware and am in the process of refreshing our CPU test suite. I'd like to implement Premiere Pro into our testing, but as a new architecture launch is due in a couple of weeks, I am working on this with some haste. I'm a novice with this tool, so it's my hope that I can get the "a-OK" from experienced users who know whether we're testing with the tool in a reasonable way. This is important because we implement real-world benchmarks for the sake of showing users of such tools how one CPU can compare to another in terms of raw performance. Other tools we benchmark with include 3ds Max, Maya, Handbrake and Lightroom (which I desperately wish supported more than a couple of threads).
    That all said, the project I've created is not conventional, as it's more of a worst-case scenario. I recorded about 18 minutes from a new PC game using Fraps, resulting in 35GB worth of source files. These are not "lossless", but are close to it (300~370Mbit/s). I take these files, crop most of them, add in cross dissolves and then encode it to MPEG 2 Blu-ray using almost default settings. In order to stress the CPU better, I enable the "Use Maximum Render Quality" (is that often used in production encodes?) option, and also change to a VBR 2-pass.
    Here are some quick results from the benchmarking I did this afternoon:
    Intel Core i7-975 (4 core, 8 thread, 3.33GHz) - 46m 40s
    Intel Core i7-975 (4 core, 8 thread, 4.00GHz) - 38m 45s
    Intel Core i7-980 (6 core, 12 thread, 3.33GHz) - 30m 36s
    As seen there, in an equal-clock 4 core vs 6 core battle, we saw the latter encode finish about 50% faster (the scaling is rather amazing). But the question remains - can I feel confident in benchmarking this as a project? Would it ultimately prove useful to you guys?
    Thanks much for any help!
    PS: As an added question, does Premiere Pro take advantage of SSE4 (or beyond) instructions, and will it support AVX in the future?

    Hi Jim:
    Thanks for the response!
    I don't own a video camera (boy, do I ever feel like a reject, now). Would it be an inaccurate way of doing things if I took the same project I have as mentioned above, export it to AVCHD 1080p/24 and then use that as the source file to encode to MPEG-DVD? It'd still be game footage, but essentially the codec is what really matters (I could be wrong; perhaps the codec would work better with real images).
    Sorry if that comes off as a ridiculous question. If that's not a good solution I will see about getting such a source from somewhere.
    Thanks a ton!
    Edit: Would it be sufficient to use a Blu-ray .m2ts file specced at 1080p/24 AVC MPEG-4 as a source? I assume it's AVCHD given it's 1080p.

  • Just purchased Z97 Gaming 7 and was wondering about Compatibility with RAM

    Hello there,
    Just purchased the Z97 Gaming 7 MB and was wondering if it is compatible with the following RAM -
    Kingston HyperX 16 GB 1600 Mhz CL9 DDR3 HyperX Beast Desktop Memory Kit (2 x 8GB) - Intel XMP
    G.Skill 16GB Ripjaws X Dual Channel Memory Kit - Blue (2x 8GB, DDR3 1600MHz,1.5v, F3-1600C9D-16GXM, XMP Ready)
    Corsair CMZ16GX3M2A1600C9 Vengeance 16GB (2x8GB) DDR3 1600 Mhz CL9 XMP Performance Desktop Memory Kit Black
    Regarding the Kingston, the model number specified in the MSI compatibility list of this board is very similar to the ram I've listed.
    Thanks in advance and feel free to share your opinion on the rams or if you recommend anything else.
    Thanks

    Quote from: Sea Dog on 06-August-14, 14:36:13
    It's too late for that.    OP inquired about Z97, this has taken a turn to a Z87 and a debate. 
    Seems you have a bit to learn about RAM speed and actual performance achieved. Over 1866 doesn't show much gain. Higher the speed the more you have to 'loosen' the timings, :: rest of quote snipped ::
    Yes, I probably could learn a thing or two about memory I suppose.  I don't claim to be an expert on this subject.  But, I've built several systems (always with Asus boards...) for 15 years or so for myself, family, and friends.  I have a BS in computer science and masters in Electrical Engineering working in the SCADA/Control Systems field (look it up) so I do know a thing or two.  I've never had a problem till now, my first MSI board.
    I'm not sure how responding to a thread, hoping a user’s experience with memory would benefit me, is "hijacking" a thread but call it what you will.  I don't recall too much of a debate except from you and the forum memory expert (not the GSKill guy, the other guy...) so back off.  Funny how MSI's recommended memory list(s) prominently mention GSKill as being compatible multiple times with my exact memory, the F3-17000CL9Q-16GBZH, being listed as well.  Yet, GSKill is up to something funny with their timings which benefit only Asus or whatever while causing problems on everyone else motherboards.
    For future reference, I'm not claiming anything in particular (such as memory) is causing my system to crash.  I saw the forum sticky about GSKill memory and this thread which mentions GSkill.  Since I'm using GSkill, which I have for multiple system builds without issues in the past, I began to wonder about something.  After all, things do happen.  Perhaps I simply got some bad sticks or something.  It does happen regardless of brand/vendor.
    For the record, I suspect the stupid Killer NIC, its driver, and/or system tray panel are to blame for my issue(s).  The more I think about this NIC, the more I hate it.  Give a boost to a specific app/game for better performance.  That's marketing BS.  All it does is give a specific app/game priority by purposely dropping performance of all the other apps so the designated process looks better relative to the other programs on the same system.  I call that false advertising and potentially something worse.
    Time will ultimately tell where my issue is.
    MSI may have lost a customer...
    The best of everything to everyone here and enjoy the rest of the day,
    Chris

Maybe you are looking for

  • Form problem with less than (le)

    I have a form, when users push the next button there will be some input field checking before the user is realy going to the next page. Now I want to check if the zip code (Netherlands) is not less than 6 postions. In the begining I used this code: i

  • Classic synchronizing problem

    My Classic is a couple of years old and has been restored about three times now. For some reason(s) it crashes and have to go thru the resoration stages for it to work properly. Now it connects to iTunes but but has trouble synchronizing when music f

  • Files extentions are changed when sending Mail

    I lately I discovered that whan sending an attached file like pdf or others, the an email, the receiver gets a modify extention file. For example .pdf become .pdfq or .pdff. The same modification appears on my sent folder. I call Apple but they could

  • New MBP won't turn on unless it's on AC power

    So, my new MBP won't power on unless it's plugged in. It had 80% charge left. The sleep/wake light was on, but the keyboard was unresponsive and the screen remained off. This happened out of the box, so I charged it, and thought that was it. This mor

  • I am trying to add a pdf file into my website which must be readable to all but must not be download able to anybody

    I am trying to add a pdf file into my website which must be readable to all but must not be download able to anybody. The document is about motivational topics likes short stories and quotes and the website is [link removed] If anybody is already usi