Mac Client that can connect to Terminal Server Gateway

Anyone know of a Mac app that can connect to a remote computer via a Terminal Server Gateway?  The Windows version of MS Remote Desktop will do this but of course that is Windoz only.

You could try CoRD.  I don't know if it has the TS gateway option either, but it is an RDC client.
  CoRD (Microsoft RDC Screen Sharing)
<http://www.macupdate.com/info.php/id/22770/cord>

Similar Messages

  • Mac keeps trying to connect to a server when opening excel

    i worked for a week at a production house and they had me log into their server to access files that we all used.  obviously i forgot to eject their server before i left and instead just closed my computer and left.  now, since Lion makes all documents that were left open restore automatically my mac keeps trying to load a spreadsheet that i was reading off the server but obviously i'm not connected to said server anymore.  and i won't ever again. 
    how can i stop my mac from trying to connect to this server?  also, is there a way to stop Lion from auto restoring?
    thanks, all!

    Well, I was hoping that if you remove all traces of recently opened documents to resume and you disable the resume, then Excel would not try any longer to connect to the server.
    One more question: is Excel trying to reach the server when you start your system or when you launch Excel?
    If it happens at start up, then have a look, if Excel has been added to the start up items (System preferences -> accounts -> your account -> start up items) and remove it.
         Quit Excel (with Option + Command + Q) if it is open and remove the loginwindow preferences: Navigate to Library > Preferences > ByHost > com.apple.loginwindow.[xxxxxxxxx].plist
    The [xxxxxxxx] represent some interminable string of numbers and letters.
    If it happens at launch time, move the Excel preference file to the Desktop before you launch Excel. The file is locate here:
    /Users/your user name/Library/Preferences/com.microsoft.Excel.plist.
    If you keep your Library hidden, as it is by default, go to the System preference folder from the Finder menu: Finder -> Go -> Go to Folder (Or shift-cmd-G) and enter
    "/Users/your user name/Library/Preferences"
    Good luck

  • How do I see the clients that are connected to the access point?

    Hello,
    In Wireless Control System (WCS), how do I see all the clients that are connected to the Access Point? I can do a particular search that if I know the mac address. But what I really like to know is that which clients is connected to the network. That means it sould be able to show me, example, Client A is connected to AP 1. The problem in WCS is that I can't do that. Can some please advice how I am able to do this? Thanks.

    Two ways:
    First:
    Under monitor, go to Access Points, then chose the target AP and click on it to open a menu, go to the Current Associated Clients tab.
    Second:
    User the search tool on your upper right corner, type in the target AP name, execute the search, on the results, click view list, on the list chose you AP and then go to the Current Associated Clients tab.
    Enjoy.
    Phil.

  • Can connect to the server using VPN, but cannot pull up the shared drives

    I can connect to the server at work using PPTP VPN. I can ssh to the server once I VPN'd in. I cannot, however pull up any of the shared drives using K. It just says that it is connecting, but nothing happens. When I disconnect the VPN, the user name and password box pops up. The only way to get rid of it is to click cancel. Nothing changed on the server since the last time I logged in. Also, when I am VPN'd in, I cannot use the Server Admin or Workgroup Manager. Any assistance is greatly appreciated.
    P.S. The server is the MacMini and the client is the MacBook, running 10.5.7 software.

    This is strange, your setup is the same as mine :P
    Anyways, I also have a problem like this.
    I connect to VPN fine, but tools that need to access the net seem to take a very long time to open. Its as if my Client Information inside the server isn't being sent to the client correctly.
    It takes atleast two minutes after connecting to the VPN for iChat to connect and work again, and tools like Server Admin seem not to work at all.

  • Client machines losing connection to Leopard Server

    I have a small office set up as follows: 20" iMac (Intel) running Leopard Server. 4 client machines, all Macs, All Intel, also running Leopard client. I have these machines connected to a Linksys 8 port 10/100 router...and then to a cable modem for Internet Access. The problem that I'm having is that the client machines lose connection to the server multiple times each day. A restart and reconnect seem to fix the problem...only temporarily. At first, I thought it might be the Linksys Router so I put a Gigabit switch in between the machines and the router with the same results. I have the router on a static IP of 192.168.1.2 and am not running DHCP, DNS, or any other services other than file sharing. If any of you have experienced this, I would greatly appreciate any direction you might have.
    Thanks in advance.
    Dan

    It may be a 'typo' by you, but forget about 'appletalk' - this is not relevant to your problem (and pretty well redundant now). This looks like a TCP/IP issue.
    What is doing your DHCP? Presumably you have checked to ensure that there is only the one dhcp server in your network, and another has not accidentally been enabled (on a server, router or airport). What is the dhcp range for the DHCP server?
    Your post suggested that the servers, with static IPs, also 'drop off' the network. So a server IP cannot be pinged from a lan machine which has a correct IP assigned to it (rather than one which has a 169 address which obviously will not be able to ping it) ?
    On your laptops, when connected via an ethernet cable, have a look at Network Prefs-> Show: Network Port Configurations. In what order are these? Specifically, I am wondering if Airport is getting prioritised above Built-in Ethernet and maybe there is a 'rogue' airport network which the laptops discover and attempt to join ahead of built-in ethernet.
    -david

  • Writing client app to connect to Exchange Server 2013 and set OOF for users on vacation

    I am coding an C# app that should connect to Exchange Server 2013 on-premise (Servers Location is not in our Company). I`ve got an account (User and Pass) with readonly admin-rights for now and want to read and set OutOfOffice Objects for other users. I
    decide to use EWS Managed API over Autodiscovery but I am bit confuse how
    I tried to connect with "service.UseDefaultCredentials = true" and read contacts -> this code works:
    try
                ExchangeService _service
    = new ExchangeService(ExchangeVersion.Exchange2013_SP1);
                _service.Credentials
    = new WebCredentials("service.exchange",
    "1234", "domain");
                _service.TraceEnabled
    = true;
                _service.TraceFlags
    = TraceFlags.All; _service.UseDefaultCredentials
    = true;
                _service.AutodiscoverUrl("[email protected]",
    RedirectionUrlValidationCallback);
                foreach
    (Contact contact in _service.FindItems(WellKnownFolderName.Contacts,
    new ItemView(2)))
    var test = contact;
            catch
    (Exception exception)
                Console.WriteLine(exception);
    After that I tried the same with _service.UseDefaultCredentials = false; got error -> "The Autodiscover service couldn't be located." I am not shure if this "direct log on" is the right way, On msdn I've read about "delegate access"
    and "Impersonation" (NTLM and Basic Authentication) I'am a bit confused. Can anybody help me?

    hi,
    when you set a credential, you don't have to set the UseDefaultCredentials property (it is already updated).
    For autodiscover, you should try to set the property EnableScpLookup to True if you are in the Exchange domain or it is known by the current domain.
    Autodiscover uses a domain query (through Active Directory) and/or a dns query (this requires a DNS register for autodiscover.domain.net) to determine the access to the autodiscover service URI.
    Regards,
    Désiré GOVIN Refresh IT Solutions

  • I have an old Mac G4 that can only be upgraded to 10.4.11

    I have an old Mac G4 that  can only be upgraded to 10.4.11.  I use Itunes 7 and I  have a Classic Ipod that suddenly says it has been corrupted.  If  I  upgrade the software to 2.3 on the Ipod will i be able to access it from the G4 or  will I then have to upgrade  the itunes on the G4,  which I  cannot?  Does anyone have  any suggestions besides getting  a new computer?

    The highest release of a g4 is 10.5 -- leopard. If you meet the leopard requirements.
    http://support.apple.com/kb/sp517
    You can run the latest Firefox with the PPC version of firefox.  Max out the memory on the machine
    TenFourFox -- It's a port of the latest FireFox to run on older hardware and software.
    "World's most advanced web browser. Finely tuned for the Power PC."
        --  works for me on 10.4.  Supports 10.5
    http://www.floodgap.com/software/tenfourfox/
    alternative download site:
    http://www.macupdate.com/app/mac/37761/tenfourfox
    Turn on pipelining.  This will allow Firefox to make simaltaneous requests to the server.  Chrome has pipeling turned on. Some sites could fail to load with pipeling set on. The site will be old. See "Increase pipelining" in:
    http://www.hongkiat.com/blog/firefox-optimization-tips/
    OmniWeb uses the lastest Safari framework.  The open source WebKit. Other browsers like Safari and iCab use the OS version of WebKit.  The OmniWeb downloaded dmg includes it's own copy of the latest WebKit.
    http://www.omnigroup.com/products/omniweb/
    Safari 4.1.3 for Tiger
    http://support.apple.com/kb/DL1069

  • Looking for app that can connect iPhone / Ipad to generic bluetooth camera

    looking for app that can connect iPhone / Ipad to generic bluetooth camera

    I doubt that you will find one. I have not heard of BT cameras.

  • HT4628 I have Mac Mini that I connect wirelessly. I want to share that internet on this mac mini with my receiver using wired internet. Is it possible? How?

    I have Mac Mini that I connect wirelessly. I want to share that internet on this mac mini with my receiver using wired internet. Is it possible? How?

    Is it the same user/iTunes account or...?
    Syncing to a new computer should give you the opportunity to replace the exisiting contents with the new.

  • How to get the IP of the client when TCP connect in the server

    How to get the IP of the client when TCP connect in the server.
    The only parameter got from the connection is connectionID.
    Solved!
    Go to Solution.

    I guess you're using "TCP Wait on Listener" on the server. This returns the remote address and port (as optional outputs).

  • HT1338 Is iMovie 11 available for all mac's that can run lion?

    Is iMovie 11 available for all mac's that can run lion?

    Yes
    Edit:  If you're asking if it comes with Lion then No.  It has come standard with Macs for years.

  • Can't connect to terminal server via Mac RDC

    Users can't log in  to our terminal server (Server 2008) from Mac using RDC 2.1. After typing in the server name, the client asks the user to login. The user fills in their username, password and domain but receives and error stating "The credentials
    that were used to connect to [server_name} are incorrect".
    Any user, including myself who am a Domain Admin, get this error. When I log in using the domain's Administrator account, however, I can log in just fine.
    None of this occurs when trying to login from a Windows client. The Mac I tested on is running OS X 10.5.8. Any help would be greatly appreciated. Thanks.

    Hi,
    For remote desktop in MAC OS, you can try to update the new Remote Desktop Connection. New Multiple Session Support gives Mac users simultaneous access to multiple
    Windows-based PCs or to a network server that hosts remote applications and files. Since it is a Universal application, Remote Desktop Connection Client 2 is compatible with the latest technologies on Windows and Mac platforms.
    Please refer to the following link:
    Microsoft Remote Desktop Connection Client for Mac 2.1.1
    http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=18140
    Setting 'Allow connections from computers running any version of Remote Desktop (less secure)' in the Terminal server to sees if it’s work well.
    Technology changes life……

  • RF's can't connecting to terminal server.

    Hello,
    I having trouble with my new terminal server. I am using RF's (intermec & motorola) in my business and We have two terminal servers that is running with 2008r2 standard. RF's can connect to first terminal server unproblematic  but can't connect
    to other one and getting error as "Because of a security error, the client could not connect to the remote computer, verify that you are logged on the
    network, and then try connecting again"
    I can connect to all terminal servers with my domain computer via remote desktop connection.
    Own enterprise network has PEAP-WPA2 user authentication
    Rf's are not in the domain.
    I need help from you.
    Thanks.

    Hello everyone,
    We found a solution regarding this case with microsoft team. Solution is in the following.
    Issue Statement:  
    Cannot connect RF scanner to a particular server using RDP.
    Symptoms:
    > The RF scanners are Intermec CK3R devices with windows embedded handheld 6.5 classic installed on them. They fail to connect to
    a particular server using RDP. However, same user and device can successfully connect to another server. The server to which the device fails to connect is TRKKTA01-N.
    > Never been able to connect to the problem server.
    > Both the good and the bad server are Windows 2008 R2.
    > The Devices are connecting using per user licenses.
    > We can connect to the problem server using a Fat client like Windows 7 machine with the same user ID.
    > both the Problem server and the working server are in the same network but on different VLANs.
    > On the Scanner, when trying to RDP user gets the following error:
    "Because of a security error, the client could not connect to the remote computer, verify that you are logged on the network, and
    then try connecting again"
    > Already different encryptions have been tried but the connection still fails.
    Environment:
    RDS server is Windows 2008 R2. Clients are Intermec CK3R devices and OS is Windows embedded handheld 6.5 classic. 
    Scope Agreement:
    We will close the case once we find the cause of the RDP failure and provide a possible fix for it.
    If the problem is found to be due to third-party code we will provide information to substantiate this. 
    Case Status:  Resolved.
     Steps used to resolve the issue were:
    1. Create the following reg key on the license server:
    Use512LenPropCert on the Server
    Subkey: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM
    Registry entry: Use512LenPropCert
    Data type: REG_DWORD
    Value: 1
    2. De-activate the license server
    3. Re-activate the server using the telephone method
    4. Delete the x509 cert keys from the terminal servers
    Best Regards,
    Ufuk BAYGIN

  • HT200160 mac keeps trying to connect to a server that no longer exists

    every so often throughout the day, i'll get a error dialong telling me that my mac can't connect to a server because it no longer exists. This server was my old machine that has since been renamed on the network.
    i don't want it to connect, i also don't want it to ask to connect. how do i find out why it's trying to connect, and how do i end this madness?

    Boot in safe mode as directed here:
    Starting up in Safe Mode
    Log in and see whether you still have the problem. If you don't, it's caused by one of your login items or a system modification that loads at startup or login.
    If the problem isn't resolved that way, other possible causes are references in the iPhoto, iTunes, or iMovie library pointing to the server, and bookmarks in the Preview application
    See iMovie Troubleshooting: Connection Failed, Server Does Not Exist.

  • Can a application that runs on a terminal server be opened through the dock

    Hi everybody,
    I posted this question previously under dock but it was suggested to post it under Server. All threads I found on the first page for "terminal server" are in this area so I hope I am right here.
    I have been spending some time trying to figure out how to run MYOB Premier in multi-user environment once I switch the office over to Mac.
    One solution I found is to use a terminal server as the multi-user performance of MYOB is in general super-bad.
    I need to make everything as simple as possible for my partner so she has to open the application/file by clicking on a dock-icon.
    Is this possible? File and application would be on a Vista server with XPunlimited as terminal server solution. I don't have a clue how terminal server applications are handled by Snow Leopard.
    Cheers,
    Edward

    You should be able to drag the app onto the Dock and it should work, but your best bet is to talk with the tech support people with the company who made your terminal server to see what they recommend.

Maybe you are looking for

  • How to make Sold-to party field changable in va02

    Dear all, I want to change sold to party in Sales order but this field is coming in grey mode. How I can make it to changable. Thanks&regards Manoj Topal

  • How to open Reader in firefox tab when both acrobat and reader are installed.

    I would like to open pdf files in firefox using Adobe Acrobat Reader. I have both Acrobat Pro or whatever its called and Acrobat Reader installed. Presently going to firefox's tools, options, then selecting the file types option I cannot select any p

  • How to report new master data in place of old master data in a report

    Hi Everyone, I have 0vendor master data which contains both old and new vendor numbers. I have transaction data that refers to both new and old vendor numbers. In my report I want to see the new vendor numbers with transaction data and new vendor num

  • Cannot press down on trackpad

    My MacBook Pro trackpad will not depress when I press down on it to click on a button.  I can still tap on the trackpad to select a button, and multi-finger dragging/zooming functions still work so the issue seems to be mechanical rather then electro

  • What is the Future for MAEMO 5 Ahead ?

    Hello Everyone, Greetings from India !! I know for the fact that this forum is mostly for people who have already bought the N900 and who may have some technical queries about their product. But with the N900 just been launched in this part of the wo