- Feb 11, 2011
- 1,009
09/06/2014 Note: This guide does not work with newer versions of Malwarebytes (v2.0 onwards). It may be updated if possible in the future.
In this guide I'll show you how to create some useful Automated tasks for Malwarebytes Anti Malware free version.
First, we'll start with updating automatically.
To get started, you'll need to create a batch file. To do this open up notepad and enter the following code:
For 64-bit users only
For 32-bit users only
Then save the file by going to file > Save As :
Name the file MalwarebytesUpdate.bat and where it says "Save as type" select "All files" and then click save.
That's your batch file done. Make sure to store the file(s) somewhere where they are not likely to be deleted.
Now to create the scheduled task that will perform the update automatically.
Type "Task scheduler" into the start menu search box and press enter.
Click Create Task on the right hand pane.
Next you'll name the task.
Make sure to select the option to run the task with highest privileges.
Next you can set up when you'd like the task to run.
Now you will select the Action to perform. You want to start a program.
Next browse to the location where you created your batch file.
You can leave the last two tabs ( Conditions and settings) as they are, however feel free to adjust them. Now just click OK and your task is created.
Malwarebytes will now update automatically at the given time you specified.
How to schedule a full scan or quick scan
To schedule a full scan or quick scan is the same process as above, however we have to make an alteration to the code in the batch file:
Quick Scan code:
For 64-bit only
For 32-bit only
Full Scan code:
For 64-bit only
For 32-bit only
Repeat the same process as above in order to schedule these tasks.
I hope you found this guide useful
In this guide I'll show you how to create some useful Automated tasks for Malwarebytes Anti Malware free version.
First, we'll start with updating automatically.
To get started, you'll need to create a batch file. To do this open up notepad and enter the following code:
For 64-bit users only
Code:
@echo off
"C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbam.exe" /update
For 32-bit users only
Code:
@echo off
"C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe" /update
Then save the file by going to file > Save As :
Name the file MalwarebytesUpdate.bat and where it says "Save as type" select "All files" and then click save.
That's your batch file done. Make sure to store the file(s) somewhere where they are not likely to be deleted.
Now to create the scheduled task that will perform the update automatically.
Type "Task scheduler" into the start menu search box and press enter.
Click Create Task on the right hand pane.
Next you'll name the task.
Make sure to select the option to run the task with highest privileges.
Next you can set up when you'd like the task to run.
Now you will select the Action to perform. You want to start a program.
Next browse to the location where you created your batch file.
You can leave the last two tabs ( Conditions and settings) as they are, however feel free to adjust them. Now just click OK and your task is created.
Malwarebytes will now update automatically at the given time you specified.
How to schedule a full scan or quick scan
To schedule a full scan or quick scan is the same process as above, however we have to make an alteration to the code in the batch file:
Quick Scan code:
For 64-bit only
Code:
@echo off
"C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbam.exe" /scan
For 32-bit only
Code:
@echo off
"C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe" /scan
Full Scan code:
For 64-bit only
Code:
@echo off
"C:\Program Files (x86)\Malwarebytes' Anti-Malware\mbam.exe" /fullscan
For 32-bit only
Code:
@echo off
"C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe" /fullscan
Repeat the same process as above in order to schedule these tasks.
I hope you found this guide useful
Last edited: