千家信息网

share file

发表于:2025-02-02 作者:千家信息网编辑
千家信息网最后更新 2025年02月02日,@echo offe:if exist personal (echo "not exit"call :end)else (echo "go share"call :create):createecho
千家信息网最后更新 2025年02月02日share file

@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

0