Dark Horse Programmer-is it still troubling to reconfigure environment variables after reloading the system?

Source: Internet
Author: User

Now share the next batch configuration environment variable method, a key to get it done!
@echo off
title JDK and Tomcat environment variable settings
Color 0a
set/p inputjh= [Please enter the installation directory of the JDK you want to set up:]
if/i "%inputjh%" = = "" Set inputjh=%java_home%
set/p inputth= [Please enter the installation directory of Tomcat you want to set:]
if/i "%inputth%" = = "" Set inputth=%tomcat_home%
echo is configuring environment variables, please wait ...
reg ADD "hkcu\environment"/V java_home/t reg_sz/d "%inputjh%"/F
reg ADD "hkcu\environment"/V tomcat_home/t reg_sz/d "%inputth%"/F
reg ADD "hkcu\environment"/V classpath/t reg_sz/d ".;" " %%java_home%%\lib\dt.jar "" ";" "" %%java_home%%\lib\tools.jar "" ""/F
reg ADD "hkcu\environment"/V path/t reg_sz/d "" ""%%java_home%%\bin "" ";" "" %%tomcat_home%%\bin "" ";"/F
Pause
CLS
Echo
set/p tmp= operation ends, press ENTER to exit ...
Pause>nul


Copy the above code and save it as a file with a. bat suffix and don't try it if your system is already configured!

Dark Horse Programmer-is it still troubling to reconfigure environment variables after reloading the system?

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.