Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 'iTunes does not scan the Automatically Add to iTunes folder when it is running.
- 'This script can be run at regular intervals. There is no call to add a track to the library without conversion,
- 'But if you create a playlist with the contents of the folder, iTunes will import the files and move them to the library.
- 'The script then deletes the playlist created to trigger the import.
- 'Replace .AddFile("PATH") with the correct path for your import folder.
- Dim iTunesApp
- Set iTunesApp = WScript.CreateObject("iTunes.Application")
- Set List=iTunesApp.CreatePlaylist("zAutomatic")
- List.AddFile("\\nas\iTunes\iTunes Music\Automatically Add to iTunes")
- List.Delete()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement