9 lines
177 B
Batchfile
9 lines
177 B
Batchfile
|
|
rem example
|
||
|
|
rem mklink /j [DestAddr] [SrcAddr]
|
||
|
|
rem mklink /j .\Common E:\CodeSVN\Common
|
||
|
|
|
||
|
|
mklink /j .\Common ..\..\Common
|
||
|
|
|
||
|
|
rem mklink /j .\Common ..\..\..\..\..\Common
|
||
|
|
|
||
|
|
pause
|