anonymous
2014-02-03 22:00:14 UTC
@echo off
:start
cls
echo nothing you type can have spaces including folders
echo What is the real folder?
set/p "realfdr=>"
cls
echo Where should the link go? (ex. C:\users\john\files)
set/p "linkdir=>"
cls
echo What should the link be called?
echo (will create C:\users\john\file\"whatever you put")
set/p "fdrname=>"
cls
echo Are you sure you want to make the link
echo %linkdir%\%fdrname% that leads to %realfdr%
echo if so type yes
echo if not type no to start over
set/p "cho=>"
if %cho%==yes goto :make
if %cho%==no goto :start
:make
mklink /J %linkdir%\%fdrname% %realfdr%
echo %linkdir%\%fdrname% created press enter
echo to quit
pause
is there any way to make this with into an exe with a gui for example visual studio?