Skype4COMを使う。簡単にやればこれだけ。 var skype = newComObject("Skype4Com.Skype"); var it = newComObject("iTunes.Application"); var me = skype.CurrentUserProfile; while(true){ with(it.CurrentTrack) me.MoodText = [Name," / ",Artist].join(""); print(me.MoodText); WScript.Sleep(60000); } function newComObject(lib){ var obj; try { obj = WScript.CreateObject(lib) } catch(e){ obj = new ActiveXObject(lib) } return ob