Questions tagged [terminal-services]

Terminal Services provides the ability to host multiple, simultaneous client sessions on Windows Server 2003.

Terminal Services provides the ability to host multiple, simultaneous client sessions on Windows Server 2003. Terminal Services is capable of directly hosting compatible multi-user client desktops running on a variety of Windows-based and non Windows-based computers.

What Is Terminal Services?

283 questions
0
votes
1 answer

Trying to understand SECURITY_LOGON_TYPE enumeration

I'm struggling to understand all of the SECURITY_LOGON_TYPE values: typedef enum _SECURITY_LOGON_TYPE { Interactive = 2, Network, Batch, Service, Proxy, Unlock, NetworkCleartext, NewCredentials, RemoteInteractive, …
c00000fd
  • 20,994
  • 29
  • 177
  • 400
0
votes
1 answer

How to know when all interactive users have logged out?

I'm writing a Windows service using WinAPIs and C++. One of the options is that I need to send the system into sleep after all users are logged out. The log-out command is started from the UI (which can notify my service), the problem is knowing…
c00000fd
  • 20,994
  • 29
  • 177
  • 400
0
votes
1 answer

Access Local SQL Server within Terminal Services

Today there is a local SQl Server that resides inside a terminal services location, which isnt shared in the network, unfortunately i have no control or administration access to it, just basic read only access. I have to do some data manipulation…
Hamarict
  • 143
  • 1
  • 2
  • 11
0
votes
2 answers

How to create Terminal Services Server add in (virtual channel) in C#

I'm trying to create a dll as add in to Terminal Server to create a virtual channel communication with the server. I found this example (http://www.codeproject.com/Articles/16374/How-to-Write-a-Terminal-Services-Add-in-in-Pure-C), which…
Gigi
  • 315
  • 7
  • 23
0
votes
1 answer

WTSQuerySessionInformation() is failing on windows server 2008 R2

I have written win32 application. I'm using WTSQuerySessionInformation() function to query clientprotocoltype . it works fine but during log-off if i call this function, its getting failed with error code 2. this is happening only on windows server…
Mankutimma
  • 103
  • 1
  • 8
0
votes
2 answers

check if app is running already under current user

In a terminal server situation I want to make sure only 1 instance of the application runs for each user. What is the best way to do this? Here is what i'm currently using but it seems like it isn't working as intended. I can't be 100% on that. int…
Tsukasa
  • 6,342
  • 16
  • 64
  • 96
0
votes
3 answers

Printing an Access report and decimal place weirdness

My client has an Access (2000) application that we didn't write and we don't have access to the MDB (it's an MDE). One of the functions is to create a packing slip report. There's no option to preview, only print or save to file. There's a field…
Michael Itzoe
  • 1,949
  • 4
  • 29
  • 49
0
votes
2 answers

WMI C# Server accepts RDP connections

We have 6 Citrix Servers. I'm trying to find out if Remote Logons are enabled/disabled. I plan to put this onto of a webpage to display and green icon if they are or red if they aren't. I've managed to connect to the machines and pull operating…
SteveU
  • 111
  • 3
  • 15
0
votes
1 answer

ASP page errors when viewing page in Terminal Services Server

The following really has me baffled. I have a website written in classic ASP. The site has a side bar navigation menu that is built dynamically by getting a list of URLs from a stored procedure and listing them in a table. The site is working fine…
valis
  • 235
  • 1
  • 4
  • 15
0
votes
1 answer

Remote application deployment

We have a c#, .NET 4.0, windows application which we deploy to a terminal server. (Developed using VS 2010). This application makes use of several WCF services sitting on another server. Our users access the front-end via remote desktop session.…
ché
  • 257
  • 1
  • 2
  • 8
0
votes
1 answer

hide tiles of Windows 8.1 in c# programmatically

I have to extend a terminal server software in order to work with windows 8.1. The scenario is a follows: Two PCs: on one runs the client software on the other one runs the server. The operating system of the server is Windows 8.1 When the user…
0
votes
1 answer

Storing user's application preferences in Terminal Services Server session. Managed C++

Sorry if my question is silly, but I have no experience at all with terminal server and am having a problem on how to store user preferences for an app. The application was originally designed to run in individual, independent, computers. The…
Aznarepse
  • 71
  • 1
  • 9
0
votes
2 answers

Default terminal line change

From terminal on my mac, I forked a repo from github, and while that process was taking place I opened a new tab. While the new tab was opening up, I hit a key combination that I am uncertain of. My default terminal line now has some content on it…
0
votes
1 answer

.NET application fails to run from Network Share and RDP Shell

I'm trying to run my .NET application, that resides in a network share from our domain, using a RDP Client. When starting a "full" RDP session (that is, opening the whole desktop) and then running my application from the .exe file, everything works…
J.Hudler
  • 1,238
  • 9
  • 26
0
votes
2 answers

ASP .NET - Get username on Windows Server 2003 (Terminal Service)?

On a intranet ASP .NET (C#) page I am trying to retrieve the current username. From my local machine (Firefox 3.5) I can see results (from my local login) for the following possibilities: <% Response.Write(User.Identity.Name); %> <%…
John M
  • 14,338
  • 29
  • 91
  • 143