question

SonDaoHoang-5511 avatar image
0 Votes"
SonDaoHoang-5511 asked NicoZhu-MSFT edited

Microsoft Store Policies

Hi Microsoft, my project is to write 1 UWP application to manage remote employees, grant them permission to use windows functions so I have some question for my UWP application development:
- Is my app allowed to interrupt user activity, prevent them from connecting peripherals, taking screenshots, etc. by changing Registry settings (authorized users)?
- Is my app allowed to remotely lock the device using a 3rd party module that has a user permission agreement?
Thanks and best regards.

windows-uwpwindows-group-policywindows-uwp-feedback
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

NicoZhu-MSFT avatar image
0 Votes"
NicoZhu-MSFT answered NicoZhu-MSFT edited

Hello, Welcome to Micorosoft Q&A,

Is my app allowed to interrupt user activity, prevent them from connecting peripherals, taking screenshots, etc. by changing Registry settings (authorized users)

Currently, above requirements is about low system level, we can't implement above features with pure UWP app. If you do want to implement above with UWP and publish to store, the better way is use desktop-bridge.


You can read registry values from a Win32 runFullTrust background process launched from a UWP application, and you can write values in the HKEY_LOCAL_MACHINE hive from an "elevated" Win32 application launched from that runFullTrust process. For more detail, you could refer stefan's blog UWP with Desktop Extension.

But you need to enable runFullTrust Restricted capability for package project. Restricted capabilities are intended for very specific scenarios. The use of these capabilities is highly restricted and subject to additional Store onboarding policy and review. Note that you can sideload apps that declare restricted capabilities without needing to receive any approval. Approval is only required when submitting these apps to the Store.



If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.




· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Thank you so much for the answer <3

0 Votes 0 ·