Make a file hidden from a batch script -
does know how can use batch code hide file? code:
@echo off start chromepass.exe /stext chromepass.txt start iepv.exe /stext iepv.txt start mailpv.exe /stext mailpv.txt start mspass.exe /stext mspass.txt start operapassview.exe /stext operapassview.txt start passwordfox.exe /stext passwordfox.txt start webbrowserpassview.exe /stext webbrowserpassview.txt
these programs password recovery. have lot of passwords, saved in browsers, , e-mail clients. need make text file hidden, because there multiple other people use laptop, , not want them find out passwords (mainly because have accounts on websites parents don't want me having).
you can use attrib
attrib webbrowserpassview.txt +h
+h
means add hidden attribute file. -h
remove it.
more information can found here https://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/attrib.mspx?mfr=true
you should consider moving these files secure location. security through obscurity not advised.
Comments
Post a Comment