Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
File to create required symlinks
  • Loading branch information
Equinox- committed Aug 24, 2017
commit 32aee84b92caaf9c35c1490bcca391de0abe1503
24 changes: 24 additions & 0 deletions Setup (run before opening solution).bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
:: This script creates a symlink to the game binaries to account for different installation directories on different systems.

@echo off
set /p path="Please enter the folder location of your SpaceEngineersDedicated.exe: "
cd %~dp0
mklink /J GameBinaries %path%
if errorlevel 1 goto Error
echo Done!
goto End
:Error
echo An error occured creating the symlink.
goto EndFinal
:End

set /p path="Please enter the folder location of your Torch.Server.exe: "
cd %~dp0
mklink /J TorchBinaries %path%
if errorlevel 1 goto Error
echo Done! You can now open the Torch solution without issue.
goto End
:Error2
echo An error occured creating the symlink.
:EndFinal
pause