You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a WPF app which is deployed as a store app using desktop bridge approach. I want to create a UWP time triggered background task to do some work in a background even though my app is not launched by user. I want to know is there any way to register and trigger background task without launching the app. Any help will be appreciated. Thanks.
The text was updated successfully, but these errors were encountered:
@rahulsbaviskar
You could use the PreInstall task to register the time trigger background task and you may do the routine work as part of the handler for the time trigger background task.
However, if you don't want to do the operation repeatedly, instead just want to do some operation only once, you could write the logic directly in the handler of the Preinstall task.
I have a WPF app which is deployed as a store app using desktop bridge approach. I want to create a UWP time triggered background task to do some work in a background even though my app is not launched by user. I want to know is there any way to register and trigger background task without launching the app. Any help will be appreciated. Thanks.
The text was updated successfully, but these errors were encountered: