1 tell application "Finder"
   2   tell disk "DEPLOY_ACTUAL_VOLUME_NAME"
   3     open
   4     set current view of container window to icon view
   5     set toolbar visible of container window to false
   6     set statusbar visible of container window to false
   7 
   8     set the bounds of container window to {400, 100, 917, 370}
   9 
  10     set theViewOptions to the icon view options of container window
  11     set arrangement of theViewOptions to not arranged
  12     set icon size of theViewOptions to 128
  13   end tell
  14 end tell
  15