0
我試圖讓我的Applescript代碼具有管理員權限。然而,我發現谷歌搜索的唯一解決方案是:Applescript管理員權限但不*運行shell腳本
do shell script "command" user name "me" password "mypassword" with administrator privileges
我沒有運行shell命令..我使用純粹的AppleScript。我正在做的代碼是:
on run {input, parameters} -- copy
repeat with aFile in input
tell application "Finder"
if name extension of aFile is "component" then
copy aFile to "/Library/Audio/Plug-ins/Components"
else if name extension of aFile is "vst" then
copy aFile to "/Library/Audio/Plug-ins/VST"
end if
end tell
end repeat
end run
有沒有辦法在使用純Applescript時獲得管理員權限?