-
-
Notifications
You must be signed in to change notification settings - Fork 54
OneDrive Conversion
Toby Allen edited this page Jan 12, 2020
·
5 revisions
If you need to upgrade a bunch of files to work without conversion on OneDrive /Office365 / Word 20XX then you can use DocTo.
If you run docto on a directory to the latest version you can upload to OneDrive and then you can open your Word files in OneDrive and edit without conversion. You need to use the following additional parameters to your command line
-T wdFormatDocumentDefault -C 65535
these will make your outputted .docx
files compatible with the latest version of word.
Use this command line.
docto -f "C:\Folder\With\OldFiles" -O "C:\Folder\For\NewFiles" -T wdFormatDocumentDefault -C 65535
The important part is the -C 65535
which ensures that the output doc is compatible with the latest version of word.
See this Stackexchange question