从与 Applescript 相同的文件夹运行 PKG 文件

Run a PKG file from the same folder as an Applescript

我有一个 apple 脚本,它应该安装具有管理员权限的打印机驱动程序,然后是一个 bash 脚本,它根据 ip 地址将打印机添加到计算机。 apple脚本和pkg文件在同一个文件夹下。

我有点纠结于如何编写 apple 脚本,以便 pkg 可以相对于它所在的位置运行。我的目标是将脚本托管在某个地方,其他 mac 可以运行并安装同一台打印机。大家有什么想法吗?

这是我目前所拥有的

运行{输入,参数}

do shell script "sudo  installer -allowUntrusted -pkg  Driver.pkg -target /"
with administrator privileges

return input

运行结束

我收到一条错误消息,指出路径 Driver.pkg 无效。脚本和 pkg 在同一个文件夹中。

有无管理员权限,do shell script的工作目录总是/(启动盘的根文件夹)。

但是,您可以这样做:

tell application "Finder"
    set myFolder to (quoted form of (POSIX path of (parent of (path to me) as string)))
end tell

do shell script ¬
  "installer -allowUntrusted -pkg " & myFolder & "Driver.pkg -target /" ¬
  with administrator privileges

如果您使用 with administrator privilegessudo 是多余的。