-----------> Kouak <-----------
Quote:
|
Kouak is a basic portable file share server over HTTP. It will let you easily share files in heterogeneous environments in just few click. It does not need installation and can run on every machine from windows xp s2 to windows 7.
|
It has a gui, and CLI version. It's still in beta so there are some bugs.
Here is an added bonus. Just save as .bat, and add it to a folder containing the CLI exe
Code:
@echo off
:TOP
ECHO.
ECHO 1) Manually Set Path to Share
ECHO 2) File Root
ECHO 3) 1 Directory up
ECHO Q) Quit
ECHO.
ECHO.
SET /P CHOICE=Enter option 1,2,3,Q:
CLS
IF %CHOICE%==1 GOTO PATH
IF %CHOICE%==2 GOTO ROOT
IF %CHOICE%==3 GOTO UP1
IF /I %CHOICE%==Q GOTO QUIT
GOTO TOP
:PATH
ECHO.
ECHO.
ECHO Enter Path or file to share
ECHO.
ECHO.
SET /P PATH=EXAMPLE C:\users\me\desktop\myfiles :
IF NOT EXIST "%PATH%" (
ECHO.
ECHO Path is not vaild
ECHO Please try again
GOTO PATH
)
Kouak /a /p "%PATH%"
EXIT
:ROOT
Kouak /d
EXIT
:UP1
Kouak /p ..\
EXIT
:QUIT
EXIT