Win7 the JDK Environment variable settings batch (GO)

Source: Internet
Author: User

The JDK environment variable needs to be reset after each system reload
Some of the entry in the project little white look at setting environment variables on the network article or set the wrong environment variable
Provides a batch that can be run under Win7 (using the SETX command) to set environment variables automatically.

Cls@echo Off:startSet/P Home=Please enter the JDK installation path: IF EXIST"%home%\bin\java.exe"GOTO Install:warningrem Input directory error, prompt to re-enter echo the path you entered is not the JDK installation path echo Please re-enter the correct JDK installation path pauseGotoStart:installrem If you enter the correct JAVA2SDK installation directory, start setting environment variables the path to the echo input is:%home%@setx Java_home"%home%"@setx Path"%%java_home%%\bin;%path%"IF"%classpath%"=="" GotoNoclasspath@setx CLASSPATH"%classpath%;.; %%java_home%%\lib\tools.jar;%%java_home%%\lib\dt.jar;%%java_home%%\jre\lib\rt.jar"GOTO end:noclasspath@setx CLASSPATH".; %%java_home%%\lib\tools.jar;%%java_home%%\lib\dt.jar;%%java_home%%\jre\lib\rt.jar"GOTO END

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.