{"id":1951,"date":"2020-07-20T13:35:57","date_gmt":"2020-07-20T20:35:57","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=1951"},"modified":"2020-07-20T13:35:58","modified_gmt":"2020-07-20T20:35:58","slug":"how-to-batch-convert-word-documents-to-pdf-files","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=1951","title":{"rendered":"How to Batch Convert Word Documents to PDF Files"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Method 1: Using a custom VBScript<\/h3>\n\n\n\n<p>Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">'Convert .doc or .docx to .pdf files via Send To menu\nSet fso = CreateObject(\"Scripting.FileSystemObject\")\nFor i= 0 To WScript.Arguments.Count -1\n   docPath = WScript.Arguments(i)\n   docPath = fso.GetAbsolutePathName(docPath)\n   If LCase(Right(docPath, 4)) = \".doc\" Or LCase(Right(docPath, 5)) = \".docx\" Then\n      Set objWord = CreateObject(\"Word.Application\")\n      pdfPath = fso.GetParentFolderName(docPath) &amp; \"\\\" &amp; _\n\tfso.GetBaseName(docpath) &amp; \".pdf\"\n      objWord.Visible = False\n      Set objDoc = objWord.documents.open(docPath)\n      objDoc.saveas pdfPath, 17\n      objDoc.Close\n      objWord.Quit   \n   End If   \nNext\n<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Convert Word documents to PDF using VBScript<\/h4>\n\n\n\n<ol class=\"wp-block-list\"><li>Copy the above VBScript code to Notepad.<\/li><li>Save the file with a .vbs extension, and in a permanent folder. \u2014 e.g.,\u00a0<code>d:\\scripts\\doc2pdf.vbs<\/code><br><img fetchpriority=\"high\" decoding=\"async\" width=\"700\" height=\"180\" src=\"https:\/\/i1.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/convert-doc-to-pdf-vbscript.png?resize=700%2C180&amp;quality=100&amp;ssl=1\" alt=\"batch convert word documents to pdf\"><\/li><li>Close Notepad.<\/li><li>Open File Explorer and browse the following\u00a0SendTo\u00a0folder:C:\\Users\\%username%\\AppData\\Roaming\\Microsoft\\Windows\\SendTo<\/li><li>Create a shortcut to the script\u00a0<code>doc2pdf.vbs<\/code>\u00a0in the SendTo folder.<\/li><li>Prefix the shortcut target with\u00a0<code>wscript.exe<\/code>\u00a0and then followed by a space.<br><img decoding=\"async\" width=\"363\" height=\"509\" src=\"https:\/\/i1.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/word-doc-to-pdf-3.png?resize=363%2C509&amp;quality=100&amp;ssl=1\" alt=\"batch convert word documents to pdf\"><\/li><li>Optionally, assign a nice-looking icon by clicking on the Change Icon button.<\/li><li>Name the shortcut accordingly \u2014 e.g.,\u00a0<strong>Convert Word Docs to PDF<br><\/strong><\/li><li>Now, open the folder that contains the Word documents that you want to convert to PDF.<\/li><li>Select the documents, right-click on the selection, and click\u00a0<strong>Send to<\/strong>.<\/li><li>Click\u00a0<strong>Convert Word Docs to PDF<\/strong>\u00a0in the\u00a0<strong>Send to<\/strong>\u00a0menu.<br><img decoding=\"async\" width=\"772\" height=\"464\" srcset=\"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/word-doc-to-pdf-4.png?w=772&amp;quality=100&amp;ssl=1 772w, https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/word-doc-to-pdf-4.png?resize=768%2C462&amp;quality=100&amp;ssl=1 768w\" src=\"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/word-doc-to-pdf-4.png?resize=772%2C464&amp;quality=100&amp;ssl=1\" alt=\"batch convert word documents to pdf\">That\u2019s it! Your PDF files are now ready!<br><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"209\" src=\"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/word-doc-to-pdf-5.png?resize=700%2C209&amp;quality=100&amp;ssl=1\" alt=\"batch convert word documents to pdf\"><\/li><\/ol>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<h3 class=\"wp-block-heading\">Method 2: Using File Converter (Freeware)<\/h3>\n\n\n\n<p><a href=\"https:\/\/file-converter.org\/index.html\" target=\"_blank\" rel=\"noreferrer noopener\">File Converter<\/a>&nbsp;is a simple tool which allows you to convert or compress one or several files using the context menu in Explorer. This program is Freeware!<\/p>\n\n\n\n<p>After you install the software, all you need to do is select the .doc or .docx files you want to convert, click File Converter in the right-click menu and select&nbsp;<strong>To Pdf<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/file-converter-program-2.png?resize=704%2C352&amp;quality=100&amp;ssl=1\" alt=\"batch convert word documents to pdf\" class=\"wp-image-10155\"\/><\/figure>\n\n\n\n<p>It shows you the conversion status with the progress bar.<\/p>\n\n\n\n<p>Reference: <a href=\"https:\/\/www.winhelponline.com\/blog\/how-to-batch-convert-word-documents-into-pdf-files\/\">https:\/\/www.winhelponline.com\/blog\/how-to-batch-convert-word-documents-into-pdf-files\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Method 1: Using a custom VBScript Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job: &#8216;Convert .doc or .docx to .pdf files via Send To menu Set fso = CreateObject(&#8220;Scripting.FileSystemObject&#8221;) For i= 0 To WScript.Arguments.Count <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=1951\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[10,18],"tags":[301],"class_list":["post-1951","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-microsoft-office","tag-batch-convert-word-to-pdf"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Method 1: Using a custom VBScript Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job: &#039;Convert .doc or .docx to .pdf files via Send To menu Set fso = CreateObject(&quot;Scripting.FileSystemObject&quot;) For i= 0 To WScript.Arguments.Count\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"batch convert word to pdf,microsoft family,microsoft office\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=1951\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#article\",\"name\":\"How to Batch Convert Word Documents to PDF Files | Summa Lai\",\"headline\":\"How to Batch Convert Word Documents to PDF Files\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i1.wp.com\\\/www.winhelponline.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/07\\\/convert-doc-to-pdf-vbscript.png?resize=700%2C180&amp;quality=100&amp;ssl=1\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951\\\/#articleImage\"},\"datePublished\":\"2020-07-20T13:35:57-07:00\",\"dateModified\":\"2020-07-20T13:35:58-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#webpage\"},\"articleSection\":\"Microsoft Family, Microsoft Office, Batch Convert Word to PDF\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"position\":3,\"name\":\"Microsoft Office\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#listItem\",\"name\":\"How to Batch Convert Word Documents to PDF Files\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#listItem\",\"position\":4,\"name\":\"How to Batch Convert Word Documents to PDF Files\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=18#listItem\",\"name\":\"Microsoft Office\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951\",\"name\":\"How to Batch Convert Word Documents to PDF Files | Summa Lai\",\"description\":\"Method 1: Using a custom VBScript Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job: 'Convert .doc or .docx to .pdf files via Send To menu Set fso = CreateObject(\\\"Scripting.FileSystemObject\\\") For i= 0 To WScript.Arguments.Count\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=1951#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2020-07-20T13:35:57-07:00\",\"dateModified\":\"2020-07-20T13:35:58-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Batch Convert Word Documents to PDF Files | Summa Lai","description":"Method 1: Using a custom VBScript Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job: 'Convert .doc or .docx to .pdf files via Send To menu Set fso = CreateObject(\"Scripting.FileSystemObject\") For i= 0 To WScript.Arguments.Count","canonical_url":"https:\/\/SUMMALAI.COM\/?p=1951","robots":"max-image-preview:large","keywords":"batch convert word to pdf,microsoft family,microsoft office","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=1951#article","name":"How to Batch Convert Word Documents to PDF Files | Summa Lai","headline":"How to Batch Convert Word Documents to PDF Files","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i1.wp.com\/www.winhelponline.com\/blog\/wp-content\/uploads\/2019\/07\/convert-doc-to-pdf-vbscript.png?resize=700%2C180&amp;quality=100&amp;ssl=1","@id":"https:\/\/SUMMALAI.COM\/?p=1951\/#articleImage"},"datePublished":"2020-07-20T13:35:57-07:00","dateModified":"2020-07-20T13:35:58-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=1951#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=1951#webpage"},"articleSection":"Microsoft Family, Microsoft Office, Batch Convert Word to PDF"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=1951#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","position":3,"name":"Microsoft Office","item":"https:\/\/SUMMALAI.COM\/?cat=18","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=1951#listItem","name":"How to Batch Convert Word Documents to PDF Files"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=1951#listItem","position":4,"name":"How to Batch Convert Word Documents to PDF Files","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=18#listItem","name":"Microsoft Office"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=1951#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=1951#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=1951#webpage","url":"https:\/\/SUMMALAI.COM\/?p=1951","name":"How to Batch Convert Word Documents to PDF Files | Summa Lai","description":"Method 1: Using a custom VBScript Microsoft Office has automation or scripting support. Using a VBScript, you can bulk convert Word documents to PDF. Here is a simple script I wrote to do the job: 'Convert .doc or .docx to .pdf files via Send To menu Set fso = CreateObject(\"Scripting.FileSystemObject\") For i= 0 To WScript.Arguments.Count","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=1951#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2020-07-20T13:35:57-07:00","dateModified":"2020-07-20T13:35:58-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"1951","title":null,"description":"","keywords":"","keyphrases":null,"primary_term":null,"canonical_url":"","og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-20 22:14:40","updated":"2024-01-12 04:34:28","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=18\" title=\"Microsoft Office\">Microsoft Office<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Batch Convert Word Documents to PDF Files\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"Microsoft Office","link":"https:\/\/SUMMALAI.COM\/?cat=18"},{"label":"How to Batch Convert Word Documents to PDF Files","link":"https:\/\/SUMMALAI.COM\/?p=1951"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/1951","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1951"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/1951\/revisions"}],"predecessor-version":[{"id":1954,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/1951\/revisions\/1954"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1951"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1951"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1951"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}