Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

allow user to set some specific options in IE 1

Status
Not open for further replies.

sa5cha

Programmer
May 29, 2001
34
DE
Hello everybody,

I got a problem, perhaps someone could help me, please.

Some users at our company must be able to check and uncheck the "Java (Sun) -> JRE 1.5.0 ..." Option and the "Microsoft VM -> JAVA-Jit,...,... (all 3 below that point)" Options.

How can I allow them to change the Options in the Internetexplorer. All Users are just normal users in our company. They got no admin rights, and there is no possibility that we give them full admin rights.

Is it possible do to this with an reg key ? Or is there an administration tool for the ie out there ?

Thank you in advance

Sascha
 
Hi, these are the registry keys and values:

HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.5.0_01
UseJava2IExplorer DWORD 0 or 1

HKEY_CURRENT_USER\Software\Microsoft\Java VM
EnableJavaConsole (REG BINARY) 01 00 00 00 OR 00 00 00 00
EnableJIT (REG BINARY)
EnableLogging (REG BINARY)

Copy and posate this (change the data to either enable feature or disable):

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Java VM]
"EnableLogging"=hex:01,00,00,00
"EnableJIT"=hex:01,00,00,00
"EnableJavaConsole"=hex:01,00,00,00


Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.5.0_01]
"JavaHome"="C:\\Program Files\\Java\\jre1.5.0_01"
"UseJava2IExplorer"=dword:00000000
"HideSystemTrayIcon"=dword:00000000





Hope this helps. Please let know if this resolve your issue

Jeff
 
Copy and paste in .REG files

Hope this helps. Please let know if this resolve your issue

Jeff
 
Hi Jeff,

It solved the problem.

I used regedt32 to give these specific users full access rights to the "1.5.0_01" folder of HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Plug-in\1.5.0_01
reg folder.

Now the internet explorer saves the java settings, even if the user dont have admin rights.

Thank you for your help!

Sascha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top