使用 applescript 密码挂载磁盘

使用 applescript 密码挂载磁盘

我正在使用 applescript 来安装我的硬盘。

目前我正在使用:

执行 shell 脚本“diskutil mountDisk diskutil list | grep \“Harddrive\” | grep -o 'disk[0-9]*'”

现在我想做同样的事情,但使用加密驱动器。

我如何在此脚本中填写密码?

答案1

来自 MacScripter 的 StefanK:

property thePassword : "•••"
do shell script ("/bin/echo -n " & quoted form of thePassword & " | /usr/bin/hdiutil attach -stdinpass /Volumes/ExternalDisk/ImageName.dmg")

相关内容