How to control my computer remotely

Can I (or how do I) control my home iMac from my iPad?  For example, access all my iPhoto pictures from my home computer while I'm on vacation with my iPad. 

A great application to do so (allbeit expensive from what I hear) is Log Me In.

Similar Messages

  • Controlling a computer remotely

    I am location independent and advertise my services on CL throughout the US and Canada.  I travel a lot and work from a 11' MBA but am not able to use CL when overseas (because of IP or geo-something or another).
    I am wondering if I could set up a Mac Mini at home in the US and connect to it remotely to post my ads when I am out of town.  It seems like a pretty easy solution, but I feel like I might be missing something.  I am pretty much a novice when it comes to these things. 
    Any thoughts on the viability of this solution?
    Lastly, I am traveling to China, India and London in a few weeks.  While I am not too worried about India and London, does anyone know if accessing a remote desktop is an option from within China?
    Sorry if this is the wrong forum for this question!
    Thanks for any help.  I really appreciate it.

    I am having trouble with passing a socket to a timer task. The #### comments show what I want to do.
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package clienttcp;
    import java.net.*;
    import java.io.*;
    import java.lang.String.*;
    import java.util.Timer;
    import java.util.TimerTask;
    public class clientTCP {
    public static void main(String[] args) throws IOException {
    String host = "localhost";
    int port = 4444;
    Socket OrderSocket = null;
    PrintWriter fromClient = null;
    BufferedReader toClient = null;
    try {
    OrderSocket = new Socket(host, port);
    fromClient = new PrintWriter(OrderSocket.getOutputStream(), true);
    toClient = new BufferedReader(new InputStreamReader(OrderSocket.getInputStream()));
    } catch (UnknownHostException e) {
    System.err.printf("Don't know about host: %s.\n", host);
    System.exit(1);
    } catch (IOException e) {
    System.err.printf("Couldn't get I/O for the connection to: %s.\n", host);
    System.exit(1);
    BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in));
    String fromServer;
    fromClient.println("First hi");
    //###### I want a timer to do this every 10 seconds ##########################
    // fromClient.println("hi");
    while (true) {
    // first process the reply then drop down to body
    if ((fromServer = toClient.readLine()) != null) {
    System.out.println("GrocServer: " + fromServer);
    if (fromServer.equals("Bye.")) {
    break;
    fromClient.close();
    toClient.close();
    stdIn.close();
    OrderSocket.close();
    }

  • I am a newer about LabVIEW.How can I realize a remote control in a Web brower.

    "To transform your application into a remote laboratory, make sure the VI that you want to publish is loaded into LabVIEW memory. Next, select the Web Publishing Tool option from the Tools menu. This window is the main window for interactively creating and publishing your remote laboratory
    The Web publishing tool will automatically load in the Document Title and VI Name text fields. As the sample image in Figure 6 illustrates, the Document Title, Text 1, and Text 2 are all text fields that you can use to customize the Web page created with the publishing tool.
    The second step necessary to enable a remote laboratory is to select the Start Web Server button. When pressed, this button activates the built-in LabVIEW Web server, which will publish and control your front panel images from the Internet.
    Once the Web server is activated, the actual HTML document needs to be created and saved so it can be accessed remotely. Clicking on Save to Disk places an HTML file called Document Title.htm into the LabVIEW file folder called WWW by default. Saving your Remote Panels HTML documents into this folder will ensure that the LabVIEW Web server can find them. Either keep the default name, or assign a new name and save the file. Once saved, a new panel entitled Document URL pops up with a message box containing the URL address of your enabled LabVIEW application.
    Click on OK in the Document URL window and then click on Done in the Web Publishing Tool window. Your lab is now ready for remote visitors
    Required Software
    To operate a LabVIEW program using remote panels, it is necessary to have the free LabVIEW run-time engine installed on the client computer. When a remote viewer logs onto the lab with the appropriate URL address, the LabVIEW front panel will appear in the browser, or reroute the user to install the run-time engine from the National Instruments Web site.
    Application Control
    Once connected to the remote laboratory, the client connection will automatically be in a monitor state. If another client is controlling the remote laboratory, the user will be able to monitor the actions of the controlling client. To request control of the program, right click on the front panel and select Request Control. Once selected, one of two possible messages will appear. Either the user will be granted control (Control Granted), or the user will see a message indicating that control is currently granted to another user (Waiting for control: Either the server is locked or another client has control). If another client has control, the controlling client will be notified that control time has now become limited. Once the timeout occurs or the controlling client has released control, application control is automatically switched to the requesting client (Control Granted). Once the user has been granted control, all icons and controls will become active and running the LabVIEW application is exactly like running the application from the local environment.
    Releasing Control
    When the remote viewer either moves on to a different URL address or relinquishes control by right clicking and selecting (Release Control), or when the remote laboratory times out, the remote laboratory is available to the next visitor."
    The above is what I read from a text of ni.com,
    but I can not obtain the result.
    Thanks a lot!
    ^^

    Hi
    I don't see which LV version you are using. It's important to know, that you need the FDS or PDS package of LV 6.1 to work with remote control. This feature is not supported in the LV base package of LV 6.1.
    If you have LV 6.1 FDS or PDS, which of the described steps are not working?
    Luca P.
    Regards,
    Luca

  • HT4352 How can I get Home Sharing turned on my Apple TV if I have lost my remote control and my remote apps on my ipad and iphone can not get access to my apple tv, only my itunes.

    How can I get Home Sharing turned on my Apple TV if I have lost my remote control and my remote apps on my ipad and iphone can not get access to my apple tv, only my itunes.

    You can't, you will need to get a new remote.

  • How can I find if someone is using my computer remote

    how can I find if someone is using my computer remote

    Do you mean "using your computer remotely," as in accessing it from another location?  That's extremely unlikely, as it's no trivial task to set up sharing over the internet, and would require physical access to your computer to get that done.  What symptoms are you seeing that lead you to believe this is happening?
    Alternately, if you mean literally "using your computer remote," if someone is fiddling with an Apple Remote in the same room, you would probably see iTunes opening, music starting to play, volume changing, etc.  My 2-year-old got hold of my remote once and caused me no end of frustration trying to figure out what the *%&*#(& was going on! 

  • How can i turn off the computer remotely using java?

    is it possible to use a java code for turning off the computer remotely by other computer in LAN?
    or if it is not possible how can i achieved that goal?
    thanx

    bd0 wrote:
    Well, if you're running linux you could use Runtime.getRuntime().exec() to execute 'halt -p', if the process was being run as root. Not terribly elegant but I suppose it would work. Although I wouldn't want an unattended process running as root.Yes, this is how you can do it, but on Windows machines as well. I'll go into pseudocode:
    App1: Server (running on every lab machine)
    open server socket on port X
    wait for connection
    verify connection is yourself so that not everyone can shut it down
    if not, wait for connection again
    if it is, run halt for linux or shutdown for windowsApp2: Client (running on just your computer)
    open a socket to each machine running the server app (or you could use multicasting)
    validate yourself however you did that
    close socketThere are some implications of this though - unless your validation mechanism is decent, pretty much anyone can shut down anything they want. Also, if you don't check for a logged-in user, you may destroy someone's work. Just keep those in mind.
    Also, if it is a Windows setting, there are usually better ways to do this - a well-managed windows network has built-in functionality to shut down computers remotely.
    Edited by: sprizor on Jun 22, 2008 10:59 AM

  • How to control Isight from a remote location?

    Please help!
    I need to control the Isight camera conected to a mini mac using a G5 from a diferent location.
    I can control my mini mac thru Apple remote desktop fine, but I have no Idea how to control the camera intalled on the mini mac.
    I want to use the camara Isight on the mini mac to monitoring the place.
    Mini Mac   Mac OS X (10.4.7)   G 5

    Hi Robson54!
    Welcome to Apple Discussions!
    Check out EvoCam: http://www.evological.com/
    It may be what you are looking for!
    Let us know how it works out!

  • How to send PublicKey to remote computer ?

    How to send PublicKey to remote computer ?
    And how to get PublicKey from remote computer?
    Will PublicKey generated by Microsoft RSA Base Cryptographic Provider work in jdk 1.3.1?
    Thanks for your attention!

    Certificate is like a container which holders the information of user and his public key.
    Put it into a certificate and sent it.

  • How do you control an iphone5 remotely?

    I'm only asking because I was sitting and all of a sudden my folders were being selected and my apps opened then closed.. then my mail accounts accessed.  At one point, the person or thing typed some words, so I just powered it off.  It was quite creepy and weird.
    I'm not talking about someone bypassing the password, but was actually controlling my iphone remotely.
    Any thoughts?

    Is your iPhone hacked or jailbroken?

  • How to make iPad a remote?

    how to make iPad a remote for Apple TV?

    Download the Apple Remote app which will control Apple TV and the iTunes library on your computer.
    https://itunes.apple.com/us/app/remote/id284417350?mt=8

  • How to make my computer send all the audio through optical audio cable instead of headphone jack?

    Howdy,
    To listen to online radios or CD's played from my computer, I used to connect the computer to my home entertainment system from the computer's headphone jack to the AUX port on my home entertainment system.
    I now wanted to get better sound and purchased the optical audio cable. However, I don't know how to tell my computer to send the audio signal to the home entertainmeny system through the optical digital cable rather than through the headphone jack. If I just unplug the cable connecting the headphone jack and the AUX port and only have the PC and the system connected with the optical audio cable, I don't hear any sounds. I suspect the computer isn't sending any data through the optical audio port. I'm not able to find how I can adjust the settings on my computer so that from now all sounds are output through the optical audio.
    1) I'd like to do that mainly for my HP desktop (configuration below) and any advice on how to do that would be appreciated.
    2) I also have a HP laptop (configuration below) and was wondering if that would be doable too (even though it doesn't appear to have a audio out, but it has HDMI out - can one convert it to optical audio?
    Thanks in advance!
    My desktop is: 
    ENVY h8xt,
    • Windows 8 64
    • 3rd Generation Intel(R) Core(TM) i7-3770 quad-core processor [3.4GHz, 8MB Shared Cache]
    • 12GB DDR3-1333MHz SDRAM [3 DIMMs]
    • 1TB 7200 rpm SATA hard drive
    • No secondary hard drive
    • 1GB AMD Radeon HD 7570 [DVI, HDMI, DP, VGA adapter]
    • 300W Power supply
    • SuperMulti DVD Burner
    • Wireless-N LAN card (1x1)
    • 15-in-1 memory card reader, 2 USB 2.0 (front), 2 USB 3.0 (top)
    • No Additional Office Software
    • No additional Security Software
    • No TV Tuner
    • Beats Audio (tm) -- integrated studio quality sound
    • HP USB volume control keyboard and mouse with Win 8 keyboard
    • Adobe Premiere Elements & Photoshop Elements 10
    And the laptop:
    HP ENVY 15t Quad    
    • Windows 8.1 64
    • 4th generation Intel(R) Core(TM) i7-4700MQ Processor
    • NVIDIA(R) GeForce(R) GT 740M Graphics with 2048MB of dedicated video memory
    • 15.6-inch diagonal Full HD BrightView LED-backlit Display (1920x1080)
    • 8GB DDR3 System Memory (1 Dimm)
    • 1TB 5400 rpm Hard Drive
    • 24GB flash Hard Drive Acceleration Cache
    • No Additional Office Software
    • Security Software Trial
    • 6-Cell Lithium-Ion Battery
    • No Internal DVD or CD Drive
    • Standard Keyboard
    • HP TrueVision HD Webcam w/ integrated digital mic
    • 802.11 AC WLAN and Bluetooth(R) [2x2]
    This question was solved.
    View Solution.

    Hello @_goma,
    Welcome to the HP Forums, I hope you enjoy your experience! 
    I have read your post on how you are looking to make your computer send all the audio through an optical audio cable instead of the headphone jack, and I would be happy to assist you in this matter!
    To configure your desktop to enable the optical audio cable, I recommend following the steps below:
    Step 1. Click the Windows Key Button on your desktop
    Step 2. Type "Control Panel"
    Step 3. Select "Control Panel" in the top right-hand corner
    Step 4. Select Sound
    Step 5. Under the Playback tab, right-click the white area below the devices available
    Step 6. Select "Show Disabled" and "Show Disconnected Devices"
    Step 7. Connect your Optical Audio Cable
    Step 8. Select your Optical Audio Cable as the default device and click "Enable"
    Since it is not possible to convert the HDMI out to audio out on your notebook computer, it is unfortunate that the notebook is not able to connect with an optical audio cord.
    Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • I have 3dparty software wirelessly with a cryptographic authentication system without my consent (seems to be new technology developed by stanford) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail break. Now what?

    I have 3rd party software wirelessly injected and used on my iphone with a cryptographic authentication system without my consent (seems to be new technology developed by stanford and apple security is not updated for this technology) obtaining ownership of my iPhone 4s software and controlling it with remote device to jail breaking my phone, adding and removing software, changing settings all from a remotely controled device from different location (I have a Mac address I'd of this device to know for sure). Almost undetectable. When I look at the legal section of my phone it shows a list of all the unauthorized 3rd party software "as is" copyright encrypted on the phone.  This is the most basic way to legally steal software of any kind.  Because of this legalality 3rd party ownership have total control of certain software correlated with hardware use including visualization technology, etc.  most people luckily will never have this happen to them so it's unlikely many readers have not a clue of what I'm saying currently.  Either way, without needing to obtain specific warranty of any kind "as is" copyright control makes system restores not a solution because the source code is not directly encrypted on the actual hardware device only a copy right notice must appear on the specific device 3rd party software validation making it extremely difficult for me to take control of the situation. Apple claims their iOS technology prevents this type copyright obstruction from being possible, however, according to my phone a new form of technology was used developed by Tom wu of Stanford university called the STANFORD SRP AUTHENTICATION TECHNOLOGY which uses Some form of cryptographic authentication system and uses quote "secure remote password" which seems to suceed in hacking iOS apple technology apple claims is not possible to jailbreak an unstolen phone or without the owners consent As well as loading the device with 3rd party copyright Notices to make all of this legalized. My phone shows atleast 30 pages worth of legalized 3rd party copyright permissions! Yesterday my apple care provider labeled me a jailbreaker and refused to look at my legal documented proof which completely blew my mind because it voides my apple care contract I spent 100 on. This employee did not take all factors into consideration and made quick assumptions as well as verbally speaking to me as I'm an automatic criminal. I left the store yesterday with no payed insurance help on a problem I had no control over and couldn't prevent, leaving with voided contracts. This is an apple users worst nightmare and I have spent days researching all of this like i am some kind of lawyer only to be able to use my phone the way it should and spent alot of money on.  I can legally backup any claim I have just wrote above currently and have a large source of data collected to prove apple is wrong in voiding insurance support on this issue. The problem lies in apple avoiding and not wanting to believe their software can legally be obtained ot "hacked". Yet still labeled a jailbreaker basically.. What should I do????? Been to local apple store 3 times and rebooted my phone as well sprint service restore 4 times and spoke with reps twiice on the phone. Spoke with my phone provider who said apple has full control over these matters so they can't help me.  My case is according to apple "still open"...Anyone else heard of this or of Stanford's office of technology licensing? Maybe I need to buy a blackberry again or just use a landline so I can stop being my own lawyer and focus on other productive areas in life instead of this horrible mess. I shouldn't have to prove to apple I not a jailbreaker they should have to prove I'm one before voiding support I desperately need!!

    Mullaly75 wrote:
    I assume u guys don't understand what open source software is
    Yes, I think most of us do understand what open source software is. It sounds as if you don't. Here's some information:
    Open-source software (OSS) is computer software that is available in source code form: the source code and certain other rights normally reserved forcopyright holders are provided under an open-source license that permits users to study, change, improve and at times also to distribute the software.
    Open source software is very often developed in a public, collaborative manner. Open-source software is the most prominent example of open-sourcedevelopment and often compared to (technically defined) user-generated content or (legally defined) open content movements.
    from http://en.wikipedia.org/wiki/Open_source_software
    Yes, Tom Wu of Stanford wrote a paper on something called Secure Remote Access Protocol. It's a form of Asymetric Key Exchange and has nothing to do with hacking anything. It's actually intended to protect data.

  • Does Firefox have some kind of firewall??? Recently I can't print or connect to my work computer remotely. Two things I was always to do in the past.

    Recently I can't connect to my work computer remotely and I can't print things even when I am using my desktop which is directly connected to the printer. If I go to Internet Explorer or AOL I have no problems but since I mainly use Firefox this has become a major problem.

    I encounter similar problem. My TC detects my OKI printer which is connected to the TC via USB but I can't print unless I connect my printer to the TC via Ethernet. Would anyone know how to solve it. Thanks.

  • How can I use apple remote with Mountain Lion? Any Front Row alternative?

    Hi All,
    I recently upgraded from Snow Leopard to Mountain Lion.
    All great except for my Apple Remote control.
    Before, I could effectively control my iMac media with Apple Remote by using Front Row (music, photos, videos, good integration with iTunes and iPhoto).
    Now, as I understand, Front Row is expired.
    So, my Apple remote still works but with very limited options (just music, forward, backward and volume), and it's a real pity.
    Any of you Guys know how to restore Front Row?
    Otherwise maybe suggest an alternative (sth similar, should allow iMac media control by Apple Remote)?
    So far I tried to restore all Front Row files by a Time Capsule Snow Leopard backup (as indicatred on some other Communities).
    To restore was easy, but then, no way to launch it.
    Any advice will help!
    Thanks in advance/all the best.
    Marco

    Thanks Klaus1 for your prompt answer, although I went again through a dated discussion.
    I also got the feeling that somehow they want to push Apple TV..
    But, respectfully speaking towards our Friends at Apple, is it fair to promise what you don't deliver?
    I have choosen apple because I percive it's different.
    At currently published link: http://store.apple.com/uk/product/MC377Z/A/apple-remote
    they do promote the following:
    Apple Remote with Mac
    The Apple Remote gives you total command of your music, photos, videos and DVDs from anywhere in the room. It works with Front Row - a menu-based, full-screen interface - to make accessing the digital content on your Mac as simple as navigating your iPod. When you press the Menu button, your desktop fades and the sleek, Front Row interface takes its place, to give you control over your music in iTunes, your photos in iPhoto, the videos in your Videos folder and your DVDs. Turn up the volume. Shuffle. Skip to the next chapter on your DVD. Play a slide show, a home video that you made in iMovie, even a film trailer.
    Compatible with Apple products introduced in 2005 or later that have a built-in infrared (IR) receiver. Not compatible with MacBook Pro with Retina display.
    Cost for this is 15£ (19€).
    Now, I have iMac and Mac Book Pro (no retina display) both with Mountain Lion installed, and I understand both of them are not compatible with Front Row.
    Actually I adore apple tv and I got 2 at home nicely working on 2 different TVs.
    So I accomplished twice their wish of selling this product to me.
    Why shall they deceive me (and many others, as I read) by killing a still promised service?
    Should I read all forums before buying a trusted-brand-product like apple, to ensure that id does what declared?
    Don't get me wrong, I'm an enthusiast user of the whole apple family, since many years, and still I am.
    Just politely complaining for this decision, which creates to Many an easy avoidable disservice.
    Cheers
    Marco

  • How do I disable the remote on my MacBook Pro

    How do I disable the remote on my MacBook Pro, every time I use my remote for my Apple TV iTunes starts playing.

    System Preferences --> Security & Privacy (click on lock in lower left corner and enter security info to make changes --> this will activate the "Advanced" button in the lower right corner --> click on it) --> Advanced --> Check the bottom box: "Disable remote control infrared receiver" --> Joy!

Maybe you are looking for

  • WIPE HANDHELD?

    When I wipe the device goes it go back the settings when I received the device? I have apps that I can;t get off.

  • Acrobat X Pro launch problem

    I'm having the same problem I've seen others write about with CS6 and Acrobat X Pro not launching every now and then. I've tried the solution of deactivating in another CS6 application and reactivating, but it hasn't worked in the past. I'm running W

  • Airport Base Station-Do g devices slow it down?  Parental controls

    I need to purchase a new Wi-Fi router and am looking at several but am looking at the Airport Base Station. Most of my devices such as my Mac's all use N networking but other devices such as my Xbox 360 use g networking. When doing research on the Ai

  • Pages output to projector

    Only keynote application in my iPad allows output to projector / tv when connector however not pages application or numbers. Any specific reasons? or I am I wrong?

  • For sale: Keithley PIO-12 Digital I/O card --- 4.99$

    we ship everywhere http://cgi.ebay.ca/ws/eBayISAPI.dll?ViewItem&item=2538530954&rd=1