Skip to content

Commit 32aee84

Browse files
committed
File to create required symlinks
1 parent 17e8def commit 32aee84

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
:: This script creates a symlink to the game binaries to account for different installation directories on different systems.
2+
3+
@echo off
4+
set /p path="Please enter the folder location of your SpaceEngineersDedicated.exe: "
5+
cd %~dp0
6+
mklink /J GameBinaries %path%
7+
if errorlevel 1 goto Error
8+
echo Done!
9+
goto End
10+
:Error
11+
echo An error occured creating the symlink.
12+
goto EndFinal
13+
:End
14+
15+
set /p path="Please enter the folder location of your Torch.Server.exe: "
16+
cd %~dp0
17+
mklink /J TorchBinaries %path%
18+
if errorlevel 1 goto Error
19+
echo Done! You can now open the Torch solution without issue.
20+
goto End
21+
:Error2
22+
echo An error occured creating the symlink.
23+
:EndFinal
24+
pause

0 commit comments

Comments
 (0)