Hardware requirements to run Hyper-v clients

Can a thin client with a Celeron or atom processor be used as a thin client? I want to set up virtual machines for VDI that can do most basic home computer uses - but this would include streaming video's with good quality.

Hi,
As mentioned in the link posted by Steve, you can check the setting of Data Execution Prevention.
And according to the following blog, some hardware features that Hyper-V does not utilize and enabling them will prevent Hyper-V from loading.  (If your BIOS doesn't have this hardware feature, then igonre this part)
(Hyper-V : What to
Disable in the BIOS)
Enable Hardware settings in BIOS to run Hyper V
http://blogs.technet.com/b/iftekhar/archive/2010/08/09/enable-hardware-settings-in-bios-to-run-hyper-v.aspx
Yolanda Zhu
TechNet Community Support

Similar Messages

  • Hardware requirement for running exchange 2010 on vmware workstation

    Dear Team,I need to create a exchange 2010 sp2 on a guest os on vmware workstation.kindly help me out with the physical hardware requirements for a home user

    Hey Mukund26,
    Before I answer your questions, my suggestion would be for you to figure out exactly what you want to get out of running that Exchange lab.  Are you trying to learn Exchange features like DAGs?  Are you trying to learn about virtualizing Exchange?  When you figure that out you'll be better able to answer question 1 since you may not need all of those virtual machines.
    Here are my thoughts on your questions.
    1) It is probably technically possible to run 10 virtual machines on the configuration you have but you're going to have pretty bad performance. I would try to trim that down to only the virutal machines that you really need in order to use the lab how you want to use it.  Here are some questions that may help you figure out what you need:
    Why do you need two domain controllers?  I don't think you need to worry as much about redundancy in your lab. 
    Why do you need 2 ESXi hosts and a vCenter?  What purpose do they serve in this configuration?  Are you trying to run the Exchange VMs nested under the ESXi VMs?  If so, why?
    Is there a reason why you want to separate out HTS/CAS from MBX in your lab?   Combining all roles together can reduce the number of VMs you need.  If you separate out the roles you'll need to allocate a lot of RAM to support all of those Exchange VMs.
    2)  Running a lot of virtual machines on a single 1TB SATA disk, especially a 5400 RPM disk, is going to be slow.  It'll be especially painful when the VMs are booting up, rebooting, shutting down, etc..  Try to stagger the power on operations so they don't all boot at once.  For example, first boot your DCs, then boot your HTS/CAS, then your MBX, etc.   There is no doubt that configuration will be slow, so if you can get your hands on an solid state drive with enough space you'll have significantly better performance.  For the purposes of a lab, though, it is probably ok if you can be patient.
    3) I think the i5 processor will be just fine for this lab.  Usually in a lab setting CPU performance isn't the most important thing so similar to above as long as you can be a little patient I think that CPU will suit you just fine.
    As I said figure out what you want to get out of the lab and then you can determine how many VMs you need and whether or not you want to upgrade hardware.  If you're looking to learn about Exchange 2010 in general I would suggest using multirole servers, getting rid of one of the DCs, and not worrying about virtualizing ESX/vCenter so that you can learn.  If you're looking to learn about virtualizing Exchange 2010 on vSphere then let's figure out exactly what you want to get out of it and figure out what you can learn using VMware Workstation and what you really need vSphere for.
    Best of luck!
    Matt
    http://www.thelowercasew.com

  • What are the hardware requirements to run Premiere Pro CS 5.5 suite?

    A couple of years ago, I purchased a high-end HP desktop specifically for working with Premiere Pro CS 5.5.  My local computer store who has helped me with my computer is in awe of my machine -- powerful processors, massive storage, etc.  Yet, there is very little I can do with Premiere Pro on my machine.  Encore simply locks up my machine and forces a restart with no resolution hints available so I can't do much in the way of output, etc.  I get a lot of messages that Premiere "can't do this and can't do that". 
    What I'd like to know is EXACTLY what Adobe Premiere CS 5.5 needs in the way of a hardware configuration, so I can get my desktop corrected so I can do professional video work?  If I can't do anything with my system, there doesn't seem much value in upgrading to the online version.  Thanks.

    yes.....visit the tweakers page to see the recommended types of setups and provide a detailed description of your PC and its setup HERE, so after absorbing some criticisms....hah !...you may get some great tips to help you. Indicate your CPU, how much memory,current video card,and disk system,( how many drives,what each is, speed of each,etc.).
          Also indicate the types of video you are trying to edit........what codecs....and if you are trying to apply non-CUDA accelated effects to your clips.
       If changes are recommended here to improve performance, you can visit the PPBM 7 website to run a performance test BEFORE and AFTER, to compare results. As you are using the " older" 5.5 version....I believe you can still run the PPBM 5 test that was made for your PPro version. Beware if you are using Canon generated MOV files on the timeline, a slow 32 bit process is introduced, ( Quicktime ), that cripples the 64 bit PPro and limits memory use to 4 GB....it is better to transcode to the free cineform codec obtainable on the go pro site...especially if using CS5....

  • What are the minimal hardware requirements to run XCode 4?

    I want to buy a second hand macintosh just for xcode so I don't want to spend much money. Thank you for your help.

    Some info to read through
    http://apple.stackexchange.com/questions/14923/what-is-the-minimum-hardware-need ed-to-run-xcode-4
    http://lists.apple.com/archives/xcode-users/2011/May/msg00168.html
    Cheers
    Pete

  • Which classes are required to run a basic client app outside of jDev?

    Basic question, folks.
    For a minimal program, say a frame and a swing component, which classes need be copied (to a system without any Oracle software installed) in order to run? Is there a listing available that describes which class/jars are needed if x component is used?
    Also, will jre 1.4 work? Or do I need to copy a special Oracle JVM? If so, is there a specific installer just for it?
    TIA
    -Nat

    Nathan,
    To run any Java application, you will need a Java Runtime Environment(JRE) which is part of the Java Software Development Kit (SKD). If you want to distribute your application with a JRE, you can copy the .../jdk/jre directory from JDeveloper (check the readme file about copyrights and other legal issues) or you download it from http://java.sun.com/j2se/1.3/download.html
    Both the AWT and Swing libraries are included in the JRE in the same jar file as the basic java.lang or java.io classes. The name of the file is rt.jar.
    If your program runs with the Oracle VM, it will run with Hotspot. Both VMs are equivalent when running your application. It is only for the development phase that we strongly suggest to use the Oracle VM because it is much better instrumented for development than any other VM.
    If you want to know precisely which classes are loaded from which jar files, run your application from a command line and add -verbose:class.
    For example:
    C:\JDev9\jdk\demo\jfc\SwingSet2>java -verbose:class -jar SwingSet2.jar
    - Cedric
    JDev. team

  • NI ELVIS II Freescale hardware required to run vi's to remove error 200559.

    Hi,
    I read DAQmx tutorials, did all trouble shooting steps such as highlight execution, probes, and checked all sub vi’s for the security system main vi, etc as in the word attached file and also attached vi's in zip file. The vi's gives error of 200559 in my LabVIEW 2012 software. Make sure you must have NI ELVIS II hardware to test these vi’s.    
    If my this post is duplicate because no one either knows about my question, make my post abusive, and so, I have to put my post again as this is my right to get help for my question. I prefer and appreciate help from NI engineers and people, who are really nice to give their best knowledge, great opinions, helping through vi’s and screenshots for this error of 200559. 
    Ali Tariq Bhatti
    Advice: Some people talk on different issues and abusive against your post because they do not want to help and arguing with you on some other topic. You all will observe and I also observed, so also do not want to mention their name and best way is complaint them to the moderator. If anyone still wants to talk on different issues against the post, other way is to do private message.
    ~~~Be nice, have faith in ALLAH(God)~~~
    Attachments:
    NI ELVIS II Security System VIs.zip ‏313 KB
    Error 200559.docx ‏500 KB

    Hi,
    I am now not getting the error of 200559. As, you know, these vi's work with freescale plugin NI ELVIS II board. 
    Now, my security system vi's without any error, but not showing any result using freescale plugin NI ELVIS II board and LabVIEW 2012. I don't know.
    Here is the video link for information: http://ni.adobeconnect.com/p35906816/?launcher=false&fcsContent=true&pbMode=normal 
    Any one's help and other's NI engineers, etc. help is appreciated.
    Ali Tariq
    Advice: Some people talk on different issues and abusive against your post because they do not want to help and arguing with you on some other topic. You all will observe and I also observed, so also do not want to mention their name and best way is complaint them to the moderator. If anyone still wants to talk on different issues against the post, other way is to do private message.
    ~~~Be nice, have faith in ALLAH(God)~~~

  • Could anyone tell me what is the minium requirement to run a java program.

    I am new to java. Could anyone tell me what is the minium requirement to run a java program. Thanks in advance.

    Lara1983 wrote:
    Could anybody give me a direct answer? I think the minium requirement to run a java program is JVM and Java API. Is this right?What does Google tell you?
    BTW in order to get a direct answer, one must ask a direct unambiguous question. Are you asking for the minimum software or hardware requirements to run an application developed in Java or to develop an application in Java. What environment? Details are important and again Google is an interactive search engine, try it!
    Mel

  • Final Cut Studio 1.0.1 Not meeting Snow Leopard Hardware requirements?

    Hi, I just got a brand new 22" iMac, running snow leopard. I have an old copy of FinalCutStudio 1.0.1 and when i try to install, it says *Alert! Your computer does not have the hardware required to run this software* I checked in the read me, and it meets all the requirements. I am running rosetta too - please help??!

    Your other post was answered - http://discussions.info.apple.com/thread.jspa?threadID=2377204&tstart=0

  • Hardware requirements for using BI-IP

    Hello experts,
    i would like to have something like a how to paper in which i can find something about the hardware requirements for ideal using of BI integrated planning. Can anyone give me a help?
    Thanks in advance.
    Best Regards,
    Ali

    HI Ali,
    I have been unable to find specific hardware requirements for using BI -IP so I would refer you to the hardware requirements for running Bi as per notes:
    1013139 - prereqs for frontend bi7
    1013201 - Hardware and Software requirement for BI Standalone frontend
    and please also review the IP note:
    1056259 - Collective note: Performance of BI planning
    I hope this helps
    best regards
    Orla.

  • Fm2-a55m-e33 can't run Hyper-V

    I have FM2-A55M-E33 MSI motherboard with bios version E7721AMS V11.2
    I'm installing Windows Server 2008 R2 SP1 Standard and tried to run - virtual machine with Hyper-V role - and it fails.
    I've tried to install Windows Server 2012 with Hyper-V role, and after installing Hyper-V role - OS won't bootl.
    All checks says to me that my CPU AMD Athlon X4 760K - support all virtualization technology.
    I've checked that SVM mode is Enable in CPU features.
    I've tried to turn SVM off, shutdown with cable, turn on, shutdown with cable, tried to reflash BIOS, reset BIOS with jumper - EVERYTHING FAIL!
    Please, help me instruction or provide BIOS FIX.

    I wrote everuthing the same to MSI support.
    And gues what they just answered me?
    Regarding your concern,Regarding your concern,from your description,we are very sorry,it hard to determine what causes the problem currently,would you please test your system and cpu first to check if they are meet the requirements to run Hyper-v (please enable the SVM in bios)?
    You can use software EVEREST Ultimate Edition(you can download it from internet  ) to check your CPU,it should be support three characteristics:
    Motherboard-CPUID-Instruction Set:64bit x86 extesion
    Motherboard-CPUID -Security Features :Date Execution Prevention(DEP,NX,EDB)
    Motherboard-CPUID-CPUID Features: AMD CPU :Secure Virtual Machine Extensions(Pacifica)           Intel CPU:Virtual Machine Extensions(Vanderpool)
    Also,you can use another software securable to check the system,you can refer to the images below.sorry for any inconvenience caused.
    They even don't read the issue!
    I've cheked all the things SEVERAL TIMES!
    OMG, worst support ever!

  • Cannot find official hardware system requirements for a pc running app-v client on W7

    looking for
    hardware system requirements for a pc running app-v client on W7
    Thx.
    "When you hit a wrong note it's the next note that makes it good or bad". Miles Davis

    Hello,
    Did you attempt to google for "app-v 5 system requirements"?
    http://technet.microsoft.com/en-us/library/jj713426.aspx
    Nicke Källén | The Knack| Twitter:
    @Znackattack

  • What are the Client machine requirements for running Forms 6i?

    What are the minimum/ideal hardware requirements of the client machines which run forms 6i in separate frames.
    The reason for asking this is that the users have multiple sessions of separate Forms frames. When they do a lot of activity/transactions, and try to do a windows Print Screen on a MSWord file, nothing seems to print on the Word document. If they save the document and reboot the computer and open the same word document again then the screen print shows up. I am thinking it is because the separate frames take up lot of RAM. Typical configurations of our m/c are PII 400's with 64MB RAM.
    Thanks in advance.

    Hi Lionel,
    As a general rule of thumb, the ATI Rage 128 Pro will not support a 20" LCD. That being said, there are reports of it doing just that (possibly the edition that went into the cube).
    I'm not that familiar with the ins and outs of the Cube, so I can't give you authoritative information on it.
    A good place to start looking for answers is:
    http://cubeowner.com/kbase_2/
    Cheers!
    Karl

  • Licensing requirements for running SBS 2011 in Hyper-V

    I am currently running SBS 2011 that is natively installed on a Dell PowerEdge server. The plan is to add some RAM and then convert the system to a Hyper-V server that would run the SBS operating system as a VM. From a licensing standpoint, I realize I will
    need to purchase a copy of Server 2012 R2 Standard in order to run Hyper-V on the server. I believe I would also be licensed to run the SBS operating system as one of the two licensed VMs.
    My question is what is the requirement as far as user CALs is concerned? Seeing as my users will continue to access the SBS server, they will never access the Server 2012 box directly. The only purpose for Server 2012 is to provide the Hyper-V host. So am
    I bound by the user licensing of the SBS server, or am I required to also purchase user CALs for the Server 2012 platform?
    Thanks for any insight on this question...

    It is always best to talk with a trained Microsoft licensing specialist when asking about licensing questions.  A license is a legal agreement between you and the license issuer.  Relying on information from a technical forum on the internet would
    not stand up in a court of law, and your auditors would not like that.
    That said, a Windows Server CAL - Client Access License - covers access to Window Server(s).  Whether you have 1 or 100 Windows Server, the client access license grants the right to access the services.  Yes, they are operating system version specific,
    but if you are running only the Hyper-V role in the host installation, no CALs are required for the host.  If you are running other services that the clients are accessing, then you would need to purchase the 2012 CALs.  Again - check with a trained
    Microsoft licensing specialist.
    . : | : . : | : . tim

  • Minimum hardware spec to run a forms 10g client

    Hi
    Has anyone please got any info this.
    I'm trying to define what the minimum specification pc in terms of cpu and memory (say running Windows XP) that will run a Forms 10g Form through IE.
    A client has many PC's of differinf ages and specifications, it's a matter of defining which one are too old and can't run the application.
    TIA
    Tony

    Tony,
    Check out the Hardware Requirements and the Certified Software section of the Oracle Developer Suite Installation Guide 10g Release 2. As long as the prospective PC the application will run on meets this minimum requirement to install the Developer Suite, it should run OK.
    Hope this helps.
    Craig...

  • OWB Client Hardware Requirements

    The hardware requirements specified by Oracle for the OWB client appear to be greatly understated in their documentation. I'm getting a lot of complaints. Does anyone have basic specs for a workstation that doesn't need to be rebooted once a day and doesn't cost a fortune that they have had success running the OWB client on?

    We've found the biggest requirement for 10gR2 is to have AT LEAST 1 Gb of Ram. Any less and the processes just seem to drag. 2 Gb of ram is even better.
    Sounds like a lot, but RAM is pretty cheap.
    Hope this helps,
    Scott
    p.s. a dual core processor is nice too, but we have people using a single 2 Ghz chip having no problems at all.

Maybe you are looking for

  • How do I fix Mail's [apparently lost] "create iCal event" feature?

    When the data detector feature in Mail detects a date (and/or time) the contextual menu offers to create (or edit and create) an event in iCal. This used to work. Recently (not sure how long, perhaps last week or two, maybe longer) I have found that

  • Latest Windows 8.1 update under Boot Camp loses my cursor

    I was having no problems running Windows 8.1 under Boot Camp on my MacBook Pro Retina (2012) with the latest Boot Camp drivers until I tried downloading Microsoft's latest major update to Windows 8.1 (KB2919355). After installing the update, I lost m

  • Macbook Pro Earphone/Headphone Problem

    Hello. Whenever I plug my earphone/headphone into the headphone jack, the music or sound coming out of the earphones will increase quickly and then suddenly drop back to its 'normal' sound. This happens within 1-2 seconds of plugging it in. I contact

  • Catalyst CS5 file created on PC opens "crippled" on Mac

    Hi, I created a CS5 Catalyst file on a Windows XP PC, then emailed the file to myself and subsequently opened the file on my Mac OX 10.6.6.  It opened, but all the "pages" are not here and I can really do anything with it.  Please advise. Thanks.

  • Issue adding Auto-renewable in-app purchase type via App Loader

    I have a Pro DPS account and a Multi-folio with iTunes subscription Newsstand app. I'm attempting to add paid 6-month and 12-month subscription options to what has previously been a Free subscription app. I also want to charge for back-issues, and ad