Remote acess

can i use logmein.com service with the ipad to remote acess my server and computers at my office

Yes, if you buy the LogMeIn Ignition app.

Similar Messages

  • Good day! whow can I make a Remote Acess by iPad  to another server. On windows we have an option called Remote Acesse but on apple Software I don´ t know whow to do it?

    Good day! Whow can I make a Remote Acess by iPad  to another server.
    Best regards.
    Durval Faria

    What kind of server are you connecting to?
    There are many Remote Desktop apps for the iPad. These will let you connect to a Windows server or desktop. There are also an app or two for connecting to a Mac but I have never used them so I'm not sure how they work.
    You can also try LogMeIn. It works on just about anything. However, the LogMeIn app for the iPad costs $30.

  • App Server 8.1  remote acess

    Hi,
    I am trying to connect to a Sun App Server from the JMS client application: SimpleProducer from chapter 33 of http://java.sun.com/j2ee/1.4/docs/tutorial/doc/index.html
    It works fine when run on the same machine where the server is running. But when I try it from a remote machine, I get an infinite chain of error messages beginning with:
    Destination name is jms/Queue
    May 15, 2003 6:42:02 PM com.sun.corba.ee.spi.logging.LogWrapperBase doLog
    INFO: "IOP00710299: (INTERNAL) Successfully created IIOP listener on
    the specified host/port: all interfaces/34705"
    May 15, 2003 6:42:03 PM
    com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType:
    IIOP_CLEAR_TEXT; hostname: 127.0.0.1; port: 3700"
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2257)
    When the server is local I run this command from the simple/build directory:
    #java SimpleProducer jms/Queue
    and it works successfully.
    From a remote machine I run the below command from the simple/build
    directory:
    #java -Dorg.omg.CORBA.ORBInitialHost=myservername SimpleProducer
    jms/Queue
    Sounds that at some point the application is trying to connect to the localhost. Specifying a properties file as below does not help either.
    --- jndi.properties ---
    java.naming.factory.initial=com.sun.enterprise.naming.SerialInitContextFactory
    java.naming.provider.url=iiop://myservername:3700java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl
    Running those applications to access a local server works fine on both machines. I want to have a client accessing the server remotely. Do I need to edit/compile source code of those applications in some other way? Isn't specifying a remote server from command line enough? I have tried any suggestions found on the Internet or anything coming to my mind but no success so far. I appreciate any clues.
    thanks,
    Farshad

    Apparently, the system tries to connect to the localhost at some point! I changed the jndi.properties to:
    java.naming.factory.initial=com.sun.enterprise.naming.SerialInitContextFactory
    org.omg.CORBA.ORBInitialHost=myservername
    org.omg.CORBA.ORBInitialPort=3700
    java.naming.provider.url=iiop://myservername:3700
    Now, executing
    #java -Djms.properties=jndi.properties SimpleProducer jms/Queue
    gives the below message while if I change "myservername" to "localhost" and run an App Server locally it works quite fine. What am I missing?! Isn't it enough to have a remote server name in that jndi.properties to make the same application work with a remote server? I appreciate any help.
    - Farshad
    ERROR MESSAGE:
    Destination name is jms/Queue
    May 15, 2003 7:56:10 PM com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl <init>
    WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: localhost; port: 3700"
    org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2257)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2278)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:208)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:221)
    at com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImpl.java:104)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl.java:153)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:127)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:244)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69)
    at com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:89)
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:128)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:290)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at SimpleProducer.main(Unknown Source)
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection refused
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:336)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:191)
    ... 12 more
    Caused by: java.net.ConnectException: Connection refused
    at sun.nio.ch.Net.connect(Native Method)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:460)
    at java.nio.channels.SocketChannel.open(SocketChannel.java:146)
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:320)
    ... 13 more
    JNDI API lookup failed: javax.naming.CommunicationException: Can't find SerialContextProvider [Root exception is org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 201  completed: No]
    javax.naming.CommunicationException: Can't find SerialContextProvider [Root exception is org.omg.CORBA.COMM_FAILURE:   vmcid: SUN  minor code: 201  completed: No] at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:133)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:290)
    at javax.naming.InitialContext.lookup(InitialContext.java:347)
    at SimpleProducer.main(Unknown Source)
    Caused by: org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2257)
    at com.sun.corba.ee.impl.logging.ORBUtilSystemException.connectFailure(ORBUtilSystemException.java:2278)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:208)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:221)
    at com.sun.corba.ee.impl.transport.SocketOrChannelContactInfoImpl.createConnection(SocketOrChannelContactInfoImpl.java:104)
    at com.sun.corba.ee.impl.protocol.CorbaClientRequestDispatcherImpl.beginRequest(CorbaClientRequestDispatcherImpl.java:153)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.request(CorbaClientDelegateImpl.java:127)
    at com.sun.corba.ee.impl.protocol.CorbaClientDelegateImpl.is_a(CorbaClientDelegateImpl.java:244)
    at org.omg.CORBA.portable.ObjectImpl._is_a(ObjectImpl.java:112)
    at org.omg.CosNaming.NamingContextHelper.narrow(NamingContextHelper.java:69)
    at com.sun.enterprise.naming.SerialContext.narrowProvider(SerialContext.java:89)
    at com.sun.enterprise.naming.SerialContext.getProvider(SerialContext.java:128)
    ... 3 more
    Caused by: java.lang.RuntimeException: java.net.ConnectException: Connection refused
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:336)
    at com.sun.corba.ee.impl.transport.SocketOrChannelConnectionImpl.<init>(SocketOrChannelConnectionImpl.java:191)
    ... 12 more
    Caused by: java.net.ConnectException: Connection refused
    at sun.nio.ch.Net.connect(Native Method)
    at sun.nio.ch.SocketChannelImpl.connect(SocketChannelImpl.java:460)
    at java.nio.channels.SocketChannel.open(SocketChannel.java:146)
    at com.sun.enterprise.iiop.IIOPSSLSocketFactory.createSocket(IIOPSSLSocketFactory.java:320)
    ... 13 more
    ---

  • C3560 that supports crypto for remote acess

    I have a question WS-C3560-8PC-S that supports ssh remotely to do?

    supports the WS-C3560-8PC-S crypto functions?

  • Remotly acess of SQL loader

    We have two oracle servers.
    Server A.
    Server B.
    And end user machine.on this machine we only has net service with server A.
    We select and insert our data from server B using Db link.
    Now on end user machine as I mention we don’t have connection service of server B then how I run my SQL loader utility from end user using DB link or some thing else in order to load data into server B.
    Thanks
    faheem

    I don't have an environment at the moment to test this, but I would expect that your SQL*Loader control file could simply refer to target_table@database_link or that you could create a synonym on A for target_table@database_link and load the data into that synonym. Assuming, of course, that your data file is relatively vanilla (I'd expect that loading into LOBs over a database link would fail, for example).
    Again, I'm not guaranteeing this will work, but I don't see any reason off the top of my head that it wouldn't.
    Justin

  • Please help me setup us the PPP dialup for OS 8.0

    I have not the ability to conduct my own research, for all my methods have failed and I am stranded with no internet at my home.
    I have the OS 8.0 as my system of operation. My Control Panel doesn't have the PPP option, as many websites have described. I do not know what to do and feel like a helpless baby. Please help, I'm running out of lollertears!
    I just need to know where to enter the access number and user name and password that my ISP has provided me.
    Thank you and may the Rofl of Bethlehem live inside you all.
    The Roflator of Lollerz   Mac OS 8.6 or Earlier   Roflastic

    Michael
    I've checked my old PPC 7600.
    I didn't find PPP either-but found it in the TCO/IP help under
    connecting via modem(I'M using a router in a network,use DHCP server and remote access):
    You have to
    1)configure the modem
    2)Use remote access
    In the help menu for TCP/IP the PPP-Server is mentioned!
    May be you have got the Internet Connection Kit-I used it to get to internet(only remote acess worked!).
    Good luck

  • Wireless Router WRT54G

    Hello,
    Can someone assist me. I hooked my my wireless router and now when I connect to Windows Live Messenger and do Request Remote Assistance it will not work at all. I connect through there and someone can help me with my pc problems. I did a port forward to port 3389 for messenger but it still will not go through. If someone knows what I need to do to get this to work, I would appreciate it. I am sure it is something in the settings but not sure what I need to adjust. thanks.

    The easiest way to do it is to set that pc up as a DMZ.  That opens all port to that pc which opens it for attack.  Now its only a temporary fix but will allow remote acess .
    Richard Aichner (Ikester)

  • Isp service provider

    hello everyone,
    i am working on a program that implements javamail , it asks for ISP's mail server name , i am working on windows service pack 2 machine (laptop) and using dailup connection for my internet , can any one suggest me the real substitute for this , ( my ISP mail server name , method of finding ?), in one of the examples i have read it would be somthing like this [email protected] , i am confused if it is the name of my machine (hostname)
    kindly help me , it important for my final year project (working on remote acess)

    Who's your dialup ISP? Do they provide a
    mail server for you to use? Check if they have
    instructions for setting up Mozilla Thunderbird
    to use their mail server. The same configuration
    information will apply to JavaMail.

  • Does my external ip address change ? ? ?

    am on bt total broadband option 3 .
    what i want to know is if i dont turn off the router which i have been adviced not too turn off , will my external ip address ever change ?
    i need to know as i need to be able to get remote acess to my pc when out and about via a iphone app .
    also can anyone help me with port forwarding ?
    i need to forward port 8080 to my router , but have no idea how , i have a screenshot of the settings that i get offered ,
    http://www.flickr.com/photos/35628083@N03/5618287565/in/photostream
    and how do i find my external ip address  ?
    thanks daniel

    dan44762000 wrote:
    also can anyone help me with port forwarding ?
    i need to forward port 8080 to my router , but have no idea how , i have a screenshot of the settings that i get offered ,
    http://www.flickr.com/photos/35628083@N03/5618287565/in/photostream
    and how do i find my external ip address  ?
    thanks daniel
    This page should help you with port forwarding.
    Port forwarding
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • RAS를 이용한 원격지에서의 ORACLE 접근방법(WIN NT)

    제품 : ORACLE SERVER
    작성날짜 : 2002-04-11
    RAS를 이용한 원격지에서의 ORACLE 접근방법(WIN NT)
    =================================================
    Purpose
    network이 연결되어 있지않은 장소에서 server의 database를 사용하기
    위해서는 modem을 이용할수 밖에 없다. 이때 windows NT의
    RAS(Remote Acess Service)의 기능을 사용하면 쉽게 원하는 바를 얻을
    수가 있다. RAS를 설치하는 방법과 이것을 통하여 windows95에서
    windows NT와 LNA으로 연결되어 있는 다른 SERVER의 database를
    사용할수 있는 방법을 정리 했다.
    Explanation
    이 설치 방법을 기술하기 위해 다음과 같은 상황을 가정한다.
    WINDOWS NT SERVER가 MODEM을 가지고 있고 LAN으로 DATABASE가 있는 UNIX
    SERVER와 연결이 되어있다. 이 DATABASE를 출장나가 있는 직원의 WINDOWS95
    가 설치된 MODEM을 가지고 있는 PC에서 접근하려고 한다.
    설치 방법은 먼저 WINDOWS NT에 RAS를 설치하고 WINDOWS95에선 전화접속
    네트워크를 설치한후 연결된 NETWORK환경을 이용해서 SQL*NET을 셋팅하는
    순서로한다.
    1. WINDOWS NT에 RAS를 설치하기
    제어판의 네트워크를 연다. 서비스 탭에서 추가를 선택한후에 추가를
    선택하여 나온 목록중에 원격 엑세스 서비스(RAS)를 선택한후에 절차에
    의해 설치를 한다. (이때에는 WINDOWS NT INSTALL CD가 필요하다.)
    만약 MODEM에대한 설치가 되어 있지 않으면 이때에 MODEM에 대한 설치까지
    하게 된다. 설치가 끝나고면 매 BOOTING시마다 자동으로 RAS SERVICE가
    기동이된다.
    2. RAS 이용권한 주기.
    시작->프로그램->관리도구(공용)->원격 엑세스 관리자를 선택하면 원격
    엑세스 관리자가 기동된다. 이곳에서 MENU의 USER의 PERMISSION을 선택하면
    REMOTE ACCESS PERMISSIONS화면이 나오는 데 이때 GRANT ALL을 선택하면
    모든 LOGON USER에게 권한을 주게 된다. 필요한 USER를 선택하여 줄수도
    있다. 이 화면의 MENU의 SERVER에서는 RAS를 START, STOP할 수도 있다.
    3. WINDOWS95에서 셋팅하기.
    제어판->네트워크를 선택한다. 컴퓨터확인 탭의 작업 그룹안에 WINDOW NT가
    속해 있는 DOMAIN 이름을 적어준다. 네트워크 구성 탭에 Microsoft 네트워크
    클라이언트의 등록정보를 열어서 로그온 확인의 Windows NT 도메인으로 로그
    온을 체크하고 Windows NT도메인에는 Windows NT가 속한 DOMAIN이름을
    준다. 그리고 시작->프로그램->보조 프로그램->전화접속 네트워크를 선택
    하여 새로연결을 시작한다. 이때 WINDOWS NT가 있는 전화번호 등을 입력하여
    새로운 전화접속 네트워크를 생성한다. 이때 USER롸 PASSWORD는 WINDOWS NT
    DOMAIN에 LOGON할 USER의 것이어야 한다. 그리고 WINDOWS 95를 REBOOTING
    하면 NETWORK에 대한 USER와 PASSWORD를 묻는다. 이때 DOMAIN에 LOGON할
    USER와 PASSWORD를 입력한후에 LOGON한후에 전화접속 네트워크를 기동하면
    RAS가 기동되어서 network이 연결이 된다. 이때는 마치 LAN으로 연결된
    같은 NETWORK안에 있는것과 같다.
    (이것을 WINDOWS95에 이미 전화접속어댑터나 TCP/IP등이 셋팅
    되어 있는 것을 전제로한다.)
    4. SQL*NET연결하기.
    시작->프로그램->Oracle for Windows95->Sql*net Easy Configuration을
    선택하여 database가 있는 unix server의 ip와 sid를 넣어 sql*net을
    셋팅한다. 그리고 developer/2000이나 sql*plus 등을 user/passwd@alias
    형태로 연결하면 된다.

  • "Sometimes the internet gets a bit sleepy and take...

    Can an admin of skype please remote acess my computer and fix this im finally tired of trying to fix this myself and i have been trying for the past few months to fix it so can an admin please help me out
    Email: [e-mail removed for privacy and security]
    Name Presley
    Thanks i really need some help

    What version of Windows are you on (XP, Vista, Windows 7, Windows 8 )? Is it 32-bit or 64-bit?
    http://support.microsoft.com/kb/827218
    What is the version of Internet Explorer installed on your computer?
    In Internet Explorer go to Help -> About Internet Explorer.
    P.S. Please, don’t say that you are not using Internet Explorer. This is irrelevant. Skype depends on Internet Explorer.

  • Basic tBridge configuration

    Hi,
    I need some help in configuring tBridge. we have WLS 8.1 in one machine and Tuxedo 8.1 server in other machine. We connect to Tuxido server from Weblogic through Jolt connection. We are planning to use tBridge with WTC for one of our requirements. Basically We want to pass messages from Tuxedo Q to JMS Q through tBridge(TuxQt2JmsQ) asynchronosly.
    My first query is can we use WTC and JOLT connector both from the same Weblogic server to connect to Tuxedo?.
    When I was trying config WTC from WLS Admin console it is asking for Local access point and Remote accee point where my remote accee point is Tuxedo listener port that I use for our jolt connection?? and My Local access point is t3://localhost:8001 ??. When I check at Tuxedo server side I can not fint any DMCONFIG or BDMCONFIG files(those are the main confiruble files I assume), where should I look for thease files exactly?
    Any help would be greatly appriciated.
    Thanks in advance
    Madhav

    Hi Madhav,
    You can use WTC and Jolt at the same time, although they will obviously be different connections. Jolt clients connect to the JSL, whereas WTC connects to the Tuxedo Domain Gateway. So to use tBridge (a component of WTC) you will need to configure a domain gateware on your Tuxedo system. As well you will need to configure WTC. For detailed information on WTC and the meaning local local access points, etc., please consult the WLS and Tuxedo documentation. In particular, read a bit about setting up domains in the Tuxedo documentation to get some background.
    If you want to try a canned set up to see how domains communication and WTC is configured, you could try the Tuxedo Control Jumpstart Kit located at:
    http://dev2dev.bea.com/pub/a/2004/02/tuxedo_jumpstart.html
    I believe it has some ant scripts that will automatically configure your WTC configuration and a simple Tuxedo application, at least on a single machine. You can then use that as a model for setting up your real environment.
    Briefly, a domain in Tuxedo terms can have local access points and remote access points. A local access point basically describes a listening point. A given Tuxedo application can have multiple local access points, although only one is required. Remote access points then describe the remote Tuxedo domain this domain should connect to. So the simplest case is on your Tuxedo system:
    Local Access Point: TUXDOM
    Local Access Point ID: TUXDOM (it doesn't have to be the same, just for convenience)
    Local Access Point Network address: //tuxhost:6010
    Remote Access Point: WLSDOM
    Remote Access Point ID: WLSDOM
    Remote Access Point Network address: //wlshost:6030
    And then basically the reverse on the WLS system in the WTC configuration:
    Local Access Point: WLSDOM
    Local Access Point ID: WLSDOM
    Local Access Point Network address: //wlshost:6030
    Remote Access Point: TUXDOM
    Remote Acess Point ID: TUXDOM
    Remote Access Point Network address: //tuxhost:6010
    That's just a start, but it should get you going.
    Regards,
    Todd Little
    BEA Tuxedo Engineering

  • Ive deleted all my movies by mistake, help please?

    My movie library was taking way too much space on my hard drive so I bought a couple of 2tb external drives. (X2  to enable me to make a back up copy of everything).
    I worked out how to get remote acess to them through itunes, so all seemed good.  Once I had copied all my movie files across I then deleted the files in my itunes library. I didn't realise this would also delete all the files on my external drives as well.
    This is a disaster, my library is over 800gb and most of it has been converted from my dvd library a lot of which I dont have anymore. 
    Is there anyway to retrieve them?

    It may be possible to recover some erased ones, but you must quit using the Drive or even iTunes, immediately, because the OS will think it can write to those freed blocks on the disk.
    Turn off Time Machine & exclude the external drives from Spotlight searches too.
    Data Rescue...
    http://www.prosofteng.com/products/data_rescue.php
    (Has a Free Demo to see if it could or not, but you'll need another drive to recover to).
    Or professional Data Recovery Services.
    BUT, every second you use that Mac the chances will be slimmer.
    rccharles on file recovery...
    "Stellar Phoenix Macintosh - Mac data recovery software, recovers data from damaged, deleted, or corrupted volumes and even from initialized disks."
    They have a trial version, so I guess you can see if your data can be recovered...
    http://www.stellarinfo.com/mac-data-recovery.htm
    FileSalvage is an extremely powerful Macintosh application for exploring and recovering deleted files from a drive or volume. FileSalvage is designed to restore files that have:
        * been accidentally deleted.
        * become unreadable due to media faults.
        * been stored on a drive before it was re-initialized/formatted.
    http://subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products_id= 1
    http://discussions.apple.com/thread.jspa?messageID=11073082#11073082

  • Reading AD Terminal Services attribute

    Hi,
    I am trying to read user profile from AD using JNDI code.Using the code I am able to read all the attributes except the terminal services attribute like TerminalServicesProfilePath. Can anyone tell me is it possible to read the value of these attributes using JNDI, if pssoible then how can we do this. Also if there is any othe way to acheive this.
    TIA

    If I remember correctly, there are no specific Terminal Services attributes that you can easily gain access to in Active Directory. Rather the terminal services user settings are stored in a binary blob of data stored in the userParameters attributes. (FYI, Historically this was to provide backwards compatibility for NT4 where Terminal Services, Remote Acess Services, Services for Netware and third party solutions (such as Lotus Notes) stored user settings in a NT4 domain property called userParams)
    You may be able to access each Terminal Services setting in the binary blob either via a set of Terminal Services COM interfaces or from what I have read from a set of Windows Management Instrumenation (WMI) interfaces. Here is a useful link for you. http://blogs.technet.com/heyscriptingguy/archive/2008/10/23/how-can-i-edit-terminal-server-profiles-for-users-in-active-directory.aspx
    BTW, You can access WMI which is the Microsoft implementation of Web Based Enterprise Management (WBEM) via Java. There is some crude sample code at http://forums.sun.com/thread.jspa?threadID=5116320

  • Itunes library on all devices

    I have a many years Itunes library collected on a desktop (PC).I want my laptop (PC) take over as my Itunes home while I travel (So not via remote acess to home desktop.) I want my TTunes library on the laptop. Also, I record with my I pod and my I phone and want to upload the recordings to the laptop, rename them in Itunes and reload it to the smaller listening device, just like I do regularly with my desktop. Thanks for your advice.

    Transfer your itunes library onto your laptop. Here is how to do it just think of your laptop as an external hard drive
    http://support.apple.com/kb/ht1751
    Then sync your ipod and iphone to the new computer. If it says erase and sync, go ahead and then reync the content from your laptop
    Your iphone and iPod are then tied to your new laptop for when you travel

Maybe you are looking for

  • Hp pro 8500 keeps asking for maganta ink when it's already a new one, then loose image, please help

    HP PRO8500 KEEPS ASKING FOR MAGANTA INK, THEN LOOSE IMAGE, I ALREADY REPLACED INK TWICE BUT ISSUE STILL PERSIST. PLEASE HELP

  • Arch as a Media Center PC

    I'm just now getting my beast of a desktop back up and running from a failed video card (overheated and fried, fan was bad). It's a rather outdated Athlon XP 3200+, it's decked out nicely with 2 gigs ram and approximately 2.5TB of hard drive space (I

  • "Complete my Album" didn't change the price of the album

    I want to buy an album, and I already bought one of the songs. When I click "Complete My Album" the price of the album doesn't change, and it doesn't download.  Am I doing something wrong?

  • How to export many single video clips

    I have around 25 videos in my project window that I want exported. Originally they were longer and I changed the in and out points. I now want to have these corrected videos saved to a different location on my computer. I still want the long video cl

  • Search Won't Open Docs In Browser

    SharePoint 2013.  Enterprise Search Center.  Site default is open all docs in the browser (lists and libraries).  However, when search is performed any docs returned try to use the client application or opening and not the browser.  I need all docs t