如何使用以 SYSTEM 用户身份运行的 WScript 访问用户的 iTunes 实例?

发布于 2024-10-21 09:51:28 字数 444 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

安人多梦 2024-10-28 09:51:28

Windows 脚本主机不够灵活,无法做到这一点,因此您必须想出某种技巧:

  • 从 %windir%\system32\config\systemprofile\?path 到 itunes 库创建符号链接?到您的用户库(iTunes 可能不是为处理此问题而设计的,因此它可能无法工作或可能会破坏内容)
  • 由于您以 SYSTEM 身份运行,因此您拥有很大的权力,您可以安排一个使用特殊参数运行脚本的任务作为您自己,然后控制 iTunes

Windows scripting host is not really flexible enough to do this, so you would have to come up with some sort of hack:

  • Create a symlink from %windir%\system32\config\systemprofile\?path to itunes library? to your users library (iTunes is probably not designed to handle this and so it might not work or could break stuff)
  • Since you are running as SYSTEM you have a lot of power, you could schedule a task that runs your script with a special parameter as yourself and then control iTunes
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文