Windows Command Line - Hiding a file or virus

时间:2020-12-26 10:17:15   收藏:0   阅读:35

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

技术分享图片

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

技术分享图片

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

技术分享图片

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

技术分享图片

原文:https://www.cnblogs.com/keepmoving1113/p/14191381.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!