The following example shows how to edit static items Code: shell { static{ // Remove Format item from context-menu item(find='format' vis=remove) // Change title of "Scan with Microsoft Defender.." item item(find='Scan with Microsoft Defender' title='Scan with Defender') // Change image of "Delete" item item(find='"delete"' image=\uE0B4) // disable "Delete" item if the Shift key is not pressed item(where=!key.shift() find='"delete"' vis=disable) } } This example shows how to delete multiple items with just one line. Code: shell { static{ item(find='print|send to|cast to device|restore previous versions' vis=remove) } }