Installation of packages via Remote Desktop 3.5.3 fails

  Hi,
I'm using Remote Desktop on one of our Mac Mini's (OS X Server 10.6.8) to install packages on one of our Xserve's
If I try to do it from a Mac Mini with Remote Desktop 3.4 remote installation of packages works fine on Xserve's running either ARD v3.5.1 or v. 3.5.3
However, on one of our Mac Mini's I upgraded ARD to 3.5.3 and remote installation of packages fails.
This is what I see in /var/log/system.log:
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: SendMessageToAgentWithReply: gCmdReplyPtr->cmdResult contained error code -6404
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: SendPacketWithReply error -6404
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: Failed in SendPacketWithReply for kCmdFT2_AdminToSender with packet sub-command kFT2_AdminSendInfo. Error: -6404
Any one having any experience with solving this issue?
Thanks
 

  Hi,
I'm using Remote Desktop on one of our Mac Mini's (OS X Server 10.6.8) to install packages on one of our Xserve's
If I try to do it from a Mac Mini with Remote Desktop 3.4 remote installation of packages works fine on Xserve's running either ARD v3.5.1 or v. 3.5.3
However, on one of our Mac Mini's I upgraded ARD to 3.5.3 and remote installation of packages fails.
This is what I see in /var/log/system.log:
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: SendMessageToAgentWithReply: gCmdReplyPtr->cmdResult contained error code -6404
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: SendPacketWithReply error -6404
Oct 1 10:30:34 ws11893 Remote Desktop[1806]: Failed in SendPacketWithReply for kCmdFT2_AdminToSender with packet sub-command kFT2_AdminSendInfo. Error: -6404
Any one having any experience with solving this issue?
Thanks
 

Similar Messages

  • Problems conencting via Remote Desktop Connection to a server

    hello! i have a problem connecting to one of our servers via Remote Desktop Connection. The story goes like this: the server works fine, i can connect using my credentials with no problems, the firewall is up. But, when i restart the server, after loading
    windows, the server wont respond. I try to ping its IP Address and no respond. The only way so far to fix this bug is to log on localy (without remote) and disable the Windows firewall. Instantly the server starts to respond and i can connect to it via remote
    desktop conenction. If i restart the server, the problem appears again and the solution to it this time is to enable the windows firewall back again. This enable/disable firewall thing doesnt seem right. Does anyone have any idea?
    thank you!

    Hi Dede,
    Your box is up to date with windows updates.
    Witch windows server are you using?
    Maybe review the firewall exceptions.
    Att,
    Nicolas Rojas

  • Why will Firefox will not open when connecting via Remote Desktop?

    I have Firefox v. 6.0 or 7.0 installed on a Win 7 machine. It works fine locally, but when I connect to the machine via Remote Desktop it will not start.

    Make sure that the pref dom.storage.enabled is set to true on the about:config page.
    * http://kb.mozillazine.org/Dom.storage.enabled
    * https://developer.mozilla.org/en/dom/storage (Storage location and clearing the data)
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />

  • How to run windows mobile device center via remote desktop

    I am developing mobile application in Microsoft Visual Studio 2008. I connect to my computer via remote desktop and my operating system is Windows Server 2012 R2. In order to test the application, I use mobile device emulator. I can run device emulator but
    there occurs a problem when I try to cradle the device. I found out that this is because wmdc cannot run via remote desktop. Is there any way to run wmdc via remote desktop? I searched other topics but there is no solution to this.
    Note : WMDC works when I directly use the computer not with remote desktop.

    Hi Omer,
    Please check this thread to see if there is one solution may solve your problem.
    http://stackoverflow.com/questions/3490910/emulator-not-connecting-to-windows-mobile-device-center-after-emulator-soft-rese
    https://social.technet.microsoft.com/Forums/en-US/3d1f1a9a-7ca8-4408-a501-cc67843ffa16/remote-desktop-does-not-connect-to-wmdc?forum=winserverTS
    Best regards,
    SHu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • File icons via Remote Desktop

    While working on an app, I seem to have run into a problem.
    When you get filetype icons via File.icon when using Remote
    Desktop, the icons always come back blank. Below is a test program.
    When I run it on my box natively, it returns the icon as expected.
    When I connect to the box (XP Pro) via Remote Desktop, the icons
    always come back blank. Can someone run my program and check to see
    if it's just my box that's the problem?? Just type in a path to a
    file (e.g. C:\BOOT.INI) and see if it shows the icon both locally
    and remotely. Thanks!
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.core.FlexVersion;
    import mx.core.BitmapAsset;
    public function chooseFile():void {
    var f:File = new File( fileText.text );
    existsText.text = f.exists.toString();
    if( f.icon.bitmaps.length > 0 ) {
    icoImage.load( new BitmapAsset(
    BitmapData(f.icon.bitmaps[0]).clone() ) );
    blankBox.text = allNull( f.icon.bitmaps[0] ).toString();
    airBox.text = FlexVersion.compatibilityVersionString + " " +
    Capabilities.version;
    private function allNull( bmp:BitmapData ):Boolean {
    for( var y:int=0; y<bmp.height; y++ ) {
    for( var x:int=0; x<bmp.width; x++ ) {
    if( bmp.getPixel( x, y ) != 0 ) {
    trace( "nonzero pixel at " + x + "," + y );
    return false;
    return true;
    ]]>
    </mx:Script>
    <mx:Button x="262" y="73" label="Button"
    click="chooseFile()"/>
    <mx:TextInput x="94" y="73" id="fileText"/>
    <mx:TextInput x="167" y="103" id="existsText"/>
    <mx:Text x="94" y="105" text="Exists?"/>
    <mx:Text x="108" y="167" text="Icon"/>
    <mx:Image x="167" y="167" width="70" height="58"
    id="icoImage"/>
    <mx:Label x="102" y="131" text="isBlank?"/>
    <mx:TextInput x="167" y="129" id="blankBox"/>
    <mx:Label x="102" y="235" text="Air Version"/>
    <mx:TextInput x="167" y="233" id="airBox"/>
    </mx:WindowedApplication>

    Hello TonyJK,
    Could you please explain a bit about the sentence ‘the file path for Remote Access’?
    If it is the file path of Bitdefender, to receive  better support, it is recommended to seek help from the related Bitdefender forum.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Time machine is invisible but working via remote desktop - magic

    Hello,
    Time Machine is backing up properly an external firewire-disk of the server and the internal drive. If I run time machine on the server and restore the external volume - or internal volumes - time machine works but stays invisible. The finder window moves and resizes, the screen seems to be frozen - but it´s time machine invisibly running and I cannot see the stars and the space nor the buttons. But I can click them - I can abort time machine and get back to the finder. I also could try to find the place to click to scroll through time and change the windows´ content. I think I could also restore a file successfully but I did not try. But I cannot see time machine. It worked before I updated to 10.5.3 I think. It´s not the screen resolution in Apple Remote Desktop. And I cannot test the Macmini with a screen because it has no screen - it only is accessable via Remote desktop. It seems to me that the remote desktop client on the server does not send screen data of time machine.
    What can I do?
    Thank you.

    Hello,
    I made some more tests. I plugged a Screen adaptor for the TV at the mac mini to have a screen attached. The resolution in remote desktop was PAL and very small but time machine was working and it showed up well.
    The result is that time machine needs a monitor to run properly or is it Remote Desktop that needs a monitor? The macmini is brand new and leopard server is 10.5.4.
    Are there some ideas to solve this issue.
    Thank you.
    Best regards

  • ITunes interface funky after connecting via remote desktop

    I connected to my PC via remote desktop while iTune was opened, and ever since the software interface seems to be corrupted somehow, even after running the repair function in add / remove software and rebooting several times. The background of the software is now pink and the fonts are all messed up.
    Has anyone else ever experienced this and are there any suggestions for fixing it short of completely uninstalling and reinstalling the software?

    Make sure that in your Display Settings colour is set to 32 bit. See this link for details: iTunes - Pink iTunes window under iTunes XP/Vista

  • PE on server via remote desktop?

    Hi there,
    We're currently evaluating Premiere Elements. One of the issues I would like to discuss is the following: although we have a few laptops, we also have a fast xenon dual core, 4GB RAM Dell server, running on win 2003 32 bit.
    Is it possible to install P.E. on this server and work via remote desktop?
    If not, is it possible to do this with Premiere Pro (we can consider upgrading, since we're now only evaluating)
    If not, is it possible to work locally but do all the rendering automatically on our server?
    The main issue thus is: how can working with Premiere be less intensive for our laptops and how can we use the power of our server.
    (everything is on a local LAN 100Mbit, but this could be upgraded to 1Gb)
    Thanks a lot!

    I'm with the other two gentlemen on this one. No flavor of Premiere, Pro, or Elements, works well, if at all, on a network. Encore, the authoring application in PrPro is even worse at this.
    There have been several posts, mostly from the academic community, wishing to do similar. Unfortunately, no one, as I recall, has ever posted back to a thread after speaking with Adobe Technical Support.
    Now, I have worked with Assets stored on either mapped network drives, or on an NAS, but that is really quite different and simple. Because of speed, even on a gigabit NIC, I usually just Copy the Assets over to one of my internal HDD's, or to a FW-800 external. That is not much help in your case.
    I would urge you to post back and share any info that you do get. I hope that I am wrong, and there's an easy way to handle this. I'd also love to see Adobe release an "academic server" version of the program, with maybe satellite modules for the networked users. School is a great place for Adobe to make inroads to compete with the Mac-based FCP. PE would be a great program for students to work on. I can also see issues, if one had to install the full program and set up user accounts at a high level on lab machines - networking would be ideal. [The latter was more a "note" to Adobe, and was not a rant.]
    Good luck,
    Hunt

  • Options for deployment via Remote Desktop Services / Terminal Server

    Currently we have volume licenses for CS which is deployed via remote desktop services in a multi-server load balanced farm.
    When reaching out to support, they informed me that CC cannot be deployed via RDS/terminal services.
    Seeing that CS is discontinued, how does Adobe suggest deployment of their apps via RDS/Terminal services?
    The support rep really didn't have an answer for me.
    I find it hard to believe that Adobe's going to abandon deployment of their apps in the enterprise as things are moving towards thin clients rather than traditional desktops.
    We'd like to avoid needing to go VDI instead of RDS if possible.
    I'd imagine VDI would have the same licensing issues assuming you don't want to have a dedicated VM for each user rather than having a shared pool of VMs.
    Thank You.

    The only link I have is http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deploym ent
    Otherwise, Adobe contact information - http://helpx.adobe.com/contact.html since this forum is about the "regular" Cloud

  • Document improperly printing in Portrait instead of Landscape via Remote Desktop

    When attempting to print a document in Landscape orientation, it always comes out in Portrait.
    Using Remote Desktop Services via Windows Server 2008 R2 with all Windows Updates.
    Local client - Windows 7 Enterprise 64bit with all Windows Updates.
    This does not happen using another printer (Dell) - so I'm leaning towards it being an HP issue.
    Page orientation is set to Landscape in Word (for example)
    When going to print -- it's showing that it's set to landscape.

    So the issue with the 8000 printer is periodic print jobs do not come out as you are wanting them. Is that right? This is interesting, just from the point of view that generally speaking issues like this are like a light switch, they are either there or they are not - they usually don't come and go. That being said, we are going to see what we  can do to resolve this. First I am going to recommend that we perform a clean installation of the printer after uninstalling it from the machine. By the way, what is the operating system you are working with - Is it Windows 2000 Network? 
    First if you use a USB cord, make sure to remove it. Do not plug it back in until the software directs you to. Then go through the Devices and Printers, Programs and Features and Device Manager folders and insure that all copies, files, and programs related to the printer are removed. Then as directed, restart the computer. 
    In the START menu type "%temp%" and press ENTER. Here I want you to press Ctrl+A and hit DELETE. Some of the files will not allow you to delete them, skip those files and delete the majority that allows it. 
    Then follow this link to download the full feature software and drivers for the printer: 
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&lc=en&dlc=en&product=3762364
    Install that and let me know the result! 
    Have a great day!

  • Trouble Printing to Network Printer via Remote Desktop Connection

    Specs:
    Macbook Pro, early 2013,
    Mavericks (10.9.2),
    Microsoft Remote Desktop Connection v.8.0.5 (latest),
    Connecting to Windows Server 2008 standard
    Printer, HP LaserJet P2035n, connected via the network
    When on the Mac connected to the server, the printers from the Mac are redirected so you're supposed to be able to print from Remote Desktop to the HP printer.  However, when you select something to print, the job goes to the print and keeps printing over and over and over again until you cancel the print job, which it usually allows you to do, or turn off the printer, which you have to do when it won't let you cancel the job.
    Any advice on how to get the printer connection running normally?

    What you haven't told us is what method you use to connect/setup the printer on Windows. There are two ways - Bonjour for Windows (free software from Apple), and TCP/IP raw port 9100. If you have a problem using one, try the other.

  • Can't connect via remote desktop

    Hello,
    I'm using a late 2009 iMac running 10.6.8 and an AirPort Extreme 802.11n (4th Generation) running 7.5.2. Before I bought the AEBS, I was able to utilize Microsoft Remote Desktop Connection over a secure VPN network to access my work computer, which runs Windows 7 Professional.
    After getting the AEBS, the VPN network still connects perfectly, but the RDC times out every time. If using an RDC client on my iPhone through the VPN over 3G, it still connects, nothing has changed with my work computer.
    I'm typing in the work computer's IP address in the RDC client, and I have port forwarding for port 3389 set up in AirPort Utility to my iMac's static IP of 10.0.1.8.
    I've read other message boards and have done everything I think I need to do. So what am I missing?
    Thanks very much!

    This is not a solution it is a nasty work around, all of your network traffic including internet access is going to go over your vpn, I don't know about you but just because I have a vpn session and remote desktop running, should not mean that I can't do personal stuff on my local system without it going through my employers servers. How do you get Remote Desktop to route via the VPN connection without turning on "Send all traffic over VPN connection"?

  • Unable to access Standalone VM via Remote Desktop through a VPN

    Good Morning everyone, now here is my problem.
    My company is a small software development house and we test our software on Win 7 or 8 VM's running on standalone (ie not on the domain) VM's. We are running the VM's on WS2012 R2 Hyper V and when we are inside the building we are able to Remote Desktop
    onto these VM's direct without any problem. The problem comes when we want to RD onto the VM's when working from home via the VPN. When we try to connect to the VM's via RD through the VPN the Remote Desktop Connection fails with the following alert "Remote
    Desktop can't find the computer '[Computers Name]'. This might mean that '[Computers Name]' does not belong to the specified network. Verify the computer name and domain that you are trying to connect to." The only way I can connect to the VM's is
    by going onto the host server and access the VM's via Hyper V manager and use it that way.
    Now when I try to connect to a VM that is running on the Domain via the VPN I connect without any problems at all.
    So my question is why can I connect to standalone VM's via RD without any problems when in the office but when I am at home via VPN I can't but I can connect to VM's on the domain without any problems? What do I need to do to make this work?
    Phil

    Hi Darren,
    I have just tested it and when at work I can ping by name a named server and the standalone VM without any problems.
    But when I connect from the outside via the VPN I am still able to ping by name a named server but not the stand alone server. Nor can I ping the IP address of the standalone VM although I can connect to a standalone VM using its IP address via RDC
    Phil

  • Solaris 11 - after installation there is no remote desktop avaliable

    Hi All,
    I have the problem that after installation of Solaris Express on SPARC machine there is no available remote desktop. I am using Xmanager to connect to my server.
    It works fine with Solaris 9 and 10.
    Do you know what is the problem?
    Thanks,
    Daniel

    I was installing Solaris Exrepss using JumpStart server running on Solaris 10. Solaris Express installed successfuly.
    But there was no XServer running.
    So I was enabling some services.
    During the enabling services error message appers:
    Jun 8 18:44:33 sun1 gdm[295]: gdm_slave_xioerror_handler: Fatal X error - Restarting :0
    Jun 8 18:44:39 sun1 gdm[390]: gdm_slave_xioerror_handler: Fatal X error - Restarting :0
    Jun 8 18:44:43 sun1 gdm[541]: gdm_slave_xioerror_handler: Fatal X error - Restarting :0
    Jun 8 18:44:43 sun1 gdm[294]: Failed to start X server several times in a short time period; disabling display :0
    bash-3.00# svcs -a
    STATE STIME FMRI
    legacy_run 18:44:24 lrc:/etc/rcS_d/S29wrsmcfg
    legacy_run 18:44:31 lrc:/etc/rc2_d/S10lu
    legacy_run 18:44:31 lrc:/etc/rc2_d/S20sysetup
    legacy_run 18:44:31 lrc:/etc/rc2_d/S40llc2
    legacy_run 18:44:32 lrc:/etc/rc2_d/S42ncakmod
    legacy_run 18:44:32 lrc:/etc/rc2_d/S47pppd
    legacy_run 18:44:32 lrc:/etc/rc2_d/S70uucp
    legacy_run 18:44:32 lrc:/etc/rc2_d/S72autoinstall
    legacy_run 18:44:32 lrc:/etc/rc2_d/S73cachefs_daemon
    legacy_run 18:44:33 lrc:/etc/rc2_d/S81dodatadm_udaplt
    legacy_run 18:44:33 lrc:/etc/rc2_d/S89PRESERVE
    legacy_run 18:44:33 lrc:/etc/rc2_d/S91afbinit
    legacy_run 18:44:34 lrc:/etc/rc2_d/S91gfbinit
    legacy_run 18:44:34 lrc:/etc/rc2_d/S91ifbinit
    legacy_run 18:44:34 lrc:/etc/rc2_d/S91jfbinit
    legacy_run 18:44:34 lrc:/etc/rc2_d/S91kfbinit
    legacy_run 18:44:35 lrc:/etc/rc2_d/S91zuluinit
    legacy_run 18:44:35 lrc:/etc/rc2_d/S94ncalogd
    legacy_run 18:44:35 lrc:/etc/rc2_d/S98deallocate
    legacy_run 18:44:40 lrc:/etc/rc3_d/S16boot_server
    legacy_run 18:44:40 lrc:/etc/rc3_d/S50apache
    legacy_run 18:44:41 lrc:/etc/rc3_d/S52imq
    legacy_run 18:44:41 lrc:/etc/rc3_d/S80mipagent
    legacy_run 18:44:41 lrc:/etc/rc3_d/S84appserv
    disabled 18:43:48 svc:/platform/sun4u/mpxio-upgrade:default
    disabled 18:43:48 svc:/system/metainit:default
    disabled 18:43:48 svc:/network/iscsi_initiator:default
    disabled 18:43:48 svc:/network/ipfilter:default
    disabled 18:43:48 svc:/network/rpc/keyserv:default
    disabled 18:43:48 svc:/network/rpc/nisplus:default
    disabled 18:43:48 svc:/network/nis/server:default
    disabled 18:43:48 svc:/network/nis/client:default
    disabled 18:43:48 svc:/network/dns/client:default
    disabled 18:43:48 svc:/network/ldap/client:default
    disabled 18:43:48 svc:/network/nfs/status:default
    disabled 18:43:48 svc:/network/nfs/nlockmgr:default
    disabled 18:43:48 svc:/network/nfs/cbd:default
    disabled 18:43:48 svc:/network/nfs/mapid:default
    disabled 18:43:48 svc:/network/inetd-upgrade:default
    disabled 18:43:49 svc:/network/nfs/client:default
    disabled 18:43:49 svc:/application/print/server:default
    disabled 18:43:49 svc:/network/ntp:default
    disabled 18:43:49 svc:/platform/sun4u/sf880drd:default
    disabled 18:43:49 svc:/system/auditd:default
    disabled 18:43:49 svc:/system/mdmonitor:default
    disabled 18:43:49 svc:/system/metasync:default
    disabled 18:43:49 svc:/system/rcap:default
    disabled 18:43:49 svc:/network/rarp:default
    disabled 18:43:49 svc:/network/dhcp-server:default
    disabled 18:43:49 svc:/network/nfs/server:default
    disabled 18:43:49 svc:/network/rpc/bootparams:default
    disabled 18:43:49 svc:/network/samba:default
    disabled 18:43:49 svc:/application/management/seaport:default
    disabled 18:43:49 svc:/application/management/snmpdx:default
    disabled 18:43:49 svc:/application/management/sma:default
    disabled 18:43:49 svc:/application/management/webmin:default
    disabled 18:43:50 svc:/application/print/ipp-listener:default
    disabled 18:43:50 svc:/network/dns/server:default
    disabled 18:43:50 svc:/network/routing/legacy-routing:ipv6
    disabled 18:43:50 svc:/network/routing/ndp:default
    disabled 18:43:50 svc:/network/routing/rdisc:default
    disabled 18:43:50 svc:/network/ipv6-forwarding:default
    disabled 18:43:50 svc:/network/routing/legacy-routing:ipv4
    disabled 18:43:50 svc:/network/routing/ripng:default
    disabled 18:43:50 svc:/network/routing/route:default
    disabled 18:43:50 svc:/network/security/krb5kdc:default
    disabled 18:43:50 svc:/network/ipv4-forwarding:default
    disabled 18:43:50 svc:/network/security/kadmin:default
    disabled 18:43:51 svc:/network/security/krb5_prop:default
    disabled 18:43:51 svc:/network/nis/passwd:default
    disabled 18:43:51 svc:/network/nis/update:default
    disabled 18:43:51 svc:/network/nis/xfr:default
    disabled 18:43:51 svc:/network/http:apache2
    disabled 18:43:51 svc:/network/apocd/udp:default
    disabled 18:43:51 svc:/network/slp:default
    disabled 18:43:51 svc:/platform/sun4u/sckmd:default
    disabled 18:43:51 svc:/platform/sun4u/dscp:default
    disabled 18:43:51 svc:/platform/sun4u/dcs:default
    disabled 18:43:51 svc:/platform/sun4u/oplhpd:default
    disabled 18:43:51 svc:/platform/sun4u/efdaemon:default
    disabled 18:43:51 svc:/platform/sun4v/efdaemon:default
    disabled 18:43:51 svc:/system/consadm:default
    disabled 18:43:51 svc:/system/pools:default
    disabled 18:43:51 svc:/system/pools/dynamic:default
    disabled 18:43:51 svc:/system/iscsitgt:default
    disabled 18:43:51 svc:/system/cvc:default
    disabled 18:43:51 svc:/system/sar:default
    disabled 18:44:38 svc:/network/swat:default
    disabled 18:44:38 svc:/network/nfs/rquota:default
    disabled 18:44:38 svc:/network/tname:default
    disabled 18:44:38 svc:/network/telnet:default
    disabled 18:44:38 svc:/network/uucp:default
    disabled 18:44:38 svc:/network/chargen:dgram
    disabled 18:44:38 svc:/network/chargen:stream
    disabled 18:44:38 svc:/network/daytime:dgram
    disabled 18:44:38 svc:/network/daytime:stream
    disabled 18:44:38 svc:/network/discard:dgram
    disabled 18:44:38 svc:/network/discard:stream
    disabled 18:44:38 svc:/network/echo:dgram
    disabled 18:44:38 svc:/network/echo:stream
    disabled 18:44:38 svc:/network/time:dgram
    disabled 18:44:38 svc:/network/time:stream
    disabled 18:44:38 svc:/network/comsat:default
    disabled 18:44:38 svc:/network/finger:default
    disabled 18:44:38 svc:/network/login:eklogin
    disabled 18:44:39 svc:/network/rexec:default
    disabled 18:44:39 svc:/network/shell:default
    disabled 18:44:39 svc:/network/shell:kshell
    disabled 18:44:39 svc:/network/talk:default
    online 18:43:48 svc:/system/svc/restarter:default
    online 18:43:50 svc:/system/installupdates:default
    online 18:43:50 svc:/network/loopback:default
    online 18:43:51 svc:/milestone/name-services:default
    online 18:43:52 svc:/system/filesystem/root:default
    online 18:43:54 svc:/network/physical:default
    online 18:43:55 svc:/milestone/network:default
    online 18:43:55 svc:/system/boot-archive:default
    online 18:43:55 svc:/system/scheduler:default
    online 18:43:55 svc:/system/identity:node
    online 18:43:55 svc:/system/filesystem/usr:default
    online 18:43:56 svc:/system/keymap:default
    online 18:44:20 svc:/system/device/local:default
    online 18:44:20 svc:/system/filesystem/minimal:default
    online 18:44:20 svc:/system/cryptosvc:default
    online 18:44:20 svc:/system/rmtmpfiles:default
    online 18:44:20 svc:/system/identity:domain
    online 18:44:20 svc:/system/coreadm:default
    online 18:44:20 svc:/system/picl:default
    online 18:44:20 svc:/system/sysevent:default
    online 18:44:20 svc:/system/device/fc-fabric:default
    online 18:44:21 svc:/milestone/devices:default
    online 18:44:21 svc:/system/name-service-cache:default
    online 18:44:23 svc:/network/initial:default
    online 18:44:23 svc:/network/service:default
    online 18:44:23 svc:/system/manifest-import:default
    online 18:44:24 svc:/milestone/single-user:default
    online 18:44:25 svc:/system/power:default
    online 18:44:25 svc:/system/filesystem/local:default
    online 18:44:25 svc:/system/cron:default
    online 18:44:25 svc:/system/sysidtool:net
    online 18:44:26 svc:/system/dbus:default
    online 18:44:26 svc:/network/shares/group:zfs
    online 18:44:27 svc:/network/shares/group:default
    online 18:44:27 svc:/network/rpc/bind:default
    online 18:44:27 svc:/system/sysidtool:system
    online 18:44:27 svc:/milestone/sysconfig:default
    online 18:44:27 svc:/system/sac:default
    online 18:44:27 svc:/system/filesystem/autofs:default
    online 18:44:27 svc:/network/inetd:default
    online 18:44:28 svc:/system/utmp:default
    online 18:44:28 svc:/system/console-login:default
    online 18:44:28 svc:/system/system-log:default
    online 18:44:28 svc:/system/dumpadm:default
    online 18:44:28 svc:/application/management/wbem:default
    online 18:44:28 svc:/system/postrun:default
    online 18:44:29 svc:/network/ssh:default
    online 18:44:29 svc:/application/graphical-login/gdm:default
    online 18:44:29 svc:/application/font/fc-cache:default
    online 18:44:30 svc:/network/smtp:sendmail
    online 18:44:31 svc:/system/fmd:default
    online 18:44:32 svc:/network/routing-setup:default
    online 18:44:35 svc:/milestone/multi-user:default
    online 18:44:36 svc:/system/intrd:default
    online 18:44:36 svc:/application/graphical-login/cde-login:default
    online 18:44:36 svc:/application/cde-printinfo:default
    online 18:44:38 svc:/system/hal:default
    online 18:44:38 svc:/system/filesystem/rmvolmgr:default
    online 18:44:39 svc:/network/rpc/gss:default
    online 18:44:39 svc:/network/rpc/meta:default
    online 18:44:39 svc:/network/rpc/smserver:default
    online 18:44:40 svc:/application/x11/xfs:default
    online 18:44:40 svc:/network/rpc/ocfserv:default
    online 18:44:40 svc:/network/rpc/cde-calendar-manager:default
    online 18:44:40 svc:/network/rpc/cde-ttdbserver:tcp
    online 18:44:40 svc:/network/rpc/mdcomm:default
    online 18:44:40 svc:/network/rpc/metamed:default
    online 18:44:40 svc:/network/rpc/metamh:default
    online 18:44:40 svc:/network/rpc/rex:default
    online 18:44:40 svc:/network/rpc/rstat:default
    online 18:44:40 svc:/network/rpc/rusers:default
    online 18:44:40 svc:/network/rpc/spray:default
    online 18:44:40 svc:/network/rpc/wall:default
    online 18:44:40 svc:/network/cde-spc:default
    online 18:44:40 svc:/network/security/ktkt_warn:default
    online 18:44:40 svc:/network/login:klogin
    online 18:44:40 svc:/network/login:rlogin
    online 18:44:41 svc:/network/ftp:default
    online 18:44:41 svc:/network/rpc-100235_1/rpc_ticotsord:default
    online 18:44:41 svc:/milestone/multi-user-server:default
    online 18:44:41 svc:/system/zones:default
    online 18:44:42 svc:/system/basicreg:default
    online 18:45:03 svc:/system/webconsole:console
    offline 18:44:30 svc:/application/print/rfc1179:default
    Could you please help me to resolve that issue?
    Thanks,
    Daniel

  • Possible to login into Win7 machine via Remote Desktop?

    hey guys, i've been trying to find a solution to be able to write to NTFS drives. i've read that using exFAT is a good way to go. the other thing i wanted to try was to login to a Windows machine that's connected to the NTFS drive and write to it that way. how can i do this?
    thanks

    If you want to write to the NTFS drive via the Windows system, then you want to have Windows share the drive, so that you can use Mac OS X:
    Finder -> Go -> Connect to Server -> smb://windows.machine.address/share_name
    This would mount the shared NTFS file system on your Mac OS X system and allow you to read and write to it.
    If you need to access the Windows Desktop, then use the above mentioned Microsoft RDC software, or download CoRD from MacUpdate.com.  Both good Windows Remote Desktop Clients.

Maybe you are looking for