# getting Itunes to recognize edited tags?

**URL:** https://community.mp3tag.de/t/getting-itunes-to-recognize-edited-tags/9543
**Category:** General Discussion
**Created:** [December 15, 2009, 11:53pm UTC](https://community.mp3tag.de/t/getting-itunes-to-recognize-edited-tags/9543 "2009-12-15T23:53:58Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![edrikk](https://community.mp3tag.de/letter_avatar_proxy/v4/letter/e/c37758/32.png) [@edrikk](https://community.mp3tag.de/u/edrikk)
#### Post date: [December 16, 2009, 5:07pm UTC](https://community.mp3tag.de/t/getting-itunes-to-recognize-edited-tags/9543/3 "2009-12-16T17:07:57Z")

</div>

Create a text document with extension .js  
For example: itunes\_reread.js

add the following code in the .js file, and save

```
var iTunesApp = WScript.CreateObject("iTunes.Application");
var tracks = iTunesApp.LibraryPlaylist.Tracks;
var numTracks = tracks.Count;
var i;
for (i = 1; i <= numTracks; i++)
{
    var currTrack = tracks.Item(i);
    currTrack.UpdateInfoFromFile();
}

```

run the .js file.  
It will "refresh" all information in your itunes library.

---

_[View the full topic](https://community.mp3tag.de/t/getting-itunes-to-recognize-edited-tags/9543)._
