Ted,
I notice that the grass63.bat file does not show complete paths for all functions. Do full paths have to be substituted by the user? For example
rem Directory where your .grassrc6 file will be stored
set HOME=c:\home
rem Name of the wish (Tk) executable
set GRASS_WISH=C:\grass\tcl-tk\bin\wish.exe
Are there other path changes to be made?
definetely not
no changes or hackings are needed by users
rem Directory where your .grassrc6 file will be stored
set HOME=c:\home
why do you have that value?
grass63.bat should be as follows:
@echo off
rem #########################################################################
rem #
rem # File dynamically created by NSIS installer script;
rem # Written by Marco Pasetti;
rem #
rem #########################################################################
rem #
rem # GRASS Initialization
rem #
rem #########################################################################
rem *******Environment variables***********
rem Set GRASS Installation Directory Variable
set GRASSDIR=C:\GRASS
rem Directory where your .grassrc6 file will be stored
set HOME=%USERPROFILE%
rem Name of the wish (Tk) executable
set GRASS_WISH=wish.exe
rem Path to the shell command
set GRASS_SH=%GRASSDIR%\msys\bin\sh.exe
rem Set Path to utilities (libraries and bynaries) used by GRASS
set PATH=%GRASSDIR%\msys\bin;%PATH%
set PATH=%GRASSDIR%\extrabin;%GRASSDIR%\extralib;%PATH%
set PATH=%GRASSDIR%\tcl-tk\bin;%GRASSDIR%\sqlite\bin;%GRASSDIR%\gpsbabel;%PATH%
rem Set Path to MSIE web browser
set GRASS_HTML_BROWSER=%PROGRAMFILES%/Internet Explorer/iexplore.exe
rem Path to the proj files (notably the epsg projection list)
set GRASS_PROJSHARE=%GRASSDIR%\proj
set WINGISBASE=%GRASSDIR%
"%WINGISBASE%\etc\init.bat" %*
Regards,
Marco