c# - is it possible to create a windows service which pop up a windows application -
is possible create windows service pop windows application , can save values list through application. want create windows service running every 2 hours , save values share point list.
yes, can, don't think should. typical user interactions create startup application easier manage , interact user, or use task scheduler.
to answer question, windows services can user interactive, means can have access user's user interface (aka desktop). can use show messages users , ask input. read more on how enable , how internals work on msdn: interactive services.
from msdn:
use createprocessasuser function run application within context of interactive user
so can start external application interact user, save information in list or database, , move on.
Comments
Post a Comment