NAS를 밤시간에는 자동으로 꺼지게 설정했는데 반대로 무소음인 Mac Studio 는 항시켜둔다. 덕분에 아침마다 매번 마운트 하기 귀찮아서 자동으로 마운트 하도록 설정1. Automater 를 실행하고 응용프로그램 > AppleScript 실행을 선택2. 스크립트에 다음과 같이 넣어 준다 tell application "Finder" if not (exists disk "Data") then mount volume "smb://서버주소/폴더이름" as user name "아이디" with password (do shell script "security find-internet-password -s 서버주소 -w") end if end tellif not은 이미 마운트 된경우를 위해서 넣고 마운트 비밀..