Home  /  Resources & support  /  FAQs  /  Installing Stata 18 from the Windows command line

How can I install Stata 18 from the command line without GUI under Windows?

Title   Installing Stata 18 from the Windows command line
Author Hua Peng, StataCorp

  1. Stata 18 is for 64-bit Windows only. It does not install on 32-bit Windows.
  2. Stata 18 requires a minimum Windows OS level of Windows 10. See a list of supported Windows OS.
  3. The Stata 18 installer requires the user who performs the install to have administrator privileges on the system.
  4. To install Stata from the command line without GUI, launch the Windows Command Prompt as Administrator.
  5. You may launch the Windows Command Prompt as Administrator by pressing Windows+R to open the “Run” box. Type cmd into the box and then press Ctrl+Shift+Enter to run the command as an administrator.
  6. To run SetupStata18.exe, use the /s option. You also need to use /v"/qn" to pass /qn to suppress the enclosed MSI script's GUI.
  7. To add features, use ADDLOCAL. There is one required feature:
    core Required Stata files and dlls
    The following features need to be installed based on your license:
    StataMP6464-bit Stata/MP
    StataSE6464-bit Stata/SE
    StataBE6464-bit Stata/BE
  8. The following properties can be used to control the behavior of the installation:
    USEPERSONALDIRDefault to 1
    INSTALLDIR1Default to “C:\data”
    ALLUSERSDefault to 1
    USERNAMEDefault to current user
  9. To pass the properties to the enclosed MSI script, use syntax /v"PROPERTY=value"
  10. Examples (drive E: is arbitrary and represents the DVD drive or the drive that contains the downloaded installer)
    To install 64-bit Stata/MP for all users:
           E:\SetupStata18.exe /s /v"/qn ADDLOCAL=core,StataMP64"
    
    To install 64-bit Stata/BE for all users, and using the "C:\data" folder as the default working directory:
           E:\SetupStata18.exe /s /v"/qn ADDLOCAL=core,StataBE64 USEPERSONALDIR=0"
    
    To perform a silent uninstall from command line:
           E:\SetupStata18.exe /s /x /v"/qn"
    
  11. Important notes:
    • Both /s and /v are lower case.
    • Features for ADDLOCAL are case sensitive, "core" is correct and "Core" is incorrect.
    • There must be no space between /v and the following double quote.
  12. How to extract Stata18.msi from SetupStata18.exe:
  13. Method 1

    1. Create the folder stata18_install in the C: drive.
    2. Launch cmd.exe as an Administrator.
    3. Use cd to move into the folder where SetupStata18.exe is located.
    4. Type

    	SetupStata18.exe /s /x /b"C:\stata18_install" /v"/qn"
    5. Stata 18.msi will be in C:\stata18_install\.

    Method 2

    1. Run SetupStata18.exe once it is on a Windows machine.
    2. Search for Stata18.msi; it is usually in a sub-folder of the following location:

       	C:\Users\YOURUSERNAME\AppData\Local\Downloaded Installations\

    How can I install Stata 17 from the command line without GUI under Windows?