• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

How to set environment variables in Windows ME

 
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!

I want to set environment variables on my windows me OS but i don't know from where i can get it. we can get it from control panel in windows xp but i couldn't get it in windows me. please help me.

Thanks,
Vivek Mishra
 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Windows 95, 98, or Me
If you're using Windows 95, 98, or Me, set environmentals in your autoexec.bat file.
C:\autoexec.bat

Windows NT, 2000, or XP
If you're using Windows NT, 2000, or XP, set environmentals using Control Panel/System/Environment.

Hope this helps
Brian
 
Ranch Hand
Posts: 317
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
open up windows explorer (window button + e)
right click my computer.
select properties.
select advanced tab
select appropriate button (some say system envrionment)
 
Saurabh Saha
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!

Thanks Brian and Peter, for giving me some time.
Peter we can not get environment variables as you suggest in windows me we can get in xp but not in me. I think Brian is right but I had tried to set environment variables path and classpath on autoexec.bat file but it still not working at command prompt when i used javac command it shows that bad command or file name.
In the bat file i had set variables as SET PATH=C:\jdk1.3\bin; and CLASSPATH=C:\jdk1.3\lib;
please help me how to set these variables on WINDOWS ME.

Thanks & Regards,
Vivek Mishra
 
Saurabh Saha
Ranch Hand
Posts: 52
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All!
My problem to set enviornment variable in Windows ME, still remain the same. Please help me.

Thanks & Regards,
Vivek Mishra
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The "advanced" tab has been removed from My Computer -> Properties in Windows ME. What a great idea.

So, to set environment variables, you need to:
- Go to Start -> Run
- Enter "msconfig" (starts "System Configuration Utility")
- Click "environment" tab
- Click "new"
- Enter your JAVA_HOME, CATALINA_HOME or whatever variable names/values
- select the new variable's checkbox, apply, and restart computer.
- Hoorah! It works.
(I've just done the above, and got java and tomcat working fine.)

Good luck!
 
I would challenge you to a battle of wits, but I see you are unarmed - shakespear. Unarmed tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic