API For Determining If App Is Running On Citrix Or Terminal Services

Nov 15, 2010

I'm looking for an API/function I can call to determine if software is running on Citrix, Terminal Services, or a stand-alone PC. Optimally, it would work something like this: [code]I would prefer something that worked from an API call as opposed to looking at something in the registry as we're having more and more customers that are locking down the registry.

View 3 Replies


ADVERTISEMENT

Getting A Unique ID For A Thin Client Running Terminal Services?

Apr 20, 2009

We want to set up a bunch of thin clients linked to a server running server 2003 using terminal services. When the thin client runs our app it needs to know which station it is so it can gather information unique to itself from the database. (IP address?). Our app is written in VB6.

View 3 Replies

Upload A File Into Program Application Running Under Terminal Services?

Jul 28, 2011

We are developing an application in VB.NET that will need to accomodate remote users logging onto a Microsoft Terminal Server using RDP through the MSTSC.exe client.

Is it possible to offer an 'Upload' button which will allow the remote user to pick a file from his/her local hard drive and upload to the server ?

View 1 Replies

Application Runs On Citrix Server But Not On Virtual Terminal Server

Sep 3, 2009

An application loaded on a citrix server executes with no problem. When we try to run the same program files on a virtual server, we get silent errors and we do not even see the application window appear. The program runs for a moment in task manager, but then closes down. BTW other .net apps run on the virtual server. Here is the error we see in the event viewer application logs[code]...

View 2 Replies

Connect To A Remote Pc Via Terminal Services?

Aug 11, 2011

i connect to a remote pc via terminal services, when i print with the Microsoft Office Word i get the print in my local printer fast, but when i try to print with my own application the print take 10 seconds.

I use to print the control PrintDocument.

View 5 Replies

Hooking Into Terminal Services Manager?

Jun 1, 2009

Has anyone ever come across a way of a way to create an app that kind of mimics what Terminal Services manager does in Windows2003/XP.

I would like to write something that would either go and query a farm of server every n secs a get me a list of users logged in, there process's etc or do maybe type a username in and it goes and finds the user in the farm and returns their details.

View 3 Replies

Microsoft Terminal Services Library

Jan 2, 2011

Is it possible that the control MS Terminal Service Library control cannot be found on my add reference tool in VB.net 2008?

View 2 Replies

VB6 App In Terminal Services Remote Desktop Error?

Mar 11, 2010

I have a VB6 app using MS Access2003 database ODBC connection in Windows Server 2008my connection string is simple ODBC-- DSN=hotel -- using Microsoft Access Driver (.mdbusing admin user - i can run all forms on windows server 2003 successfullyusing other users - i get "permission denied error 70"I have 2 problems,1- cannot use software in terminalservices using remote desktop to server @Windows Server 2008i have 10 machines connected using Remote desktopfor a limited user, >> permission deniedif i cange the limited user to admin >> things work but ONLY FOR THAT USER!ALL OTHER USERS THEN HAVE PROBLEMS WITH THE SOFTWARE, some exit, some cannot fetch data, etc.

View 1 Replies

ComboBox Dropdown Server 2003 Terminal Services?

Dec 22, 2011

I have built an application in VB 2010 on my Windows 7 Pro desktop. I have a particular combo box with a datasource that is dynamically populated, depending on certain values entered by the user; it may or may not have any records in the datasource. When I run/install the application on my desktop, the combo box acts normal, if I click the dropdown button and the datasource contains no records, the combobox will show a single blank beneath the combobox (to indicate no records). When I perform the same action on server 2003, the combobox DOES NOT show a blank row, it does nothing! It act's like it's broken.

View 3 Replies

Create Remote Desktop Monitoring Using Microsoft Terminal Services

Dec 26, 2010

creating remote desktop connection in vb.net using Microsoft Terminal Services(msrdp.ocs). The main objective is to remote monitor clients without interrupting them or knowing they are monitored.

View 5 Replies

Application Running On Terminal Server?

Apr 29, 2009

I have a VB 2005 application running on Terminal Server and I need the IP address, clientname and username from the client system.

View 1 Replies

Application Locks Up When Running In Terminal Server Session?

Sep 23, 2010

I have a Windows Forms application created in VS2005 which runs fine on the user desktop but when running in Terminal Server session it frequently locks up when the remote desktop window is minimised and the user is working locally.There is plenty of RAM on the server so this is not an issue, the only solution so far has been to force the user session to log off on the Terminal Server and then reconnect.

View 14 Replies

Using WSF (Windows Scripting File) To Retrieve Component Services Running Process ID's Using Running Process Name

May 7, 2009

I am trying to write a Windows Script that will allow me to monitor the following: That 2 x seperate but specific processes within Component Services "Running Processes" list are currently running and have not reset within the past hour. If I already know the PID, then I can retrieve the CreationDate (I assume which I can use to check for restarts? or is this the actual process creation/installation date) for each specific process, however if a restart occurs the PID will change and my script needs to know what the new PID is without me telling it!

[Code]...

View 2 Replies

VS 2008 GlobalKeyboardHook - Application That Will Run On A Terminal Similar To A Micros Terminal

Feb 19, 2010

I have an application that will run on a terminal similar to a micros terminal. The terminal is already running another vendors app that captures the users logon ID from a swipecard. I need to capture the same logon ID at the same time. This is no problem, I just hook it.

The problem is I have another app which also captures swipes. In development I am running both apps for testing. It appears that when I unhook one app it unhooks both. Rehook and all is fine. As my two apps will never be on the same terminal this is not a problem. What I am concerned about is the vendors app unhooking mine or the other way around.

I would of thought that each app would have it's own ID and that each hook would be independent. I have considered finding a way to determine if a global hook is present and then use some logic to decide on unhooking or not but can't find anything.

View 1 Replies

Check On Several Services To See If They're Running?

May 15, 2011

I need to check on several services to see if they're running on several servers. I would like the program to tell me if a specific service is or is not running and if it is to reply with a msg stating which service is running, same if it is not running.

this is what i have so far:

Private Sub CheckServiceButton_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckServiceButton.Click
' This will check if the service is running '

[Code]....

View 3 Replies

Display The Data On Terminal B If Inserted From Terminal A?

Dec 8, 2010

my project work on server if inserted data from terminal A i need display the data on terminal B

View 1 Replies

Retrieve List Of Services Running On Server?

Feb 2, 2012

I'm looking for a way to get details of the name and status of all services running on a service. I did use the following code:
Public Sub GetServices()
Dim localServices As ServiceController() = ServiceController.GetServices()
For Each service As ServiceController In localServices
If Not String.IsNullOrEmpty(service.DisplayName) Then
dictservice(service.DisplayName) = New Service(service.DisplayName, service.ServiceName, service.Status.ToString)
End If
Next
End Sub
However, since I have packaged up my project as a WCF service, the System.ServiceProcess namespace I used cannot be used: Is there any other way I can retrieve the same details? Possibly through WMI?

View 1 Replies

Sendkeys To Citrix Cilent

Dec 21, 2008

i want to send keys to AS00 which is running under the citrix client. I tried normal senkeys option in vb.net. but not working. please give your valuable

View 1 Replies

VB2005 Windows App On Citrix?

Oct 12, 2011

I developed a very simple little windows program in VB 2005 to be used on desktops here at HQ. It reads a table from an Oracle DB into an array, let's the user select a text file, and then uses that data and text file to create an Excel spreadsheet.

Now they want a remote user to have access to it. We use Citrix for our remote application access. There is no install, I just copy the code to the Citrix server so I didn't need to put terminal server in install mode. When I am on the Citrix server, the application runs well. When I access the application through Citrix, I get an Oracle error from the ODBC data manager: Data source name not found and no default driver specified.

Does anybody know what is going on? how to make it work?

Are there any papers related to Windows applications on Citrix server that can help?

View 3 Replies

.net - Executable Wont Run Via Citrix Server?

Aug 3, 2011

The vb.net code:Dim fs2 As Object fs2 = CreateObject("Scripting.FileSystemObject")

gets an error when I try to make an executable file out of this program and run it via citrix server.

The error is, the executable file won't run at all. When I try to run this locally, there are no errors at all.

View 1 Replies

TreeView DragDrop Not Working In Citrix?

Dec 10, 2009

I have a treeview dragdrop event written in VS2003. It works perfectly fine when the application is running on desktop, until we move the application to Citrix. So, users are now running it off from Citrix, the DragDrop event doesn't work anymore. It doesn't even have the effects of allowing dropping.

View 3 Replies

Error Connecting To Citrix Database Via SQL-specified ODBC

Sep 23, 2010

I am connecting to Citrix database using SQL-defined ODBC. Having a problem with it. I am updating an existing application that uses the ODBC in SQL, and it connects fine. However, that database connection is secured, only available on the production side. The test side has a remote connection. I am attempting to change the remote connection values to match the parameters of the SQL-based ODBC, but the labels are different, and it doesn't seem to match. Specifically, I don't think I'm getting the DataSource correct. Also, it can't find the username and password that I use to log into the remoter connection - I get an error message "Invalid authorization specification".

View 1 Replies

FileInfo.LastWriteTime And Citrix Wrong Value Returned?

Nov 29, 2010

I have an application written using VB.Net, framework 3.5.In the application I read LastWriteTime and CreationTime values for a file saved in file system. In general,the code works fine except one case when the application is started using Citrix environment. In this case the returned value for bithproperties is January 1, 1601.

View 2 Replies

VBS Script To Launch And Login To Citrix Web Interface?

Jan 19, 2010

I have never used VBS script before but I would like to use it to launch a Citrix WI page and to login in to the website.I have using XenApp5.0 FR2 with WebInterface 5.2.I have this script but this does not work on login, I can open the website but then I get an error:

strEmail = "myusername"
strPass = "mypassword"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True

[code]....

View 4 Replies

What Is Ado.net Synchronization Services And How To Use These Services

Mar 14, 2009

What is ado.net synchronization services and how to use these services

View 1 Replies

.net - Run Cygwin Terminal Using Vb?

Apr 21, 2012

i need a code to type and perform commands in cygwin terminal in hidden mode(background) using visual basic, i was using cmd but now i want to use a Linux source code so i must use linux. i ran cmd in hidden mode successfully but it isn't working with cygwin, here is the cmd code:Shell("cmd.exe /k tracert -h " & _h & " " & domain.Text & " > temp" & i + 1 & ".txt & exit", AppWinStyle.Hide, True)

[Code]...

View 1 Replies

Click Once With Terminal Servers

May 27, 2010

Can ClickOnce software be ran on a terminal server?

View 3 Replies

Microsoft Terminal Control Problem In MDI?

Feb 11, 2011

trying to write an app consisting of MDI parent where the child forms are:

- created with the Microsoft Terminal Services Control

- connected to remote server (from a listbox)

I can get it to work in a SDI, however whenever I try to spawn the child window in MDI format I get:

System.InvalidOperationException was unhandled

Message="Unable to get the window handle for the 'AxMsTscAxNotSafeForScripting' control. Windowless ActiveX controls are not supported." Source="System.Windows.Forms"

View 2 Replies

Receive Sms And Save To Mysql Using Terminal?

Jan 28, 2012

It is possible to automatic receive sms and save it directly to mysql database using terminal in vb.net?

View 1 Replies

Remote Access Terminal System?

Jun 10, 2011

what are the requirements needed on how to control a terminal pc in terms of programming it. i am planning to use vb.net when we develop the system.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved