Screen sharing mobile account (open directory) not working

Can anybody else verify that screen sharing, through Remote Management, does not work when trying to connect to mobile accounts on 10.7 Lion?
Please note, when I say through Remote Management, I mean that under System Prefs->Sharing->Screen Sharing is disabled but Remote Management is enabled. (Remote Management being able to provide it's own screen sharing)
Also I dont mean VNC... please make sure the "VNC viewers may control my screen with password" option is turned off under System Prefs->Sharing->Remote Management->Computer Settings

I can confirm this. Same experience here on a 10.7.2 Mac.
I get a "Please verify you have entered the correct name and password".
Does this work on 10.6? I'm unable to check at the moment.

Similar Messages

  • Open Directory not working for AFP authentication

    Scenario:
    - Running OS X Server (10.9) using FileSharing with AFP to share to multiple users.
    - Currently the users login with local user accounts to gain access.  I'd like to use our Open Directory server to authenticate instead (save me maintaining local users).
    Issue:
    - I added the OD server to Apple > System Prefs > Users > Login Options but when users attempt to login with their OD name/password, it doesn't recognize their credentials.  Their local user accounts work fine and I've added their OD names to the access list for the various directories on the server.
    I'm assuming I need to add the OD server somewhere else on the computer to get OS X to bind to it.  Appreciate any input here.

    Logs?

  • Screen Sharing, audio, and video chat not working with certain people

    My ichat application will suddenly stop working after just a few seconds of starting wither screen sharing, video chat, or audio chat. I get the error message "No data has been received for the last 10 seconds." How do i go about fixing this?

    Hi,
    This message can be caused two ways.
    1) a loss of Internet Connection through a Physical means.
    (turning Off Airport card, Pulling out Ethernet Cable, modem or router failure, loss of service from ISP)
    2) A router or modem Software intervention.
    This most commonly happens in Video chats. The device has a feature called DOS (Denial of Service) which with modern Internet Speeds and Video Streams gets to the threshold where it cuts in. It requires that you turn the feature Off as there is not adjustment in the threshold at which it works.
    A similar feature with a similar result is SPI (Stateful Packet Inspection).
    Having said that, it very unusual to have it effect Audio only chat or Screen Sharing.
    This means the issue could be at the Buddies end.
    NOTES:
    iChat creates Logs of Connection Failures of which there are about 5 types, caused by various issues in the connection Process.
    The 10 Sec Error message covers those things where the connect End but iChat did not receive a "BYE" message (a controlled End to the Chat) or get a failure of another sort.
    Basically you were connected properly (even if you did not hear or see the Buddy) and so other event cut the connection that was not iChat related.
    Can you do Video chats with any of the 6 names in Table 1 ?
    http://www.ralphjohns.co.uk/ContactTesters.html
    Some of those will respond to Audio Only invites.
    (I just tested 4 of them and three play music and one the Audio form the Jonathon Ive Video)
    Do any of those work ?
    That will exclude a Modem or Router Issue with DOS or SPI on the remote end.
    9:29 PM Wednesday; June 9, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
    Message was edited by: Ralph Johns (UK)
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Active Directory and Open Directory not working

    I am experiencing an issue, or several issues that I can't figure out how to resolve.
    I have an Active Directory domain set up (running 2003 server R2) and it is humming along quite nicely.
    A few weeks ago I got a new XServe running 10.5.4. Booted it up, bound it to AD, and then set up and OD Master on it so that I could manage some new Macs that we have.
    The Macs are bound to both directories.
    The issue I have comes in when using Workgroup Manager, and trying to add AD user to OD groups. The groups drawer is open, but the little directory menu at the top of the drawer does not include the entry for Active Directory. I see Local, Search Policy, and /LDAPv3/127.0.0.1...
    If I try to pull down the directory menu above the user list, I see the following: Loca, Search Policy, Other..., /Active Directory/All Domains, and /LDAPv3/127.0.0.1.
    If I select /Active Directory/All Domains from that list I get the following error.
    +Unable to open the requested node.+
    +The node /Active Directory/All Domains couldn’t be opened because an unexpected error of type -14002 occurred.+
    I think these issues are related, but I can find no help on the first item (AD not showing up in the groups menu)
    and a search for the second item only reveals the following page form Apple, which means absolutely nothing to me.
    http://developer.apple.com/documentation/Networking/Reference/OpenDirectoryRef/Reference/reference.html
    The killer is that this all worked at one point. I had an Apple Tech out here and he helped me set up this 'Golden Triangle" method of authenticating against both directories. And it works... sort of... I can create groups in OD and add OD machine accounts to the group to enforce some settings. But I can't bring in AD users, cause I can't see the AD user list.
    I hear that this is supposed to work... I can't figure it out.
    Any help would be appreciated.
    Thanks for your time.
    Bill

    Hi
    Can you access Active Directory from the command line using dscl?
    In what order are the LDAP directories listed in Directory Utility on the Server?
    Is Kerberos running on the OD Master?
    If you issue klist from the command line on the server itself - what is the result?
    Or don't bother with any of the above and start again. You've nothing to lose anyway apart from some managed preferences which you can redo in little time. Scrub the configuration in the AD plug-in and demote to Standalone. Restart and go for an AD rebind. Make sure the edu.mit.Kerberos file is created in /Library/Preferences. Launch WGM and you should see AD Users and Groups this time, If you do go for promotion again. What you want to see in the OD Overview pane is everything running apart from Kerberos and the search base reflecting the FQDN of the OD Master. Make sure there is the loopback entry (127.0.0.1) in the LDAPv3 plug in. Finally make sure the OD Master lists itself first in the Directory Search Order.
    I'm assuming the Server is configured as Advanced and is updated to 10.5.4.
    Tony

  • File.openWithDefaultApplication()  to open directory not working from release build

    Hi,
    I'm trying to use the File.openWithDefaultApplication() method to open a directory location.  I'm running on Windows 7 Professional 64-bit, but have also tested on Windows XP Professional 32-bit with the same result.
    The method works fine if I run the app from Flash Builder 4 (either run or debug), but when I try it from a release build it doesn't work.  I've exported the release build as a native installer, and I updated the <supportedProfiles> tag in the app's XML to only support "extendedDesktop".  That hasn't changed the behavior, however.
    Here's an example of how I'm calling the method:
            var thedir:File = File.applicationStorageDirectory;
            thedir = thedir.resolvePath("the_directory");
            if (!thedir.exists)
              thedir.createDirectory();
            thedir.openWithDefaultApplication();
    Any idea what's going on?
    As an aside, if I try to open individual files in the release build, it works fine.  So far only opening a directory is a problem.  And, I verified the directory exists before trying to open it.
    Thanks for any insight you can offer...
    Best,
    Chris

    Hi Chris,
    Instead of using openWithDefaultApplication(), try using native process and calling "explorer" on windows, and "open" on mac, then pass the folder path as an argument.  Something like this windows example:
    private function openWindowsFolder():void
         var explorer:File = new File("C:\\Windows\\explorer.exe");
         if (explorer.exists)
              var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
              nativeProcessStartupInfo.executable = explorer;
              var args:Vector.<String> = new Vector.<String>();
              args.push("C:\\Windows");
              nativeProcessStartupInfo.arguments = args;
              process = new NativeProcess();
              process.start(nativeProcessStartupInfo);
    Hope this helps,
    Chris

  • HT1677 In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • HT4865 Have tried to verify my icloud account, but its not working the Verifying screen is just scrolling round, but not doing anything

    Have tried to verify my icloud account, but its not working, the Verifying screen has been scrolling for ages now, it seems stuck, but it wont let me do anything, please help

    " I ordered the Snow Leopard software and tried installing it, but it stopped and said to clean the disk."
    First off, your installation disc is in all likelihood faulty.
    This has been a known issue in the past:
    Faulty Snow Leopard install discs - Apple has no timeline on ...
    http://store.apple.com/us/help/returns_refund#policy:
    *You can return software, provided that it has not been installed on any computer. Software that contains a printed software license may not be returned if the seal or sticker on the software media packaging is broken.

  • Why do I need to start up Screen Sharing twice to get it to work ?

    I have an Intel Mac Mini connected to my TV, so I started using Screen Sharing from my MacBook Pro to be able to work on it when others were watching TV.
    Both Macs used to have OSX 10.5 Leopard, and everything worked fine.
    Now they both have OSX 10.6 Snow Leopard, and whenever I startup Screen Sharing, the connection-windows asking for my Name & Password comes up properly, but then it hangs... it stays in "Connecting..." for ever (litteraly).
    I'm not able to quit or force-quit the connection-window by then, so it stays in view...
    (Screen Sharing isn't even listed in the force-quit list as a running app)
    but...
    when I just try Screen Sharing again, I get connection immediately and it seems to work flawlessly...
    ...it's just that the connection-window is impossible to quit...
    it stays in view an is really annoying...
    this looks really crappy...
    can anyone tell me why I do need to startup Screen Sharing twice to get it to work ?
    Is this a bug ?
    (If so : please apple fix this a.s.a.p.)
    ...or am I doing something wrong ?
    (if so : what am I doing wrong ? and how can I get rid of this annoying screen ?)
    Thank you for your kind reply.
    Toon.B

    it's October and this really annoying problem still exists !
    the unnamed screensharing-loginwindow keeps "Connecting...", and I'm unable to shut it down...
    ...even after my screen sharing session is over
    ...even force-quitting is impossible (this 'app' just isn't showing up in the force-quit-window...)
    please Apple - fix this ; under 10.5 it was working great !
    Does anyone have any idea how to fix this ?
    (besides restarting my Mac)
    Thanks !
    Toon.B

  • IPhone 4s screen is completely black and does not work at all; has not been dropped. Any help?

    I opened up youTube using a shortcut from the Cocoppa app last night, and the screen froze, my home button would not work, so I locked it. The phone was charging at the time and nowhere near dead. After I did so, I pressed the lock and the home button [ not at the same time ] and the screen would not light up at all, it remained completely black. So, I unplugged it and plugged it back into the charger and it made the little sound it does when you do so, that told me it was not dead, and had not turned off. I held the lock button down to turn it off and swiped where the "slide to shut down" bar would normally be if my screen actually worked. It did nothing. My phone screen does not work at all now, even though it makes sounds such as Siri's little pinging noise when you hold down the home button. I am thoroughly confused and urgently need help to solve this problem.

    Hello there, stevo3stevenz.
    The following Knowledge Base article provides some great steps for troubleshooting your iPhone not powering on:
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Hi all, i need urgently your help please. My touch screen on muy Iphone 5  is not working, i dont understand as it has not been damaged at all, i dont know what happened and need urgently somebody helps me please

    Please anyone there can help me what I can do??!! touch screen of my Iphone 5 is not working at all and dont understand as it has not been damage and it is only 2 months and half!! it is not an old iphone and it has not been damaged, has happened right now and cannot turn off the mobile at all. Tried to take out the nano sim as i though it will be turned off but it has not been! i dont know what i can do and i am desesperate!!! thanks All for your help!!

    Removing the SIM has no affect on the power of the phone. It is just the part that facilitates connecting to your carrier. Try holding the sleep/wake and home buttons together until you see the Apple logo on the screen and then release the buttons. The phone should reboot. You may need to hold the buttons together for 15-30 seconds.

  • My Ipad Screen got struck and Ipad is not working .On using updated IOS 7

    My Ipad Screen got struck and Ipad is not working and not allowing to shutdown also.
    Only SIRI is working. and that also not able to open any app. Today Morning I updated IOS 7. It was working fine for a while. WHen I tried to Minimize one of the app using fingers by multi touch  it got struct. Now neither app closed completely not screen is moving. Just got struck.
    Please check regarding this issue and provide me solution

    Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • My home sharing and remote app does not work. How do I fix it? I am on a university network.

    My home sharing and remote app does not work.
    Here is my setup:
    Macbook 2009 running Mac OS X 10.6.8
    Itunes 10.6.1
    Ipod Touch 4th gen Mac OS X 5.1
    I am on a university secured network.

    Hi Charles, chinese may be difficult, see our resident language ecxpert, Tom's reply here...
    https://discussions.apple.com/message/20061347#20061347
    On the slowness...
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free Disk space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab of Activity Monitor, are there a lot of Pageouts?
    https://discussions.apple.com/servlet/JiveServlet/showImage/2-18666790-125104/AM Pageouts.jpg

  • My G4 powerbook starts up but with a black screen. The reset button does not work. Does anyone know the keys to press on restart please ?

    My G4 powerbook running OSX 10.3.9 starts up with  a black screen. The reset button is not working. Does anyone know which keys to press on restart please.?

    Try holding the shift key while booting to get Safe mode if possible.
    See links for more info.
    http://support.apple.com/kb/ht1564
    http://support.apple.com/kb/ht1455

  • In my mobile 2g internet is not working properly

    in my mobile 2g internet is not working properly

    Hi seenupooni,
    If your mobile Internet was working before but isn't now, see if the steps in this article help.
    iPhone: Troubleshooting a cellular data connection
    http://support.apple.com/kb/ts3780
    As it states, test as you go through the steps.
    Thank you for using Apple Support Communities.
    Nubz

  • The touch screen on my ipod touch is not working. meaning that i can not unlock my ipod or even turn it off. is there anything i could to to get the screen to work again?

    the touch screen on my ipod touch is not working. meaning that i can not unlock my ipod or even turn it off. is there anything i could to to get the screen to work again?

    Try # 2 and 3 in link below. If neither work, your screen digitizer might need to be replaced.
    Basic troubleshooting steps  
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G HD + OCZ Vertex 3 SSD Boot HD 
    Got problems with your Apple iDevice-like iPhone, iPad or iPod touch? Try Troubleshooting 101

Maybe you are looking for