L
Lonney
BRQIKMON.EXE Kill Script.
Thought I would share this with everyone because I was un-able to find
a quick fix when I first came across the problem.
The only fix I can find is the change printer drives, but this process
still comes back to bite us from time to time and all printing on one
of our systems dies.
BRQIKMON.EXE gets installed with some brother printer drivers and can
cause problems in Citrix and other server environments.
In our case we had problems getting rid of the drivers that install
this so I wrote a kill script for the process that can be run by the
windows 2000 scheduler on a regular basis.
process.exe is free and found at:
http://www.beyondlogic.org/solutions/processutil/processutil.htm
Or you can use any command line tool to list and kill processes.
The script:
@ECHO OFF
PROCESS.EXE | FIND "BRQIKMON.EXE"
IF %ERRORLEVEL% EQU 0 (
PROCESS.EXE -k BRQIKMON.EXE
) ELSE (
ECHO Evil BRQIKMON.EXE process is not running.
)
Thought I would share this with everyone because I was un-able to find
a quick fix when I first came across the problem.
The only fix I can find is the change printer drives, but this process
still comes back to bite us from time to time and all printing on one
of our systems dies.
BRQIKMON.EXE gets installed with some brother printer drivers and can
cause problems in Citrix and other server environments.
In our case we had problems getting rid of the drivers that install
this so I wrote a kill script for the process that can be run by the
windows 2000 scheduler on a regular basis.
process.exe is free and found at:
http://www.beyondlogic.org/solutions/processutil/processutil.htm
Or you can use any command line tool to list and kill processes.
The script:
@ECHO OFF
PROCESS.EXE | FIND "BRQIKMON.EXE"
IF %ERRORLEVEL% EQU 0 (
PROCESS.EXE -k BRQIKMON.EXE
) ELSE (
ECHO Evil BRQIKMON.EXE process is not running.
)