initial oogynize check in _ this actually used to work!

This commit is contained in:
2016-02-14 21:16:31 -08:00
parent b183af5d55
commit 532ea133bc
337 changed files with 30692 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
@rem //-- Author: Daniel Romischer (daniel@romischer.com)
@echo off
goto :start
:Usage
echo Use this File to Register Ooganizer Paths in the registry
echo.
echo Syntax: RegPathsConfig "[main ooganizer path]"
echo.
echo Example: RegPathsConfig "C:\Program Files\Ooganizer"
echo.
goto :Exit
:start
if (%1)==() Goto :Usage
REG ADD HKLM\Software\Ooganizer /v InstallPath /d %1\ /f
REG ADD HKLM\Software\Ooganizer /v LogPath /d %1\Platform\Logs\ /f
REG ADD HKLM\Software\Ooganizer /v PlatformPath /d %1\Platform\ /f
REG ADD HKLM\Software\Ooganizer /v ServerPath /d %1\Server\ /f
:Exit