- Share Batch Files Online
- Share Files Using Batch
- Share Variable Between Batch Files
- Batch Share Files
- Share Batch Files Download
:::Created by jyrome walmsley (meatlover720)
:::Copyrights 2014 Jyrome Walmsley (Meatlover720)
Your best bet is probably a batch file using the FOR Command. If you are able to get a list of the directories you want changed, you can feed that command an input file (like shares.txt) and it will iterate through each line. You can assign some fairly complex logic as described in the link. File size: 27.2 MB DiskSavvy is a disk space usage analyzer capable of analyzing disks, network shares, NAS devices and enterprise storage systems. Users are provided with multiple disk usa.
:::You are able to use this coding but not under your credittitle Menu
mode con:cols=50 lines=20
:menumain
title Menu
cls
color 0f
echo ------------------
echo = Enter choice =
echo ------------------
echo.
echo [1]= Login.
echo.
echo [2]= Register.
echo.
echo [3]= Exit.
echo.
echo [4]= Admin.
echo.
echo Jyrome is slick
echo.
set /p menuc=Enter choice 1234: %=%
if '%menuc%'1' goto loginm
if '%menuc%'2' goto registerm
if '%menuc%'3' goto end
if '%menuc%'4' goto adminpm
goto end
:loginm
title Login
cls
echo -------------------------
echo = Enter login username =
echo -------------------------
echo.
set /p logini=Username: %=%
:passi
cls
echo -------------------------
echo = Enter login password =
echo -------------------------
echo.
set /p passwordi=Password: %=%
:transmiter
:::::::::::::::::::::::::::::::::::::::::
:jyrome
if '%logini%%passwordi%'jwalmsleysynd3kit' start ' 'C:UsersWalmsley Tamariki'sDesktopfolderhidden'
goto end
:::::::::::::::::::::::::::::::::::::::::
:registerm
title Register
cls
:nameR
echo -----------------------------
echo = Enter Birth name. =
echo -----------------------------
echo.
set /p nameR=Name: %=%
:loginm
cls
echo -----------------------------
echo = Enter new login username =
echo -----------------------------
echo.
set /p loginr=Username: %=%
:passi
cls
echo -----------------------------
echo = Enter new login password =
echo -----------------------------
Share Batch Files Online
echo.
set /p passwordr=Password: %=%
cls
echo.
echo Acount will be created
echo with a new locked folder soon
echo.
echo Warning
Share Files Using Batch
echo Press any key to continue.pause >null
echo %nameR%: Username:%loginr% Password:%passwordr%>>registers.txt
goto end
:adminpm
cls
echo Enter Admin password
echo.
set /p adminpass=Enter password: %=%
echo.
if not '%adminpass%'synd3kit' goto end
if '%adminpass%'synd3kit' goto Adminm
goto end
:Adminm
cls
title Administrator.
echo.
echo ---------------------------------
echo =Welcome Jyrome Skuxx Walmsley. =
echo ---------------------------------
echo.
echo Enter choice
echo.
echo [1]= Acess Folder.
Share Variable Between Batch Files
echo.echo [2]= Registered users.
echo.
echo [3]= Passwords.
echo.
echo [4]= Exit.
echo.
set /p adminc=Enter choice 1234: %=%
echo.
if '%adminc%'1' start ' 'C:UsersWalmsley Tamariki'sDesktopfolderhidden'
if '%adminc%'2' start ' 'C:UsersWalmsley Tamariki'sDesktopregisters.txt'
if '%adminc%'3' goto readpass
if '%adminc%'4' goto end
Batch Share Files
clsgoto Adminm
:readpass
if not exist 'registers.txt' goto nukusers
cls
echo.
echo Users
type 'registers.txt'
pause
goto Adminm
Share Batch Files Download
:nukusers
cls
echo.
echo No users found
echo.
pause
cls
goto Adminm
:end