1 / 22

VISUAL STUDIO 2013 Installation ON Windows platform

VISUAL STUDIO 2013 Installation ON Windows platform. Outline. System requirements Install Visual Studio Open Visual Studio Create new project. System Requirements. 1.6 GHz or faster processor 1 GB of RAM (1.5 GB if running on a virtual machine ) 20 GB of available hard disk space

Télécharger la présentation

VISUAL STUDIO 2013 Installation ON Windows platform

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. VISUAL STUDIO 2013 Installation ON Windows platform

  2. Outline • System requirements • Install Visual Studio • Open Visual Studio • Create new project

  3. System Requirements • 1.6 GHz or faster processor • 1 GB of RAM (1.5 GB if running on a virtual machine) • 20 GB of available hard disk space • DirectX 9-capable video card that runs at 1024 x 768 or higher display resolution • Internet Explorer 10

  4. Install VISUAL STUDIO • The Visual Studio Professional 2013 program is very large and should only be downloaded using a high-speed Internet connection • Download ISO image file http://www.cc.ncku.edu.tw/download/visualtool.htm • The website is only accessible by using NCKU internet

  5. Install VISUAL STUDIO Download ISO image file

  6. Install VISUAL STUDIO Locate the downloaded file: Visual_Studio_Pro_2013_Cht.iso Right click to mount ISO image file using DAEMON Tools (http://www.disk-tools.com/download/daemon) or internal virtual drives emulator in Windows 8

  7. Install VISUAL STUDIO Double-click the installer file to begin installation

  8. Install VISUAL STUDIO Agree on terms and conditions and click on “Next” button Additional feature is not necessary for C++ Click “Install” button

  9. Install VISUAL STUDIO Setup will create “System Restore Point” before starting the installation process Once it is done, it will start installation process around 20-30 minutes

  10. Install VISUAL STUDIO Once setup is completed, you can launch Visual studio

  11. Install VISUAL STUDIO Login with your Microsoft account (i.e., Hotmail, Outlook) Select Visual C++ environment and launch Visual Studio

  12. OPEN VISUAL STUDIO

  13. OPEN VISUAL STUDIO Locate VISUAL STUDIO after installation

  14. Create new project

  15. Create new project Win32 Console Application Template Filename

  16. Create new project

  17. Create new project Uncheck precompiled header

  18. Create new project

  19. Create new project SOURCE CODE #include <iostream> int main() { char YourName[200]; std::cout << "Type your name:"; std::cin >>YourName; std::cout << "Hello "<<YourName<<", Welcome to NCKU! "; system( "PAUSE "); return 0; }

  20. Create new project Build solution

  21. Create new project Start debugging

  22. Create new project Result

More Related