How Can I do it with to different ipod on the same computer ?
I have and ipod(1GB) and my daughter has another ipod(4GB), how can we work with the same computer and itune for 2 different ipods ?
iPod(1GB) and a second iPod(4GB) Windows XP 2 different iPods on the same computer
this document might be of some help with that:
How to use multiple iPods with one computer
if you decide on a multiple-user-account strategy, this document might also be useful:
iTunes: How to share music between different accounts on a single computer
Similar Messages
-
How do I sync two ipods with two different IDs on the same computer?
How do I sync two ipods with two different IDs on the same computer?
Simply connect them. One computer with one iTunes can manage multiple devices. They're tracked by S/N but you might wish to assign them unique names so that you can track them yourself.
The only minor issue is app updating and purchases while on the computer. It's necessary to log out and back in to the "correct" ID. Much easier to do these things from the iPods. -
How to I share Itune library, and movies with a different user on the same computer?
How do I share Itunes and movies with a different user on the same computer?
https://discussions.apple.com/community/itunes
-
My old computer crashed and I have a new computer. How can I save my music from my IPod to the new computer since it isn't in my Library. I don't want to sync and lose music.
Then you will need to search for a 3rd party program to transfer content
Pasted from another thread
https://discussions.apple.com/thread/2234756?start=0&tstart=0
One of the most recommended is Yamipod. This is a free program that transfers music from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
Other free programs are Pod Player, SharePod and Floola and iDump andiPodRobot.
If you want to recover just the structure of playlists from the iPod (and not the actual song files themselves), there's iRepo for Windows. which I understand has this feature along with all the standard features for these programs.
iPodRip also has the feature enabling you to reconstruct playlists.
There is also CopyTrans. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.
More information is contained here.
Copying content from your iPod to your computer - The Definitive Guide. -
How can you add a 2nd i Tunes account on the same computer?
How can you add a 2nd i Tunes account to the same computer?
I had an application where I spawned (= ran with Start Asynchronous Call) multiple (reentrant) copies of VIs, and would occasionally "lose control" of them. I needed a way to find all VIs that were running "Top Level" and stop them (so I didn't have to log off from Windows).
I used the Application Property "All VIs in Memory" to get an array of (wait for it ...) All VIs in Memory. I took each name, opened a VI reference to it (simply wire the name string in, as the VI is, by definition, "in memory"), looked at its VI Execution State, and if it was Run Top Level, Invoked the FP.Close and Abort VI Methods. [To prevent the VI that did all this from "committing Suicide", I compared the name string with the current Call Chain, and did nothing if there was a match].
I think you could adopt this idea to do what you need.
BS -
How do I download Acrobat from my account on to the same computer that crashed and is rebuilt? I see my purchase and SN in my account?
Acrobat XI, X - http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html
Acrobat 9, 8 - http://helpx.adobe.com/acrobat/kb/acrobat-8-9-product-downloads.html -
I am trying to store music for two different iPods on the same Windows 8 computer, and when I try and download content from the Cloud I get an error message. Is it possible to have two different Apple IDs on the same computer?
Unfortunately you've discovered too late how important it is to maintain an up-to-date backup of your iTunes library (and all other data of value). You could, before wiping the drive, have considered making use of a commercial data recovery service that could (albeit at considerable cost) have extracted your library from the hard disk, even if virus infected.
In the absence of that option, you will need to restore the content of your library from its original sources:
Depending on your location, you may be able to re-download any iTunes Store purchases that are still available on the Store
Likewise, most digital purchases from Amazon (including auto-rip copies of purchased CDs) should be available from the Amazon Cloud and via the Amazon Music application - the same may be true of other commercial sources for digital downloads
Content imported from your CDs will have to imported again
The specific situation that you describe regarding the music imported from your friend's external HDD suggests that either the source is badly organized and/or originates from a source other than iTunes (other media players may use alternative tags for information like artist, title, album, etc. that are not wholly consistent with how iTunes handle these). Without details of the issues you're seeing it is difficult to suggest a remedy other than going through the media album-by-album, track-by-track, and correcting the inconsistencies.
In the absence of a backup or access to the original library data there is no option other than painstakingly recreating your library as described above. As you do so, you'll now realize how important creating and maintaining backups are - in my case I have at all times three separate duplicates of my library, in two different locations, where none is ever more than a week old compared to the content of my master library. -
Sharing Itunes with a different user on the same computer...
Can I allow a different logged in user to gain access to my music library on the same computer? If so...How the heck do you do it? I tried something once and thought I lost my whole library!
Thanks.The following document may be of some assistance with that:
iTunes: How to share music between different accounts on a single computer -
How can I test a RTP(send&receive) application on the same computer?
I an writing an application that lets one computer (A) sends a media file to another computer (B) and B receives it and play it.
But how can I test this application on the same computer
Eg.Transmitter: localhost 43000
Receiver: localhost 43000
It will retuen an error since the port number is alreeady used by another program.
I know if I test it on different computers, it should be fine, but how can I test it on the same computer?JMStudio sends RTP packets from the same UDP port as the specified in the destination port, so you can't try it in the same computer. The examples provided in http://java.sun.com/products/java-media/jmf/2.1.1/solutions/index.html follow this rule aswell, but it's easy to modify it:
rtpMgrs[streamid]=RTPManager.newInstance();
localAddr = new SessionAddress( InetAddress.getLocalHost(),localDataPort);
//By deafault, in the examples, they use remote DataPort instead of localDataPort.
//You can specify localDataPort to any different free port number, or to
//SessionAddress.ANY_PORT if you don't mind the port number
remoteAddr = new SessionAddress(destIpAddr,remoteDataPort);
rtpMgrs[streamid].initialize(localAddr);
rtpMgrs[streamid].addTarget(remoteAddr); -
Suppose that several VIs running simultaneously on the same computer. How can I find out the names of the running VIs, from another VI?
If the already running VIs are clones of the same basic VI, open and run with the option "Prepare to call and forget", how can I find out the names and index of each clone?I had an application where I spawned (= ran with Start Asynchronous Call) multiple (reentrant) copies of VIs, and would occasionally "lose control" of them. I needed a way to find all VIs that were running "Top Level" and stop them (so I didn't have to log off from Windows).
I used the Application Property "All VIs in Memory" to get an array of (wait for it ...) All VIs in Memory. I took each name, opened a VI reference to it (simply wire the name string in, as the VI is, by definition, "in memory"), looked at its VI Execution State, and if it was Run Top Level, Invoked the FP.Close and Abort VI Methods. [To prevent the VI that did all this from "committing Suicide", I compared the name string with the current Call Chain, and did nothing if there was a match].
I think you could adopt this idea to do what you need.
BS -
How can I migrate from one user to another within the same computer?
My main user account in my desktop is becoming buggy after to many migrations from different computers and long time usage. I would like to migrate from one user to another user within the same computer to see if this improves my current problems.
How can I do it in a reasonably safe and quick way?
Thank you very much, cheers, Rui
iMAC, OS 10.6.8... and yes, I love Snow Leopard light and handy... and all my programs work on it...Move small groups of files to the /Users/Shared/ folder or another location and see if the problems disappear. Moving everything to a new user account will in all probability transfer the problems.
(119885) -
I am the administrator on our family computer with 3 other family member logins. I have downloaded the app for pages but how can I allow the other users access to it? I am a computer novice so i need some advice.
If Pages and the other applicatioins installed in the Applications in the root directory they can be used by everyone. By default all programs installed by the App store are installed in the Applications folder in the root. In other words, your family members should be able to use the programs. Can they not?
-
I am looking to gather test data using LabVIEW. I then want to store all the data in the same spreadsheet, a kind of central data base. I know how to store single test data in a spreadsheet but I can I get the software to write new data in the same file without over writing the old data?
My first recommendation is that if you need a database--use a database not a spreadsheet. A DBMS isn't that hard to use and could pay big dividends in the future.In any case, to answer your question directly, it sounds like you are writing tab-delimited data to a text file that you will then open with a spreadsheet program. On the file write vi is a boolean input that specifies whether the new data should be appended or overwrite the existing data (the default is to overwrite). Mike...
Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion
"... after all, He's not a tame lion..."
Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps -
I shouldn't have to use "match" yet another thing to pay money for. I've been reading other discussions and can't figure this out.
Home sharing is and was on in itunes in both users. I get different music in each itunes but they are both logged in to the same apple ID. I would have thought the exact same library would pop up. Why woudl it be otherwise? Strange.
-
How do you do home share with in different accounts on the same computer?
How do you homeshare within different log in accounts (and itunes accounts) within one computer?
Simply connect them. One computer with one iTunes can manage multiple devices. They're tracked by S/N but you might wish to assign them unique names so that you can track them yourself.
The only minor issue is app updating and purchases while on the computer. It's necessary to log out and back in to the "correct" ID. Much easier to do these things from the iPods.
Maybe you are looking for
-
Change location bar suggestions so it shows bookmarks first instead of most opened
Hello, I would love to change the locations bar settings so it shows matched bookmarks first instead of history based hits. For example I want to quick access the web site "xxxx". I start typing in "xx" and the first suggestion is for the main site -
-
Can I retrieve my deleted photos and videos somehow? I deleted my photos from my iphone thinking they would be on my ipad. Now all of my photos and videos are gone some one please help.
-
Hi, One of our customers had the following query on SQL Data Sync 1. ALter database permission is required during setup of sync services and it switches ON the SNAPSHOT ISOLATION level on our on premise DB. what is the impact of it? 2. After setting
-
How to pass parameters from GP to Portal-page or iView
Hello all, I tried various things but I'm not succesfull in creating an callable object of type 'Portal-page or iView' which receives certain parameters. Currently we open the portal page from within a WebDynpro. I pass a string "zaanum=909&zasnum=1
-
Controlling embedded Flash player
Hi All, I am working on a project whereby the embedded Flash player (9) needs to be controlled from code. The following must be accomplished: There is a list of .swf files stored in a XML file on the web server. (These .swf files are converted from .