Skip to content

Instantly share code, notes, and snippets.

@smallfield
Created June 24, 2012 11:14
Show Gist options
  • Save smallfield/2982849 to your computer and use it in GitHub Desktop.
Save smallfield/2982849 to your computer and use it in GitHub Desktop.
Update all devices connected to iTunes(Windows)
var KIND_IPOD = 2;
var iTunesApp = WScript.CreateObject("iTunes.Application");
var sources = iTunesApp.Sources;
for(i=1; i <= sources.Count; i++){
item = sources.Item(i);
if (item.Kind == KIND_IPOD) {
item.UpdateIPod();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment