系统相关
首页 > 系统相关> > Windows Command Line - Hiding a file or virus

Windows Command Line - Hiding a file or virus

作者:互联网

Windows Command Line - Hiding a file or virus

attrib Attribute

h --> hidden

r --> read only

s --> system attribute

+/- --> set/clear

attrib +h Test.txt
attrib -h Test.txt

image-20201226070910507

attrib +r Test.txt
attrib -r Test.txt

image-20201226071217268

attrib +s Test.txt
attrib -s Test.txt

image-20201226071545926

attrib +h +r +s Test.txt #You can not find it anymore.
attrib -h -r -s Test.txt

image-20201226071944221

标签:Windows,--,virus,Command,Test,attrib,txt
来源: https://www.cnblogs.com/keepmoving1113/p/14191381.html