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.

remove keys from a .reg file

Featured Replies

how can i remove a REG_SZ key with a .reg file?? i'll try to explain myself: the key

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]"NeverShowExt"=""

it's used to not display the extension for .url files and i want to remove it. i know using [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut] from a reg file causes the hive to be removed but i only want to remove the REG_SZ, someone can help me??


how can i remove a REG_SZ key with a .reg file?? i'll try to explain myself: the key
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]

"NeverShowExt"=""

it's used to not display the extension for .url files and i want to remove it. i know using [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut] from a reg file causes the hive to be removed but i only want to remove the REG_SZ, someone can help me??

Simple you put the minus next the value like this

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]

"NeverShowExt"=-

Enjoy! :)

Felix

  • Author

thanks both @Alanoll and @`Felix` :)

i'll try to apply the same knowledge to windows startup applications to prevent them from run :rolleyes:

edited: here are my keys

Windows Registry Editor Version 5.00

;shows url, pif, shs, scf file extensions

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut]"NeverShowExt"=-

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\piffile]

"NeverShowExt"=-

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SHCmdFile]

"NeverShowExt"=-

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ShellScrap]

"NeverShowExt"=-

Windows Registry Editor Version 5.00

;remove items from startup

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]"CTFMON.EXE"=-

"MsnMsgr"=-

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

"HotKeysCmds"=-

"IgfxTray"=-

"NeroFilterCheck"=-

Edited by SiMoNsAyS

In all of the above, you have missed out inverted commas for the reg_sz value. In other words, wrap even the minus sign around inverted commas.

Make

"MsnMsgr"=-

to look like

"MsnMsgr"="-"

  • Author
In all of the above, you have missed out inverted commas for the reg_sz value. In other words, wrap even the minus sign around inverted commas.

Make

"MsnMsgr"=-

to look like

"MsnMsgr"="-"

as @Alanoll and @`Felix` said if what i want it's remove the key it has to look like

"MsnMsgr"=-

not like

"MsnMsgr"="-"

that will create a key "-" and it won't be removed

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.