如何使用以 SYSTEM 用户身份运行的 WScript 访问用户的 iTunes 实例?
我正在尝试使用 JavaScript 和 iTunes COM 接口将文件添加到我的 iTunes 库。我编写了一个 JavaScript 文件,该文件成功地将文件添加到我的库中,但仅当从命令行调用时。
当我从浏览器运行相同的脚本时,它会以 SYSTEM 用户身份创建一个 iTunes 应用程序,这就是我认为我的问题所在...
所以我想要完成的是访问在我的用户而不是 SYSTEM 用户下运行的 iTunes 实例,或者添加我的用户的 iTunes 库而不是 SYSTEM 用户的图书馆。
这是 JavaScript:
var iTunesApp = WScript.CreateObject("iTunes.Application");
iTunesApp.LibraryPlaylist.AddFile('B:\\filetoadd.mp4');
I am trying to use JavaScript and the iTunes COM interface to add files to my iTunes library. I have written a JavaScript file that successfully adds a file to my library, but only when called from the command line.
When I run the same script from a browser, it creates an iTunes application as the SYSTEM user, and this is where I believe my problem lies...
So what I'm trying to accomplish is to access either the iTunes instance running under my user as opposed to SYSTEM user, or to add my user's iTunes library instead of the SYSTEM user's library.
Here is the JavaScript:
var iTunesApp = WScript.CreateObject("iTunes.Application");
iTunesApp.LibraryPlaylist.AddFile('B:\\filetoadd.mp4');
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 脚本主机不够灵活,无法做到这一点,因此您必须想出某种技巧:
Windows scripting host is not really flexible enough to do this, so you would have to come up with some sort of hack: