We built an a .NET Core Console app that runs as a background app. This app notifies users using Windows Notifications. It works well. But I noticed that some users turn off all notifications.
So now I need to make sure that when installation team installs the app package for all users, some kind of windows script is executed that does 2 steps
Step 1) runs the app once to ensure a windows notification is created so that it gets added to windows registry as a new App for notifications
Step 2) Turns on the Windows notification for this app alone overriding the User's privacy notification settings
I want a Powershell script to achieve Step 2. Is this possible to override using Registry entries? If yes how?