Adding Cloud storage thingies to Microsoft Office

So what if I want to share a document with someone via DropBox …

http://www.hongkiat.com/blog/dropbox-google-drive-to-office-2013/

 

So I’m on a Windows 8.1 and had to chance the scripts a little version 6.2 -> 6.3

Changed:

ver | findstr /i "6\.2\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_Win8
goto warn_and_exit

To:

ver | findstr /i "6\.2\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_Win8
ver | findstr /i "6\.3\." > nul
IF %ERRORLEVEL% EQU 0 goto ver_Win8
goto warn_and_exit

 

Also it refers to local disk and not the actual cloud storage, so you need to have a
sync service installed for it to work …

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.