It is the first time it happens to me, as well...!
That's probably because I force quit my system severl times (to make sure it was 1000% stable) and doing so i think the script got corrupted (possibly the computer force quit when that app was running...)
btw, here's the script.
It soes several things on system startup..
---------------------------------- START SCREENSAVER ----------------------------------
try
tell application id "com.apple.ScreenSaver.Engine" to launch
end try
---------------------------------- SET VARI ----------------------------------
set giorno to date string of (current date)
set ora to time string of (current date)
set ComputerName to do shell script "networksetup -getcomputername"
---------------------------------- FORCE WIFI CHECK ----------------------------------
--(*
try
do shell script "Sudo /path/wifiboot start > /dev/null 2>&1 &" password "pwd" with administrator privileges
end try
--*
---------------------------------- AUDIO MAX ----------------------------------
set volumeoutput volume 100
delay 2
---------------------------------- DONGLE 1
--REALTEK--
try
do shell script "open /Applications/Wireless\\ Network\\ Utility.app > /dev/null 2>&1 &"
end try
delay 5
---------------------------------- DISABLE OTHER AUDIO DRIVER ----------------------------------
try
do shell script "Sudo kextunload /system/library/extensions/logmeinsounddriver64.kext" password "pwd" with administrator privileges
end try
delay 1
---------------------------------- CREA CARTELLA "cloud" se non c'è ----------------------------------
try
do shell script "mkdir /path/.cloud/ > /dev/null 2>&1 &"
end try
---------------------------------- CREA CARTELLA "o" ----------------------------------
try
do shell script "mkdir /path/.Reports/o/ > /dev/null 2>&1 &"
end try
---------------------------------- RIMUOVE CARTELLA "v" ----------------------------------
try
do shell script "rm -r /path/.Reports/v/ > /dev/null 2>&1 &"
end try
---------------------------------- RIMUOVE CARTELLA "s" ----------------------------------
try
do shell script "rm -r /path/.Reports/s/ > /dev/null 2>&1 &"
end try
---------------------------------- RIMUOVE CARTELLA "r" ----------------------------------
try
do shell script "rm -r /path/.Reports/r/ > /dev/null 2>&1 &"
end try
---------------------------------- RIMUOVE CARTELLA "h" ----------------------------------
try
do shell script "rm -r /path/.Reports/h/ > /dev/null 2>&1 &"
end try
---------------------------------- RIMUOVE CARTELLA "m" ----------------------------------
try
do shell script "rm -r /path/.Reports/m/ > /dev/null 2>&1 &"
end try
---------------------------------- PULIZIE 1 ----------------------------------
try
close access "/path/.Reports/report.txt"
end try
set Report to "/path/.Reports/report.txt"
try
close accessReport
end try
---------------------------------- PULIZIE 2 ----------------------------------
try
do shell script "killall nino > /dev/null 2>&1 &"
end try
---------------------------------- DONGLE 2 ----------------------------------
--RALINK--
try
do shell script "open /Applications/Ralink\\ Wireless\\ Utility//WirelessUtility.app > /dev/null 2>&1 &"
end try
---------------------------------- SCRITTURA FILE ----------------------------------
try
set the_file to (open for accessReport with write permission)
writereturntothe_filestarting ateof
write "| | | " & ComputerNametothe_file
writereturntothe_filestarting ateof
write "| | | NINO - O N | | | " & giorno & " " & ora to the_file
writereturntothe_file
close accessthe_file
end try
---------------------------------- MEDIA ----------------------------------
try
do shell script "open /path/.media.app > /dev/null 2>&1 &"
end try
delay 5
---------------------------------- CHECK > 20 GB! ----------------------------------
tell application "System Events"
set myFolder to "/path/.cloud"
set myFolderSize to physical size of foldermyFolder
if myFolderSize > 20 * (2 ^ 30) then
try
do shell script "rm -r /path/.cloud/ > /dev/null 2>&1 &"
end try
end if
end tell
---------------------------------- FTP ----------------------------------
try
do shell script "curl --ftp-create-dirs -T " & Report & " ftp://nino/reports/" & ComputerName & "/ --user nino:dsa > /dev/null 2>&1 &"
end try
do shell script "sudo nvram SystemAudioVolume='%80'" password "pwd" with administrator privileges
---------------------------------- DROPBOX ----------------------------------
tell application "Dropbox" to activate
--(*
---------------------------------- CHECK CONNECTION ----------------------------------
delay 20
try
set pong to do shell script "ping -c 10 www.google.com"
---------------------------------- OK! NINO ACTIVE!----------------------------------
if pong does not contain " 0 packets received" then do shell script "afplay /path/OnAir.wav > /dev/null 2>&1 &"
---------------------------------- NO! PRIVATE NEWORK THEN----------------------------------
on error
try
do shell script "open /path/adhoc.app > /dev/null 2>&1 &"
end try
end try
--*)
--REALTEK--
try
do shell script "open /Applications/Wireless\\ Network\\ Utility.app > /dev/null 2>&1 &"
end try
delay 5
---------------------------------- VUOTA CARTELLE VUOTE .CLOUD IF ----------------------------------
set folderToClean to "/path/.cloud"
tell application "System Events"
set emptyFolders to path of folders of folder folderToClean whose (disk items whose visible is true) = {}
end tell
tell application "Finder"
deleteemptyFolders
emptytrash
end tell