thin-client

How can i get the Client Computer name

被刻印的时光 ゝ 提交于 2019-12-22 00:43:06
问题 I am using C# Framework 4.0 Windows Form. My program is installed on a server TSE. There are 11 light clients that connect to this server. When one of these clients launches my progam, how can I get his PC name ? 回答1: Assuming you are using Terminal Services and Remote Desktop, you can check the CLIENTNAME environment variable to retrieve the client machine's name, although some people report problems with it. You can get the value with Environment.GetEnvironmentVariable, eg var clientName

Raspberry Pi usb redirect issue

浪尽此生 提交于 2019-12-11 13:42:27
问题 Okay I am going to try and be as discriptive as possible here to get this problem solved. I work at a company that makes BIG gear boxes and we have computers that run our Mills/Laths. These computers are currently FIT-PCs running XP. These computers are used to control the laths/mills via a usb to serial converter (PL2303_Prolific usb to serial converter). When it is plugged into an xp machine it is recognized as a com port. SO these machines are very old and are fail left and right, I intend

How to create thin setup for Windows MSI Installer?

 ̄綄美尐妖づ 提交于 2019-12-11 07:02:32
问题 We have windows application in which we distribute whole MSI package to the client in zip form. We are now up for licensing feature and we want to allow users to work in thin setup just like if you download Visual Studio to install, it will download the files from the server and install it rather than we download whole 20GB VS setup from the server. We want to use the web-based installer in which we can manage the licensing features too. Can anyone help or redirect to useful links? It will be

How can i get the Client Computer name

一个人想着一个人 提交于 2019-12-04 20:31:22
I am using C# Framework 4.0 Windows Form. My program is installed on a server TSE. There are 11 light clients that connect to this server. When one of these clients launches my progam, how can I get his PC name ? Panagiotis Kanavos Assuming you are using Terminal Services and Remote Desktop, you can check the CLIENTNAME environment variable to retrieve the client machine's name, although some people report problems with it. You can get the value with Environment.GetEnvironmentVariable , eg var clientName=Environment.GetEnvironmentVariable("CLIENTNAME"); For an API based method, check Preferred