How can it be determined where the dSeries product is installed?
For UNIX/Linux:
Hint: Once the location has been determined, to make it easier to get there in the future, create an alias in the user's profile.
Example: Below is an example of a user's .bash_profile
===========================================
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin:/opt/CA/ESPdSeries/12.4/bin
export PATH
#Setup Aliases
alias DE_ROOT='cd /opt/CA/ESPdSeries/12.4' (Do not include the bin directory in the path)
===========================================
Now, whenever the user logs in, enter DE_ROOT at the command prompt and it will change to the dSeries installation directory.
For Windows: