forked from toadie2k/NIArms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
link.bat
39 lines (22 loc) · 795 Bytes
/
link.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
SETLOCAL ENABLEDELAYEDEXPANSION
:: DEFINE the following variables where applicable to your install
SET SOURCE=%~dp0
:: _________________________________________________________
if not exist p:\ GOTO noP
echo This program will create all necessary links to your P drive. Press enter to continue.
pause
mklink /J "p:\hlc_wp_m60E4" "%SOURCE%hlc_wp_m60E4"
mklink /J "p:\hlc_wp_minigun" "%SOURCE%hlc_wp_minigun"
mklink /J "p:\hlc_wp_AR15" "%SOURCE%hlc_wp_AR15"
mklink /J "p:\hlc_wp_springfield" "%SOURCE%hlc_wp_springfield"
mklink /J "p:\hlc_wp_M14" "%SOURCE%hlc_wp_M14"
mklink /J "p:\hlc_wp_FHAWC" "%SOURCE%hlc_wp_FHAWC"
mklink /J "p:\hlc_wp_g3" "%SOURCE%hlc_wp_g3"
echo Complete
pause
GOTO quit
:noP
echo You don't have a P: drive!
:quit
exit