Hello, has anyone found a way to remove the Zoom Control, CTRL - and CTRL + when using Store Commerce app on a Windows AD domain network connected POS. We are not able to use Intune on these devices.
Hi there! Good morning, evening, or afternoon - depending on where you are :) Hope you are well today!
To remove or disable the Zoom controls (CTRL + and CTRL -) in the Store Commerce app on a Windows AD domain network-connected POS, you can consider the following approaches: 1. Modify the App Configuration
Check if the Store Commerce app has any configuration settings or policies that allow you to disable keyboard shortcuts. This might be available in the app's settings or through customization options.
2. Use Group Policy
Since you're on a Windows AD domain network, you can use Group Policy to restrict certain keyboard shortcuts. While there isn't a direct policy for disabling zoom controls, you can create a custom Group Policy Object (GPO) to block specific key combinations.
3. Custom JavaScript or Code
If the Store Commerce app allows for custom scripting or extensions, you can write a script to intercept and disable the CTRL + and CTRL - key combinations. For example:
document.addEventListener('keydown', function(event) {
if ((event.ctrlKey && event.key === '+') || (event.ctrlKey && event.key === '-')) {
event.preventDefault();
}
});
This would need to be implemented within the app's codebase or as part of a customization.
4. Third-Party Tools
Use third-party tools or utilities to block specific keyboard shortcuts at the system level. These tools can be configured to prevent the zoom controls from being triggered.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.