Created
February 22, 2019 16:22
-
-
Save monrapps/522a68ac947e3f5157e09ff9a5440bf4 to your computer and use it in GitHub Desktop.
WINDOWS_CMD - Remove and deny C:\aow_drv.log to be created again. File created by Tencent background services
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rem "This script remove C:\aow_drv.log hidden directory created by deny_aow_drv_log.bat" | |
| icacls C:\aow_drv.log /remove:d everyone | |
| rd /s /q C:\aow_drv.log |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rem "This script remove and deny C:\aow_drv.log to be created again" | |
| net stop aow_drv | |
| del C:\aow_drv.log | |
| mkdir C:\aow_drv.log | |
| attrib +s +h C:\aow_drv.log | |
| icacls C:\aow_drv.log /c /deny everyone:(f) |
Thanks man, I thought aow_drv.log isn't necessary to open gameloop so I deleted it. With the allow.bat I fixed the error 1 that says that aow_drv.log is missing. Thanks for the code :>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
3Q