1

I want to refresh desktop icon of my application without relaunch finder or dock. my motive is refresh desktop icon without realize refresh to user

S. S
  • 169
  • 3
  • 16

1 Answers1

0

You can try

tell application "Finder"
    tell desktop
        update every item with necessity
    end tell
end tell

Refresh apple script does not work on 10.8 and above. Only way to refresh desktop is to restart finder.

Parag Bafna
  • 22,812
  • 8
  • 71
  • 144
  • it refresh finder, i want something which refresh desktop icon without realize refresh , when finder is refreshed it clearly visible by user – S. S Oct 28 '16 at 11:16