For IE 11, see the Box Edit Internet Explorer Configuration Guide for details. For Safari, after installing Box Tools v4, navigate to Preferences Extensions in Safari's menu and check Box Tools Safari Extension: If you do not see Box Tools Safari Extension in Safari's Preferences Extensions, please close and reopen Safari, and attempt again. Download Box Edit 1.0 for Mac from our website for free. This application's bundle is identified as com.globant.Box-Edit. Our antivirus scan shows that this Mac download is malware free. This free software for Mac OS X is an intellectual property of Box. The program relates to Design & Photo Tools.
Download Box Drive for Mac Download Box Drive for Windows (64 bit) Download Box Drive for Windows (32 bit) Box Tools. Create and edit any file type, including Office, CAD, and Photoshop, directly from your web browser. Use the default application installed on your computer, knowing your files are automatically saved to Box. Lightbox Professional image management for Mac OS X To our faithful users: we’re sorry for the lack of updates, but it turns out that Aperture is really good! We’re in the process of changing our focus from standalone image management tools to tools to integrate with Aperture (and iPhoto).
Box Drive is the incredibly simple way to stream all of your files (even terabytes of data) right to your desktop. Open your Windows Explorer or Mac Finder to find every file you need. Edit like you would any local file and save it — automatically — to the cloud. And keep the enterprise-grade security protecting everything you do.
Features and Benefits
All your files, without all the hard-drive woes - With all your content streamed directly to your desktop, it’s fast and easy to access all your files in seconds — without using practically any hard drive space.
Fits the way you already work - Box Drive is natively integrated into Windows Explorer and Mac Finder, making it easy to use — and built right into the way you already work.
Easily share your workspace - Right click any folder to share instantly or open on box.com and invite your team to view, edit and upload files, turning folders into shared, collaborative workspaces.
Never lose a file again - A stolen laptop or hard drive crash doesn’t have to mean lost files. Safely store your work documents and projects in Box Drive.
Download for Windows 64-bit here
Download for Windows 32-bit here
Download for Mac here
Click here for a list of the operating systems supported.
#!/bin/bash |
# Original Script by Bryson Tyrrell | bryson.tyrrell@gmail.com | http://twitter.com/bryson3gps |
# Modified on December 16, 2015 by Gilbert Palau | Univision Desktop Engineering | gpalau@univision.net |
# |
installerOption='$4' |
if [[ ${installerOption}= edit ]];then |
echo'' |
echo'Downloading Box Edit' |
webCheckSum=$(curl -sI https://e3.boxcdn.net/box-installers/boxedit/mac/currentrelease/BoxEditInstaller.dmg | tr -d 'r'| awk '/Content-Length/ {print $2}') |
curl -fkS --progress-bar https://e3.boxcdn.net/box-installers/boxedit/mac/currentrelease/BoxEditInstaller.dmg -o /tmp/BoxEditInstaller.dmg |
fileCheckSum=$(cksum /tmp/BoxEditInstaller.dmg | awk '{print $2}') |
if [ $webCheckSum-ne$fileCheckSum ];then |
rm /tmp/BoxEditInstaller.dmg |
echo'The file did not download properly, exiting...' |
exit 101 |
fi |
echo'Mounting Box Edit DMG...' |
hdiutil attach -quiet /tmp/BoxEditInstaller.dmg |
if [ $?-ne 0 ];then |
rm /tmp/BoxEditInstaller.dmg |
echo'The Box Edit DMG failed to mount properly, exiting...' |
exit 102 |
fi |
cp -fR /Volumes/Box Tools Installer/Install Box Tools.app /tmp/ |
hdiutil eject -quiet /Volumes/Box Tools Installer/ |
rm /tmp/BoxEditInstaller.dmg |
echo'Opening the Box Edit Installer app' |
open -a /tmp/Install Box Tools.app |
osascript -e 'delay .5' -e 'tell application 'Box Edit Installer' to activate' |
elif [[ ${installerOption}= sync ]];then |
echo'' |
echo'Downloading Box Sync' |
webCheckSum=$(curl -sI https://e3.boxcdn.net/box-installers/sync/Sync+4+External/Box%20Sync%20Installer.dmg | tr -d 'r'| awk '/Content-Length/ {print $2}') |
curl -fkS --progress-bar https://e3.boxcdn.net/box-installers/sync/Sync+4+External/Box%20Sync%20Installer.dmg -o /tmp/Box%20Sync%20Installer.dmg |
fileCheckSum=$(cksum /tmp/Box%20Sync%20Installer.dmg | awk '{print $2}') |
if [ $webCheckSum-ne$fileCheckSum ];then |
rm /tmp/Box%20Sync%20Installer.dmg |
echo'The Box Sync DMG did not download properly, exiting...' |
exit 101 |
fi |
echo'Mounting Box Sync DMG...' |
hdiutil attach -quiet /tmp/Box%20Sync%20Installer.dmg |
if [ $?-ne 0 ];then |
echo'The Box Sync DMG failed to mount properly, exiting...' |
exit 103 |
fi |
cp -fR /Volumes/Box Sync Installer/Box Sync.app /tmp/ |
hdiutil eject -quiet /Volumes/Box Sync Installer/ |
rm -f /tmp/Box%20Sync%20Installer.dmg |
echo'Opening the Box Sync Installer app' |
open -a /tmp/Box Sync.app |
osascript -e 'delay .5' -e 'tell application 'Box Sync Installer' to activate' |
fi |
echo'Finished' |
exit 0 |