Skip to content

Instantly share code, notes, and snippets.

@monrapps
Created February 22, 2019 16:22
Show Gist options
  • Select an option

  • Save monrapps/522a68ac947e3f5157e09ff9a5440bf4 to your computer and use it in GitHub Desktop.

Select an option

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
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
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)
@robbyzhaox

Copy link
Copy Markdown

3Q

@MarcEurus

Copy link
Copy Markdown

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