[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[其他] 批处理创建只读文件预防比特币勒索病毒Petya

  1. @echo off
  2. set file1=%systemroot%\perfc
  3. set file2=%systemroot%\perfc.dll
  4. set file3=%systemroot%\perfc.dat
  5. if not exist %file1% (
  6.     type nul > %file1%
  7. ) else (
  8.     attrib +R %file1%
  9. )
  10. if not exist %file2% (
  11.     type nul > %file2%
  12. ) else (
  13.     attrib +R %file2%
  14. )
  15. if not exist %file3% (
  16.     type nul > %file3%
  17. ) else (
  18.     attrib +R %file3%
  19. )
复制代码
提醒,请及时安装Windows补丁。
https://support.microsoft.com/en-us/help/4025686/microsoft-security-advisory-4025685-guidance-for-supported-platforms
https://support.microsoft.com/en-us/help/4025687/microsoft-security-advisory-4025685-guidance-for-older-platforms
1

评分人数

测试代码之前请做好备份

返回列表