I received the following message in Bitdefender. When I navigate to the Data folder, there is no folder "tmp" so I cannot go further to manually delete the threat. Please advise.
Hello.
Follow the steps from this article:
Regards.
Also, try the following steps:
If there are additional drives other than C:, such as D:, E:, or F:, simply replace the C: drive letter in the code with the desired drive letter. Save the changes and run the batch file as an administrator.
CODE:
@echo off setlocal
REM Set the folder path set "folder_path=C:"
REM Navigate to the specified folder cd /d "%folder_path%" || ( echo Folder not found: "%folder_path%" exit /b 1 )
REM Delete files with specified extensions in the current folder del /s /q /f *.tmp del /s /q /f *.temp
echo Deletion complete. exit /b 0 pause
Regards