Singh Raina, Ajeet wrote:
This is the problem - there is no "where" command on XP (only on the Windows Server editions). Just edit the batch file to remove the where and it should be fine. If that still doesn't work, uncomment (rem means "comment" - it's like a # in a shell script) the line that sets the JAVA and hard code it to the full path and file name of your java.exe.Hi Guys,I have Fedora DS running on RHEL 4.0 System. I want to install Fedora IDM Console on Windows Xp. I have j2sdk-1_4_2_13-nb-5_0-win-ml package installed on my Win Box.The Environmental Variable include :Variable Name : JAVA_HOME Variable Value : C:\Program Files\Java\j2re1.4.2\binSystem VariableVariable Name : PathVariable Value : C:\Program Files\Java\j2re1.4.2\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;Now whenever I click on installed Fedora DS Icon it says:C:\Program Files\Fedora Identity Management Console>echo OffThe Java Runtime Environment is installed on this machine,but the command java.exe is not in your PATH.You can either make sure java.exe is in your path or edit this script to set JAVA to the full path of java.exePress any key to continueThe batch file include :echo off rem BEGIN COPYRIGHT BLOCK rem Copyright (C) 2005 Red Hat, Inc. rem All rights reserved. rem rem This library is free software; you can redistribute it and/or rem modify it under the terms of the GNU Lesser General Public rem License as published by the Free Software Foundation version rem 2.1 of the License.remrem This library is distributed in the hope that it will be useful, rem but WITHOUT ANY WARRANTY; without even the implied warranty of rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU rem Lesser General Public License for more details.remrem You should have received a copy of the GNU Lesser General Public rem License along with this library; if not, write to the Free Softwarerem Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USArem END COPYRIGHT BLOCKrem set the JAVA to use here rem set JAVA=C:\Program Files\Java\j2re1.4.2\binif not "%JAVA%foo"=="foo" goto launchwhere java > nul 2>&1 || goto findjre
set JAVA=java goto launch:findjre rem look for Java Runtime Environment in registryreg QUERY "HKLM\SOFTWARE\JavaSoft\Java Runtime Environment" > nul 2>&1 || goto findjdkrem can we grab the java location from the registry? rem set JAVA=path\bin\java rem apparently not, in a batch file rem goto launch echo The Java Runtime Environment is installed on this machine, but theecho command java.exe is not in your PATH. You can either make sure java.exeecho is in the PATH, or edit this script to set JAVA to the full path of echo java.exe pause goto end:findjdkreg QUERY "HKLM\SOFTWARE\JavaSoft\Java Development Kit" > nul 2>&1 || goto nojavarem can we grab the java location from the registry? rem set JAVA=path\bin\java rem goto launch echo The Java Development Kit is installed on this machine, but theecho command java.exe is not in your PATH. You can either make sure java.exeecho is in the PATH, or edit this script to set JAVA to the full path of echo java.exe pause goto end:nojavaecho Java does not appear to be installed on this machine. Please download and install the Java Runtime Environment and make sure the java.exe command is in the PATH of this command.pause goto end:launch set BASEPATH=. set FIDMCONSOLEJARDIR=%BASEPATH% set CONSOLEJARDIR=%BASEPATH% set JSSDIR=%BASEPATH% set LDAPJARDIR=%BASEPATH%set PATH=%BASEPATH%;%PATH%rem rem Launch the Console rem echo on"%JAVA%" "-Djava.library.path=%JSSDIR%" -cp "%JSSDIR%/jss4.jar;%LDAPJARDIR%/ldapjdk.jar;%CONSOLEJARDIR%/idm-console-base.jar;%CONSOLEJARDIR%/idm-console-mcc.jar;%CONSOLEJARDIR%/idm-console-mcc_en.jar;%CONSOLEJARDIR%/idm-console-nmclf.jar;%CONSOLEJARDIR%/idm-console-nmclf_en.jar;%FIDMCONSOLEJARDIR%/fedora-idm-console_en.jar" -Djava.util.prefs.systemRoot=%HOME%/.fedora-idm-console -Djava.util.prefs.userRoot=%HOME%/.fedora-idm-console com.netscape.management.client.console.Console %*:endHas anyone tried with this Before???This e-mail and any attachment is for authorised use by the intended recipient(s) only. It may contain proprietary material, confidential information and/or be subject to legal privilege. It should not be copied, disclosed to, retained or used by, any other party. If you are not an intended recipient then please promptly delete this e-mail and any attachment and all copies and inform the sender. Thank you.------------------------------------------------------------------------ -- Fedora-directory-users mailing list Fedora-directory-users@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/fedora-directory-users
<<attachment: smime.p7s>>
-- Fedora-directory-users mailing list Fedora-directory-users@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/fedora-directory-users