I would like to have the best possible experience for the games on my laptop and I want to download everything that is necessary for the performance of the games.

I bought a new laptop which has Windows 8. I heard that Windows 8 is new, it only is not automatically provided some 'things' - forgive me for my lack of knowledge in technology. I intend to play games on my new laptop, but according to my knowledge, Windows 8 does not support things like Visual C++ and Directx 9. I am very uncertain about this subject, however. If anyone understands this as am I mean, can you please correct and/or explain more on this topic? I would like to have the best possible experience for the games on my laptop and I want to download everything that is necessary for the performance of the games.

Original title: what's missing in Windows 8?

Jack

We were all new at one point, so don't worry what you know.  Win 8 is compatible with all previous OS.  It supports C++, and depends on your video card supports DIrectX 9, 10 and 11.

The only thing that doesn't come with win 8 (and since you bought it, it may already be installed) is windows media player.

What exactly are you trying to do, or can you give us more information for we can help you better?

Tags: Windows

Similar Questions

  • How do I (or can I) install Photoshop on a 2nd device? I already have it on a Windows laptop and now want to download on a Mac. Should I re-register?

    I already have it on a Windows laptop and now want to download on a Mac. Should I re-register?

    Hello

    Please see the below help documents:

    Applications creative Cloud back in test mode after an update until 2015 for CC

    Solutions to connection errors, activation and connection with creative Cloud applications and Creative Suite

    Kind regards

    Sheena

  • I would like to have the internet to my PC via the WiFi card.

    Original title:  WiFi card

    Hi all

    I have a WiFi card in my new build pc a Ethernet card.   I am connected to the internet via the Ethernet connection, and I was wondering what I can do with the WiFi card.  I am about to upgrade to my 1st smartphone and would like to have conversation with my PC via the WiFi card.

    How then?  I don't see immediately in Windows 8 in the implementation of a WiFi Hotspot or is it a special network where I'm after?  I would also like the other members of the family to sync it phones to my PC because it will be centralized for all media storage.

    Thank you

    Your computer's wireless card connects to a wireless router and can go to the Internet or your local network via an Ethernet cable or wireless...

    The Ethernet connection works to connect to the back of your computer to the same wireless router where it plugs into an Ethernet connector.  From there, it can connect to the Internet or your local network, by cable or wireless.

    See control Panel\All Control Panel Items\Network and Center sharing.  Go on "Change adapter settings" and go on ' change the advanced sharing settings.

    Make sure of course both ethernet and Wireless Adapters are enabled.  Make sure that network discovery is turned on.

  • I have an e7 and I would like to have the best for my mobile. But I'm not smart with computers

    the most recent version. Upgrade. The best of the best please

    Sorry, but the Nokia e7 uses the Symbian operating system that is not supported by Firefox mobile and Nokia is also transition to Windows mobile now in any case.

    https://wiki.Mozilla.org/mobile/platforms

    Firefox Mobile for Android 2.2 + (with an ARMv7 processor) and can run on Maemo/Meego.

  • It don't seem to be a way to import or export any usernames and passwords in the Firefox password manager. I would like to have a printed copy of this information because I'm decrepit and forget about these things.

    Has no way to copy or export of username, passwords, or Web site in the Firefox password manager.

    A sure way, although primitive, is to open the window of your user name and passwords and take a screenshot of it, then with a bit of touch up paint you can print as image.

    This is by far the worst way to do it, but it is also quite easy and foolproof.

    Use it as a last resort.

  • 10 Windows will be multilingual. I am English speaker and would like to have the English version of the new operating system that I live in tenerife

    Hi there, I wonder are the 10 multilingual windows. or he must upgrade to a higher version of windows 10 for packs of him, but I'm an English speaker who lives in tenerife. any help appreciated

    Can I choose another language during the upgrade?

    Cross language upgrades are not taken in charge, the free update will be installed in your local language.

    You will need to install a language pack to the English after the installation is complete, if you are upgraded to Windows Pro 10 or 10 Windows Home, you need to install the Windows 10 Pro Pack ($99) to help add features (Windows key + X > Control Panel) and then download the English Language Pack.

    You can also download the. ISO for the language you want, create a bootable copy and perform a custom installation.

    How to: perform a customized Windows installation

    What languages the Windows 10 will be available in?

    Arabic (Saudi Arabia), Bulgarian (Bulgaria), Chinese (simplified, China), Chinese (Hong Kong), Chinese (traditional, Taiwan), Croatian (Croatia), Czech (Czech Republic), Danish (Denmark), Dutch (Netherlands), English (United Kingdom), English (United States), Estonian (Estonia), Finnish (Finland), French (France), French (Canada), German (Germany), Greek (Greece), Hebrew (Israel), Hungarian (Hungary), Italian (Italy), Japanese (Japan), Korean (Korea), Latvian (Latvia), Lithuanian (Lithuania), Norwegian Bokmål (Norway), Polish (Poland), Portuguese (Brazil), Portuguese (Portugal) , Romanian (Romania), Russian (Russia), Serbian (Latin, Serbia), Slovak (Slovakia), Slovenian (Slovenia), Spanish (Spain, International), Spanish (Mexico), Swedish (Sweden), thai (Thailand), Turkish (Turkey), Ukraine (Ukraine)

    Other languages available in lips

    http://www.Microsoft.com/en-us/Windows/Windows-10-specifications

  • I would like to delete the columns

    Hello
    with dummy as ( select 2526 Column1, 1 Column2, 2 Column3, 3 Column4 from dual union all
                            select 2526 Column1, 4 Column2, 5 Column3, 6 Column4 from dual union all
                            select 4711 Column1, 1 Column2, 1 Column3, 3 Column4 from dual union all
                            select 4711 Column1, 3 Column2, 2 Column3, 1 Column4 from dual)
    select * from dummy
    /
    
       COLUMN1    COLUMN2    COLUMN3    COLUMN4
    ---------- ---------- ---------- ----------
          2526          1          2          3
          2526          4          5          6
          4711          1          1          3
          4711          3          2          1
    I would like to have the following result.
       COLUMN1    COLUMN2    COLUMN3    COLUMN4
    ---------- ---------- ---------- ----------
          2526          1          2          3
          2526          
          4711          1          1          3
          4711          
    Does anyone have an idea?

    Try this,

    WITH dummy AS ( SELECT 2526 Column1, 1 Column2, 2 Column3, 3 Column4 FROM dual UNION ALL
                            SELECT 2526 Column1, 4 Column2, 5 Column3, 6 Column4 FROM dual UNION ALL
                            SELECT 4711 Column1, 1 Column2, 1 Column3, 3 Column4 FROM dual UNION ALL
                            SELECT 4711 Column1, 3 Column2, 2 Column3, 1 Column4 FROM dual)
    SELECT column1,
           DECODE (rn, 1, column2) column2,
           DECODE (rn, 1, column3) column3,
           DECODE (rn, 1, column4) column4
      FROM (SELECT d.*, ROW_NUMBER () OVER (PARTITION BY column1 ORDER BY column2) rn
              FROM dummy d)
    
    OUTPUT
    -------------
    
       COLUMN1    COLUMN2    COLUMN3    COLUMN4
    ---------- ---------- ---------- ----------
          2526          1          2          3
          2526
          4711          1          1          3
          4711
    
    SQL> 
    

    G.

  • I have the English version of adobe photoshop elements and I would like to change the language in Dutch. Is this possible?

    I have the English version of adobe photoshop elements and I would like to change the language in Dutch. Is this possible?

    This page gives some information on the change of language

    Exchange a product for a different version of the language or platform

  • I want to rename and move files from a shoot 5 d. I would like to use the functionality of the increment to count, but since I have to get out of each file to the following file, it starts again at 1. What is the best way to do it?

    I want to rename and move files from a shoot 5 d on a new drive. I would like to use the functionality of the increment to count, but since I have to get out of each file to the following file, it starts again at 1. What is the best way to do it?

    HI -.

    As a prelude to 2014.0, we have added a feature allowing you to choose what number to start the increment of.  Look in the section ingest Rename dialog and change your preset. When you click the button, you should see the option "Custom Auto Increment". This will allow you to choose what number to start on.  We've also added a few newspapers to try to remember where let prelude last successfully interfere the operation by using this option. So, in theory, to remember the number for you. But if it isn't (maybe you want multiple kickoff ingested at the same time) you can always manually set the number to start with.

    Check that out and let me know how it works for you.

    Kind regards

    Michael

  • I would like to know the "best practices" for unplugging my computer permanently to the internet and other updates.

    Thank you for taking the time to read this. I would like to know the "best practices" for unplugging my computer permanently to the internet and other updates. I thought I would do a clean install of Windows XP, install my Microsoft Works again and nothing else. I would like to effectively transforming my computer into a word processor. He continues more and more slow. I get blue screen errors, once again. I received excellent Microsoft Support when it happened before, but since my computer is around 13 years, I think it is not worth the headache to try to remedy. I ran the Windows 7 Upgrade Advisor, and my computer would not be able to upgrade. Please, can someone tell me how to make it only a word processor without updates or internet connection? (I already have a new computer with Microsoft Windows 7 Home Premium, it's the computer that I use. The old computer is just sitting there and once a week or so I updates.) I appreciate your time, thank you!

    original title: old computer unstable

    http://Windows.Microsoft.com/en-us/Windows-XP/help/Setup/install-Windows-XP

    http://www.WindowsXPHome.WindowsReinstall.com/sp2installxpcdoldhdd/indexfullpage.htm

    http://aumha.NET/viewtopic.php?f=62&t=44636

    Clean install XP sites
    You can choose which site to reinstall XP.

    Once it is installed, then you do not have to connect what anyone, however, some updates may be required to perform the work, test this by installing work and see if you get an error msg. Except that you should be fine.

  • When I print a document, I would like to see the ToolTip that appears, as to what the printer, he went to and how many pages have been printed. How do I put on the taskbar?

    When I print a document, I would like to see the ToolTip that appears, as to what the printer, he went to and how many pages have been printed. How do I put on the taskbar?

    Hello

    Why are you trying to pin the window print on the taskbar?

    It is not possible to pin window print of the taskbar.

    The following article might be useful.
    Print notification messages do not appear when you print to a network printer
    http://support.Microsoft.com/kb/873147

  • I bought the CC for photographers. I'm Finnish, but I would like to use the English version of Photoshop. I had the Finnish version. Is it possible change to the English version?

    I bought the CC for photographers. I'm Finnish, but I would like to use the English version of Photoshop. I had the Finnish version. Is it possible change to the English version? I have Windows 7 64-bit, 1 MS. My Photoshop CS6 is in English.

    Uninstall the Finnish version of ps.

    Open your office cc application > click Preferences (top-right gear icon) > click on creative cloud > click language app and select the English version you want.

    Next, install your ps.

  • I would like to get the name of the computer user. Is this possible?

    Hi guys!

    Is there a function I can to get the user name of the computer that is using the / open my form?


    I would like to surprise the user, praising your name on the form

    Thank you!

    Hi Rafael,.

    It can be done, but you have to work within the security of Adobe strategy. It is considered a security risk for the form to use the script to collect information about the user of the computer. You will need to use a function of trust, which is in a JavaScript (.js file) file. This .js file is then placed in a specific folder on each computer using the form.

    See a thread and examples here: Re: Dungeon user to print and see some pages

    This can be very difficult to maintain, and you will encounter problems if the form is activated in Acrobat Reader.

    Overall, it is possible, but it is a pain and if you form are intended to be used on several computers (outside), then it is probably not worth the effort.

    Good luck

    Niall

    Ensure the dynamics

  • I would like to have at least 1 of my toolbars that are displayed at the bottom of my browser open screen. How can I move a toolbar from the top to the bottom of the page?

    I would like to have at least one of my toolbars that are displayed at the BOTTOM of my browser open screen. How can I move a toolbar from the top to the bottom of the page? I don't want to do this by using an extension, and when I read about the extension, I really have not seen how it would move the toolbar to the top-down any browser page open.
    Thanks in advance for the supply, the answer and the procedure to get this accomplished.

    You can't drag an entire toolbar to the bottom of the window. The Bar of the Addon is a "toolbar", drag whatever you want from the Palette to customize or a toolbar up to the bar of the Addon.

  • I would like to contact the former owner of the iphone I have, but have no way can help out me?

    I would like to contact the former owner of the iphone I have, but have no way can help out me?

    < personal information under the direction of the host >

    We can not. We are just other users like you.

    Apple is. For reasons of confidentiality and security, they are not allowed to share this information.

Maybe you are looking for