How can I get remote desktop to my pc?

Hi! I just got my iphone and I want to be able to remotely access our work pc from my phone. Can this be done? In the past I used gotomypc from my lap top, but much rather using my iphone when I'm out on the road.
Any solutions?
Thanks,
Iliana

Welcome to the forums.
For now you won't be able to do this. The SDK will be released in February and it's possible someone may right something at that time -- we'll just have to wait and see.

Similar Messages

  • How can I get my desktop display to go to 1440*900?thanks[solved]

    I am using KDE 4,My problem is I can't set my graphics display to 1440*900
    In my searching
    I've found this on the Ubuntu forum, which seems to be my issue. It doesn't matter what I set up in xorg.conf file, it ignores it.
    It references a file called "kcmrandrrc", which doesn't seem to exist on my system. I am not sure where KDE is getting the 320x200, 320x240, 400x300,...,640x480, 800x600 and 1024x768 graphics modes. It's not from xorg.conf.
    I found this file...
    "krandrrc"
    Which contains the following...
    [Screen_0]
    OutputsUnified=false
    UnifiedRect=0,0,0,0
    UnifiedRotation=1
    [Screen_0_Output_CRT1]
    Active=true
    Rect=0,0,1154,768
    RefreshRate=0
    Rotation=1
    How can I get my desktop display to go to 1440*900
    thanks
    Last edited by icywalk (2010-01-27 10:18:30)

    What I was looking for was something along these lines:
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "NvAGP" "3"
    Option "Overlay" "False"
    Option "ConnectToAcpid" "False"
    SubSection "Display"
    Depth 1
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 4
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 8
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 15
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 16
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 24
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    SubSection "Display"
    Depth 32
    Modes "1280x1024" "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Then you put in the 1400x900 that you wanted in the Modes line.
    If you are to use Xorg -configure successfully, you will need to do it from a console screen.  If you are using like kdm or gdm,  I would suggest that you log out, then go to a console screen (<ctrl><alt><f1>) and then log in to an account.  You will need to su, and then issue the following command to shut down x: telinit 3  that command should shut down X and your login manager.
    After that you can run Xorg -configure and do whatever else you need with it.
    Then, to get back to what you had before, the command telinit 5 should restore you back to your gdm or kdm or whatever.  (Normally <Ctrl><Alt><F7> will get you back to your login manager, if it doesn't try F6 or F8 until you find it.)
    HTH

  • I was running remote desktop on my old mac pro running 10.4.11.  Upgraded to new pro running 10.6.7 Can I get remote desktop to run on new computer?

    I was running remote desktop on my old mac pro running 10.4.11  Just upgraded to new pro running 10.6.7  Can I get my previous remote desktop to
    run on new computer?
    Thanks

    Are you talking Apple's Remote Desktop software, or Microsoft's?

  • How can I get my desktop filterId use PDK?

    Hi, Expert
    getNavigationfilterId() in NavigationFilter Class can get Navigation's filterId.
    I want to get filterId value in desktop that Filtered group.
    How can?
    Regards,
    Honam

    getDesktopFilter
    String getDesktopFilter(IPortalComponentRequest request)
    Returns the value of the Filter ID property for the desktop, associated with the request 
    Parameters:
    request - the portal component request
    Returns:
    the value of the current desktop Filter ID property, or null, if filtering is disabled

  • In Java,how can I get remote oracle server's system time using a XAOracle datasource

    I want to get remote oracle server's system time,for example,I use a TxDataSource:
    DRIVER className:weblogic.jdbc.oci.xa.XADataSource
    URL:jdbc:weblogic:oracle:lanhaibo
    JNDI Name:
    the following is the code which shows the exception that: sqlexception:the JDBC2.0
    method is not implemented,why? what should I do?:
    Properties prop = new Properties();
    prop.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    prop.put(Context.PROVIDER_URL,"t3://"+"localhost"+":" + "7001");
    initCtx = new InitialContext(prop);
    DataSource ds = (DataSource)initCtx.lookup(strDataSource);
    Connection conn = ds.getConnection();
    String sqlQuery = "select to_char(sysdate,'yyyy') YYYY,to_char(sysdate, 'MM')
    MM,to_char(sysdate, '" +
    "dd') DD,to_char(sysdate, 'hh24') HH,to_char(sysdate, 'mi') MI,to_char(sysdate,
    '" +
    "ss') SS from dual"
    preparedStatement pstmt = conn.prepareStatement(sqlQury);
    StringBuffer sb = new StringBuffer();
    ResultSet resultset = pstmt.executeQuery();
    if(rs.next()){
    strYear = rs.getString("yyyy");
    strMonth = rs.getString("MM");
    strDay = rs.getString("DD");
    strHour = rs.getString("HH");
    strMinute = rs.getString("MI");
    strSecond = rs.getString("SS");
    sb.append(strYear);
    sb.append("/");
    sb.append(strMonth);
    sb.append("/");
    sb.append(strDay);
    sb.append(" ");
    sb.append(strHour);
    sb.append(":");
    sb.append(strMinute);
    sb.append(":");
    sb.append(strSecond);

    Joden asked:
    "I want to get a remote oracle server's time by XADataSource,
    use:"select sysdate from dual", but return a null value,and give
    the message"sqlexception the jdbc2.0 method is not implemented",
    why?"
    Let me see your code. A simple executeQuery() should do the trick:
    Statement s = c.createStatement();
    ResultSet r = s.executeQuery("select sysdate from dual");
    while (r.next())
    java.sql.Timestamp t = r.getTimestamp(1);
    Guillaume Grussenmeyer wrote:
    Hi.
    I guess you are using weblogic.jdbc.oci.xa.XADataSource as a
    datasource.
    Weblogic JDriver for Oracle "implementation" is really weak as a lot
    of methods are not implemented.
    This is why you get this message.
    You may find the (very impressive) list of non implemented methods at
    http://e-docs.bea.com/wls/docs70/oracle/API_joci.html#1162621 (sorry
    HTML links don't seem to work here).
    Any call to one of this methods will give you these nasty message and
    exception.
    Try to use the "official" Oracle JDBC driver XA Datasource
    (oracle.jdbc.xa.client.OracleXADataSource) instead of Weblogic JDriver
    for Oracle one's.

  • How can I get my desktop to fit in my screen?, How can I get my desktop to fit in my screen?

    My windows and desktop (everything I see) is too big to fit in the screen.  I have to touch my mouse arrow to one side to see an entire window or to access my desktop.  I can't figure how to make it all back to normal size.  Any suggestions? 

    Turn off Zoom from the Universal Access and Keyboard & Mouse panes of System Preferences.
    (73801)

  • How can I get Remote App to synch up with Apple TV?

    The Remote App used to work and be able to pick up my Apple TV but hasn't been able to detect the TV since the Apple Watch update. What can be done?

    Yes I have and this problem didn't start until I got the Apple Watch update. I have an iPhone 5 if that helps.

  • Como puedo acceder a mi router en la oficina desde mi casa? / How can I get remote acces to my router in the office, from my house?

    Tengo un router WRV210 instalado en mi oficina, y necesito acceder a la configuración de él, desde mi casa, como puedo hacer eso? /
    I have a WRV210 router installed in my office and I need to access its configuration from my house, how I can do that?
    Gracias! / Thanks!

    Again
    For months not believe me look at iCloud in the "find my iphone" and has appeared to me that I sold the Mac but offline.
    I selected "remove the device". I hope that no longer appears.
    I've been looking and say to disable the "find my iPhone / Mac"
    http://www.actualidadipad.com/como-desactivar-el-bloqueo-de-activacion-de-buscar -mi-iphone
    http://www.esferaiphone.com/iphone/que-hay-que-tener-en-cuenta-a-la-hora-de-comp rarvender-un-iphoneipad-de-segunda-mano
    Once deactivated the next step is very important: disable option in iCloud Find My iPhone: Settings / iCloud / Find My iPhone. If you do not do this the buyer can not use the device when you receive it and to be an iOS device "stolen".
    Note: If you did not know step 3 and the new owner already has the device, you can turn off iCloud.com from accessing your data with iCloud and entering the "Search". It is important that the device in question is on and connected to a Wi-Fi network. From there you desplegaréis the list of "My Devices" from the top and seleccionaréis the device to remove. Only lacking click on "Delete my account" should already be all erased or "Delete iPhone / iPad" if ye what not. When ready just have to desvncular device account. Now the new owner and may re-activate your iPhone from iTunes.
    I will contact with the owner, who sold it a while longer and do not understand it comes out and you delete: https://supportprofile.apple.com/
    Or do not use it ... or not known to have activated the "search" with my account.
    Reguards

  • How can I get remote administration  to work?

    I had remote admin working just fine under Snow Leopard, but since upgrading to Lion, I can't access my machine remotely.  I've tried the open source VNC client from a PC, and the Mocha VNC app from my iPad.  I've confirmed that the VNC password is correct, that my network firewall allows VNC, but when I try to connect, the client just churns and eventually times out.  Thanks in advance for any help!

    Greetings Dun1203,
    Welcome to the Apple Support Communities!
    I understand that you would like to install or update Java on your Mac. For information on this process, please use the information provided in the attached link. 
    Java updates available for OS X on August 28, 2013 - Apple Support
    Cheers,
    Joe

  • How can I get my desktop page to open when I close the browser and then re open it?

    when I click the red x to close the browser, when I come back to open the browser later, the last page I was viewing. last session opens, even all other tabs behind it, instead of my google page (my home page)? can this be fixed) I know I can just click the google word in the search bar, but should not have to do this!

    {
    "application": {
    "name": "Firefox",
    "version": "32.0.3",
    "userAgent": "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0",
    "supportURL": "https://support.mozilla.org/1/firefox/32.0.3/WINNT/en-US/"
    "crashes": {
    "submitted": [],
    "pending": 9
    "modifiedPreferences": {
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.frecency_experiment": 3,
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140923175406",
    "browser.startup.homepage_override.mstone": "32.0.3",
    "browser.startup.homepage_override.buildID": "20140923175406",
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "32.0.3",
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "places.history.expiration.transient_current_max_pages": 104858,
    "places.database.lastMaintenance": 1413230897,
    "plugin.disable_full_page_plugin_for_types": "application/pdf",
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1413230897,
    "storage.vacuum.last.index": 0
    "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 1,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "AMD Radeon HD 7670M",
    "adapterVendorID": "0x1002",
    "adapterDeviceID": "0x6840",
    "adapterRAM": "1024",
    "adapterDrivers": "aticfx64 aticfx64 aticfx64 aticfx32 aticfx32 aticfx32 atiumd64 atidxx64 atidxx64 atiumdag atidxx32 atidxx32 atiumdva atiumd6a atitmm64",
    "driverVersion": "13.151.0.0",
    "driverDate": "8-19-2013",
    "adapterDescription2": "",
    "adapterVendorID2": "",
    "adapterDeviceID2": "",
    "adapterRAM2": "",
    "adapterDrivers2": "",
    "driverVersion2": "",
    "driverDate2": "",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.3.9600.17111",
    "webglRenderer": "Google Inc. -- ANGLE (AMD Radeon HD 7670M Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": true,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.6",
    "version": "4.10.6"
    "NSS": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16.5",
    "version": "3.16.5"
    "NSSSSL": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16.5 Basic ECC",
    "version": "3.16.5 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Logitech SetPoint",
    "version": "6.5",
    "isActive": false,
    "id": "{F003DA68-8256-4b37-A6C4-350FA04494DF}"
    "name": "Norton Toolbar",
    "version": "2014.7.8.23",
    "isActive": false,
    "id": "{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}"
    "name": "Skype Click to Call",
    "version": "7.3.16540.9015",
    "isActive": false,
    "id": "{82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}"
    "experiments": []
    }

  • Can you get remote desk top on imac

    can you get remote desktop on imac to access a windows computer

    Built-in Screen Sharing should work with Remote Destop on he PC.
    If you know the IP of the PC, try this...
    In finder, select Go menu>Connect to Servers..., type in vnc://ip.of.another.computer, like...
    vnc://10.0.1.5
    vnc://192.168.1.3
    Or Browse networks & if you find the PC, choose Screen Sharing button.

  • How can I get my iTunes remote to work on my laptop?

    I have a remote for my desktop that controls iTunes on it, however I rarely use it because I recently got a Macbook Pro.  How can I get the remote to control iTunes on my Macbook? 

    The desktop remote will only work with your desktop.  If you purchased a new Macbook Pro, its remote is sold seperately.
    At one time, the remote was included.  Unknown when it all changed. 

  • I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    I am trying to use powerpoint but when I open a document I want to work on it does not open on my desktop. It appears as open on mission control but it disappears offscreen. How can I get it to open where i need it and can work on it?

    It's almost certainly too late.
    The time to create a backup is before a catastrophe.  After a catastrophe, it's too late.

  • I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    I have two excel files I cannot open or delete from my desktop.  One is titled 6ACAD200 and the other file is titled 8D73A700.  How can I get these off of my computer?

    From the names I'd guess they are temporary files. If excel is running, quit and try again. If they still won't move or delete reboot. If they still won't move or delete...kill a chicken at midnight under an oak tree?

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

Maybe you are looking for

  • Mail Messages Sent but not Stored in Sent Box

    As of this morning I have sent probably a dozen or more e-mails but none of them are appearing in my Sent Messages Box. I have tried using both of my computers to send e-mails (which sync via .mac) and I have looked on .mac using my web browser but t

  • Install won't detect USB or wireless!

    I purchased a C4580 All-in-One several years ago but never installed it.  I have now spent 2 hours attempting to do so on two different Macbooks, both running OS 10.6, having downloaded the "newest" install software (from 2009) from the HP site.  On

  • Single Click start Edit in JTree, if component already selected

    Hi all, How would you go about making an editor start after a node has been clicked and was previously selected? It's driving me insane. I've tried focus listeners, selection listeners, and mouse listeners, but I can never get the timing right. If so

  • I want to start programming with jsp...

    my computer will have tomcat on it for the web server. for the SDK, do i need the standard java sdk or do i need the entiprise sdk? i've heard both please help!

  • How to have resuse CS 6 standard key after crash ?

    Hello, I bought CS 6 standard. My mainboard crashed so I replaced it with another brand ones. After rebooting, Windows 8 was still running fine and CS 6 too. However, Adobe installer is telling me I need a new product key !!! I am also using CS 6 on