moudey / Shell

Powerful context menu manager for Windows File Explorer
https://nilesoft.org
MIT License
2.88k stars 96 forks source link

How can I delete the delete option in the context menu #474

Open dentistfrankchen opened 2 weeks ago

dentistfrankchen commented 2 weeks ago

I want to hide the "delete" option in context menu, how can I do this?

dimateos commented 3 days ago

There might be a way to do it by using non languange dependant strings, but you can match anything with "find"

For example in spanish:

remove(find = '"Copiar"')
remove(find = '"Cortar"')
remove(find = '"Pegar"')
remove(find = '"Abrir"')
remove(find = '"Editar"')
remove(find = '"Eliminar"')
remove(find = '"Cambiar nombre"')

Those are exact matches due to the "", drop them for partial matches,. You can also use wildcards with "*"