我的脚本正在按预期工作,并且正在创建我的别名文件夹,除非每次提示我输入我的计算机密码,因为它需要管理员权限。 Applescript不允许我添加代码来授予管理员权限,所以我很难为该做什么。以下代码有效但需要我的密码才能完成
make new alias at myLocation to mySource
我想做的是:
make new alias at myLocation to mySource password "myPassword" with administrator privileges
我已经多次使用类似的代码但由于某种原因它不允许我这样做而创建一个别名。任何人都知道我需要做什么来自动化这个过程,而不是每次都要输入我的密码?
答案 0 :(得分:1)
我发现我可以这样做:
do shell script ("sudo ln -s " & quoted form of POSIX path of fullPathTitlesMedia & space & quoted form of POSIX path of parentMediaPath & "") password "password" with administrator privileges