@echo off
e:
if exist personal (
echo "not exit"
call :end
)else (
echo "go share"
call :create
)

:create
echo "mddir and share"
md d:\personal
ping -n 3 127.0.0.1 >nul
net share pe=d:\personal /grant:everyone,full
exit

:end
echo "existed will close"
exit