Author: nextgens Date: 2006-06-14 17:54:44 +0000 (Wed, 14 Jun 2006) New Revision: 9199
Modified: trunk/apps/installer/installclasspath/run.cmd trunk/apps/installer/installclasspath/windows/start.cmd trunk/apps/installer/installclasspath/windows/stop.cmd Log: installer: Fix the path env. variable on windows Modified: trunk/apps/installer/installclasspath/run.cmd =================================================================== --- trunk/apps/installer/installclasspath/run.cmd 2006-06-14 17:26:40 UTC (rev 9198) +++ trunk/apps/installer/installclasspath/run.cmd 2006-06-14 17:54:44 UTC (rev 9199) @@ -1,3 +1,4 @@ + at set PATH=%SYSTEMROOT%\System32\;%PATH% @echo "Cleaning up" @bin\wrapper-windows-x86-32.exe -r ../wrapper.conf @net stop @serviceName@ Modified: trunk/apps/installer/installclasspath/windows/start.cmd =================================================================== --- trunk/apps/installer/installclasspath/windows/start.cmd 2006-06-14 17:26:40 UTC (rev 9198) +++ trunk/apps/installer/installclasspath/windows/start.cmd 2006-06-14 17:54:44 UTC (rev 9199) @@ -1,2 +1,3 @@ @echo "Starting Freenet" + at set PATH=%SYSTEMROOT%\System32\;%PATH% @net start @serviceName@ Modified: trunk/apps/installer/installclasspath/windows/stop.cmd =================================================================== --- trunk/apps/installer/installclasspath/windows/stop.cmd 2006-06-14 17:26:40 UTC (rev 9198) +++ trunk/apps/installer/installclasspath/windows/stop.cmd 2006-06-14 17:54:44 UTC (rev 9199) @@ -1,2 +1,3 @@ @echo "Stopping Freenet" + at set PATH=%SYSTEMROOT%\System32\;%PATH% @net stop @serviceName@
