Questions tagged [terminal-server]

A terminal server (also referred to as a serial server or console server network access server) enables organizations to connect devices with an RS-232, RS-422 or RS-485 serial interface to a local area network (LAN).

A terminal server (also referred to as a serial server or console server network access server) enables organizations to connect devices with an RS-232, RS-422 or RS-485 serial interface to a local area network (LAN). Products marketed as terminal servers can be very simple devices that do not offer any security functionality, such as data encryption and user authentication. The primary application scenario is to enable serial devices to access network server applications, or vice versa, where security of the data on the LAN is not generally an issue. There are also many terminal servers on the market that have highly advanced security functionality to ensure that only qualified personnel can access various servers and that any data that is transmitted across the LAN, or over the Internet, is encrypted. Usually companies which need a terminal server with these advanced functions want to remotely control, monitor, diagnose and troubleshoot equipment over a telecommunications network.

32 questions
0
votes
0 answers

C# Logon Script: RDP Remote Application get Application Name

beloved community, I'm currently writing a Logon Script for a Windows Server 2016, that gets executed whenever a user logs onto this server. The server hosts different application which get served remotely to the user. So the user sets up a remote…
calgara12
  • 117
  • 11
0
votes
0 answers

forefiles batch file to loop through terminal server profiles

I am trying to create a batch script which will run through each users download folder on a terminal server and remove files older than 30 days What I have so far is this for /d %%a in (C:\Users*) do forfiles /p "%%a\Downloads" /D -30 /c "cmd /c del…
DZED
  • 1
  • 1
0
votes
0 answers

Citrix: Avoid application "Not Responding"

We are facing an issue with our application in case it is executed in citrix environments. The application is a client/server application developed in Delphi and .NET. The database in the backend is Oracle. Many customers have the application…
0
votes
1 answer

dhcp in Mac Terminal - is this spying?

"dhcp35:~ user$" has appeared in my mac terminal instead of the usual "My-MacBook-Pro:~ user$". Is this an indication of anything malicious? I've been messing around cliclick to automate key presses from terminal, so not sure if this has resulted…
F. Lumley
  • 685
  • 1
  • 4
  • 15
0
votes
1 answer

Association file in terminal server for all users

I am trying to associate .hod files to IBM i Access Client Solution. IBM site says to use "open with" Windows menu, but in terminal server 2008 R2 if an user associates .hod file to that program, on the next logon (maybe for redirecting or policy…
0
votes
1 answer

Can an RDP client use .NET on the RDP host?

I'm pretty sure I know the answer to this but I'd like to confirm with the experts. I have a client who is utilizing .NET 4.6.2...When they connect to a Terminal Server, can the client's version of .NET be used on that TS session? So, ultimately the…
0
votes
1 answer

Event for Citrix Profile Management Printer-Mappings

Is there some event (eventlog) or another source of information to find out when the Citrix profile management is done with mapping network printers? It would also be great to know when it is done mapping those printers installed on the client…
0
votes
1 answer

Batch file to ask for session ID in tsdiscon?

Pardon my very broad question here guys. I don't ever really do much coding (at all) and was hoping you guys could help me out. Basically what I would like to do is have an end user run a script that asks them what Session ID they would like to…
nbarr7655
  • 23
  • 5
0
votes
1 answer

Terminal Server default gateway configuration

Our Terminal Server (TS) is only accessible on one network, therefore I believe the default gateway has not been set correctly or needs to be updated. I am looking for the commands in a telnet session to: 1. Review the current configuration of the…
dancingbush
  • 2,131
  • 5
  • 30
  • 66
0
votes
1 answer

How to perform testing phase using a terminal session?

I have a few Jenkins builds that have tests that require an existing session (Windows GUI) so they cannot run as a service. Because these tests (using nunit) do not need to install things on the machine they could easily run in separate terminal…
sorin
  • 161,544
  • 178
  • 535
  • 806
0
votes
1 answer

TerminalServer Profil Path and C# .NET3.5

I am programming a software which can allow me to add users and modify them in ACTIVE DIRECTORY on Windows Server 2008 R2 I used using System.DirectoryServices.AccountManagement; [DirectoryRdnPrefix("CN")] [DirectoryObjectClass("Person")] public…
0
votes
2 answers

What could be the reason for SQL Server Express to roll back a database to a previous state?

I have some very strange problems. I have an application running on Windows 2003 terminal server from multiple clients. The application uses SQL Server 2008 Express as its database. Yesterday, I connected to the app, closed some sessions on the…
ericpap
  • 2,917
  • 5
  • 33
  • 52
0
votes
0 answers

Retrieving the COM class factory for component with CLSID {abcdef} failed due to the following error: 80040154

I am getting following error when trying to run an application on a Windows Server 2008 on Terminal Server: Retrieving the COM class factory for component with CLSID {abcdef} failed due to the following error: 80040154 I connect via remote to the…
0
votes
1 answer

Delphi errors on Remote Desktop Server

Are there any logging/trace tools that I can enable for a Delphi-based EXE without having access to the Delphi code, just the compiled EXE and related DLLs? Here is why I need it: some users of our Windows 2012 Remote Desktop Server (previously…
user3644695
  • 1
  • 1
  • 2
0
votes
0 answers

Connect Multiple Client on Server for Windows Forms Application

We have Windows Server 2003 Enterprise Edition installed in our server PC. We have deployed our own windows application on Server. Now we need that all the client pc's access it via RDP. But problem is when one user opens it, session of another user…