Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1048449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T16:27:26+00:00 2026-05-16T16:27:26+00:00

HI, Im using Delphi and I want to make an application that can do

  • 0

HI,

Im using Delphi and I want to make an application that can do the following

When started from within Terminal services (remote desktop), if another user logs into another terminal services session they should be able to see the application running in the desktop tray. However if a user sitting at the server logs in then they shouldn’t see the application running in the desktop tray. Its fine if everyone can see it running in the process list, just not the desktop tray.

How can I do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T16:27:27+00:00Added an answer on May 16, 2026 at 4:27 pm

    Make your application launch on startup on every user, then use this function to determine whether to quit or not:

    #include <windows.h>
    #include <winternl.h>
    
    BOOL IsRunningOnTerminalServerClient( void )
    {
        PWINSTATIONQUERYINFORMATIONW WinStationQueryInformationW;
        WINSTATIONINFORMATIONW wsInfo;
        HINSTANCE hInstWinSta;
        ULONG ReturnLen;
    
        hInstWinSta = LoadLibraryA( "winsta.dll" );
        if( hInstWinSta )
        {
            WinStationQueryInformationW = (PWINSTATIONQUERYINFORMATIONW)
                GetProcAddress( hInstWinSta, "WinStationQueryInformationW" );
            if( WinStationQueryInformationW &&
                    WinStationQueryInformationW( SERVERNAME_CURRENT, 
                        LOGONID_CURRENT, 
                        WinStationInformation,
                        &wsInfo, 
                        sizeof(wsInfo), 
                        &ReturnLen ) &&
                    ( wsInfo.LogonId != 0 ) )
            {
                FreeLibrary( hInstWinSta );
                return( TRUE );
            }
            FreeLibrary( hInstWinSta );
        }
        return FALSE;
    }
    

    Pulled from http://msdn.microsoft.com/en-us/library/aa383827(v=VS.85).aspx

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I`m using Delphi 2009 and want to operate some XML data. I heard that
I'm using Delphi 6, and I want a database bound list box with multiselect.
I'm using standard Delphi constants DayMonday, etc and I want to convert them to
I'm using a Delphi TActionList, with Shortcut Keys for some actions. I want to
I am using a popup menu in Delphi. I want to use it in
I'm using Delphi 2007. How can I put a GIF/PNG image on a BitBtn
I'm using Delphi 2007 Pro. I have a runtime package that includes a number
I need to code a simple form application and I want to make it
When using Delphi IDE, it will silently change SQLConnection.Connected to true when populating field
I'm using Delphi and need to get the current Windows DNS server IP address

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.