Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Need to REMOVE a registry entry through batch file

Featured Replies

I need to remove this entry on a lot of pc's

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]

"EFI Job Monitor"="C:\\WINNT\\system32\\rundll32.exe C:\\WINNT\\system32\\spool\\DRIVERS\\W32X86\\3\\efjm.dll,run"

How do I remove it? I know the "REGEDIT /s Remove.reg" part, not sure what to put in the reg file itself..

cheers


A "dash" in value will do it (it will delete the entry).

Example:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]
"EFI Job Monitor"=-

Similarly, you can even remove entire keys!

[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]

That will delete the entire key which is listed.

Just stick this in a batch file.

REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v "EFI Job Monitor"

Deletes the registry value "EFI Job Monitor" under Run key.

[EDIT]

For remote computers, include the computer name before the path of the subkey in the \\ComputerName\PathtoSubkey format. Omitting ComputerName causes the operation to default to the local computer.

i.e.

REG DELETE \\TAURUS\HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v "EFI Job Monitor"

Deletes the registry value "EFI Job Monitor" under Run key on TAURUS.

[/EDIT]

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.