How can a Windows console application written in C# determine whether it is invoked in a non-interactive environment (e.g. from a service or as a scheduled task) or from an environment capable of user-interaction (e.g. Command Prompt or PowerShell)?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

Environment.UserInteractive Property

link|improve this answer
feedback

I haven't tested it, but Environment.UserInteractive looks promising.

link|improve this answer
feedback

To determine if a .NET application is running in GUI mode:

bool is_console_app = Console.OpenStandardInput(1) != Stream.Null;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.