{"id":3890,"date":"2018-11-27T20:17:04","date_gmt":"2018-11-27T20:17:04","guid":{"rendered":"https:\/\/www.fileinspect.com\/blog\/?p=3890"},"modified":"2020-03-04T09:11:14","modified_gmt":"2020-03-04T09:11:14","slug":"fix-mapped-network-drives-problem","status":"publish","type":"post","link":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/","title":{"rendered":"How to fix mapped network drives problem on Windows 10?"},"content":{"rendered":"<p>After fixing the data deletion issue earlier this month, Microsoft rereleased the Windows 10 October Update, saying the rollout would be slower and targeted to devices that were ready.<\/p>\n<p>But, within the same week, IT professionals discovered another bug. While this is not new while upgrading Windows 10, this time the mapped network drives fail to reconnect after restarting a PC.<\/p>\n<p>So, what are the causes of network drive problems in Windows 10 October 2018 update? You\u2019ll also notice a red \u201cX\u201d on the mapped network drives in File Explorer which makes the drives appear as if they are disconnected. Users reported that trying to open a file on one drive might take you to a completely different file.<\/p>\n<p>Running the net use command displays the mapped network drives as unavailable and there\u2019s a notification displaying the \u201cCould not reconnect all network drives\u201d message.<\/p>\n<p>Acknowledging the problem, Microsoft warned that a permanent fix was not coming soon, at least not until 2019. Well, that is an awfully long time to wait and the company provided a resolution to solve the issue.<\/p>\n<p>Here is a step by step guide on how to resolve mapped network drives problem in Windows 10 October Update.<\/p>\n<h2>How to resolve Mapped Network Drives Problem on Windows 10?<\/h2>\n<p>The mapped network drives are mainly used by network administrators and if you&#8217;re an average home user, you&#8217;re not likely to notice the bug.<\/p>\n<p>To fix the issue, you can run scripts to automatically reconnect the mapped network drives when you restart and log on to your computer. You need to create two scripts, &#8211; namely the Command Prompt script and the PowerShell script.<\/p>\n<p>Additionally, reconfiguring the Group Policy settings could solve the problem, especially for those in an Active Directory domain. If you find these solutions to be too complicated, you can pause automatic updates until a stable feature update is released.<\/p>\n<h2>How to create scripts?<\/h2>\n<p>Follow these instructions to create the scripts to use with the appropriate workaround.<\/p>\n<h3>Creating a Command Prompt script<\/h3>\n<ol>\n<li>Launch Notepad.<\/li>\n<li>Copy and paste the script below on a blank page.<\/li>\n<\/ol>\n<p>PowerShell -Command &#8220;Set-ExecutionPolicy -Scope CurrentUser Unrestricted&#8221; &gt;&gt; &#8220;%TEMP%\\StartupLog.txt&#8221; 2&gt;&amp;1<\/p>\n<p>PowerShell -File &#8220;%SystemDrive%\\Scripts\\MapDrives.ps1&#8221; &gt;&gt; &#8220;%TEMP%\\StartupLog.txt&#8221; 2&gt;&amp;1<\/p>\n<ol start=\"3\">\n<li>Click the \u201cFile\u201d menu, and select Save As.<\/li>\n<li>Use MapDrives.cmd as the file name and extension.<\/li>\n<\/ol>\n<h3>Creating the PowerShell script<\/h3>\n<ol>\n<li>Launch Notepad.<\/li>\n<li>Copy and paste the script below on a blank page.<\/li>\n<\/ol>\n<p>$i=3<\/p>\n<p>while($True){<\/p>\n<p>$error.clear()<\/p>\n<p>$MappedDrives = Get-SmbMapping |where -property Status -Value Unavailable -EQ | select LocalPath,RemotePath<\/p>\n<p>foreach( $MappedDrive in $MappedDrives)<\/p>\n<p>{<\/p>\n<p>try {<\/p>\n<p>New-SmbMapping -LocalPath $MappedDrive.LocalPath -RemotePath $MappedDrive.RemotePath -Persistent $True<\/p>\n<p>} catch {<\/p>\n<p>Write-Host &#8220;There was an error mapping $MappedDrive.RemotePath to $MappedDrive.LocalPath&#8221;<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>$i = $i &#8211; 1<\/p>\n<p>if($error.Count -eq 0 -Or $i -eq 0) {break}<\/p>\n<p>Start-Sleep -Seconds 30<\/p>\n<p>}<\/p>\n<ol start=\"3\">\n<li>Click the \u201cFile\u201d menu, and select Save As.<\/li>\n<li>Use MapDrives.ps1 as the file name and extension.<\/li>\n<\/ol>\n<h2>Solution 1: Run scripts at startup<\/h2>\n<p>Use the Command Prompt and PowerShell scripts you created above to reconnect the mapped network drives.<\/p>\n<p>Note: This fix only works if the device has an established network connection at login.<\/p>\n<ol>\n<li>Launch File Explorer.<\/li>\n<li>Navigate to the following location:<\/li>\n<\/ol>\n<p>%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs\\StartUp<\/p>\n<ol start=\"3\">\n<li>Copy the MapDrives.cmd script file into the Startup folder.<\/li>\n<li>Navigate to the following location:<\/li>\n<\/ol>\n<p>%SystemDrive%\\Scripts<\/p>\n<ol start=\"5\">\n<li>Copy the MapDrives.ps1 script file into the Scripts folder.<\/li>\n<\/ol>\n<p>Important tip: If you don\u2019t see the Scripts folder, you can quickly create one. Open the C drive in File Explorer, and click on New Folder (or use Ctrl + Shift + N). Name the folder \u201cScripts\u201d<\/p>\n<ol start=\"6\">\n<li>This creates a log file (StartupLog.txt) in the %TEMP% folder showing the log information.<\/li>\n<li>Sign out of your system, and then sign back in. The mapped drives should work normally.<\/li>\n<\/ol>\n<h2>Solution 2: Run the scripts using Task Scheduler<\/h2>\n<p>Using the Task Scheduler, create a task to reconnect the mapped network drives while logging into your device.<\/p>\n<ol>\n<li>Launch File Explorer.<\/li>\n<li>Follow this path to open the Scripts folder:<\/li>\n<\/ol>\n<p>%SystemDrive%\\Scripts<\/p>\n<p>Important tip: If you don\u2019t see the Scripts folder, you can quickly create one. Open the C drive in File Explorer, and click on New Folder (or use Ctrl + Shift + N). Name the folder \u201cScripts\u201d<\/p>\n<ol start=\"3\">\n<li>Copy the MapDrives.ps1 script file into the Scripts folder.<\/li>\n<li>Click Start or press the Windows Key.<\/li>\n<li>Type the words \u2018Task Scheduler\u2019 and hit Enter.<\/li>\n<li>In Task Scheduler, go to Action &gt; Create Task.<\/li>\n<li>Make sure you&#8217;re on the General tab.<\/li>\n<li>In the Name dialog box, assign a relevant name to the task, for instance, Map Network Drives, and add a description.<\/li>\n<li>Select the &#8220;Change User or Group&#8221; button, and select a local user or group, for example, Users or Guests.<\/li>\n<li>Click OK.<\/li>\n<li>Check the box next to \u201cRun with highest privileges.\u201d<\/li>\n<li>Under the \u201cTriggers\u201d tab, select New.<\/li>\n<li>Click Begin the task &gt; At log on.<\/li>\n<li>Click OK.<\/li>\n<li>Open the \u201cActions\u201d tab, and click \u201cNew.\u201d<\/li>\n<li>Using the \u201cAction\u201d drop-down list, select \u201cStart a program.\u201d<\/li>\n<li>Type Powershell.exe in the \u201cProgram\/script box.\u201d<\/li>\n<li>In the \u201cAdd arguments (optional)\u201d field, type:<\/li>\n<\/ol>\n<p>-windowsstyle hidden -command .\\MapDrives.ps1 &gt;&gt; %TEMP%\\StartupLog.txt 2&gt;&amp;1<\/p>\n<ol start=\"19\">\n<li>In the \u201cStart in (optional)&#8221; field, type the location of the script file as follows:<\/li>\n<\/ol>\n<p>%SystemDrive%\\Scripts\\<\/p>\n<ol start=\"20\">\n<li>Click OK.<\/li>\n<li>Next, go to the \u201cConditions\u201d tab.<\/li>\n<li>Check the box next to \u201cStart only if the network connection is available.\u201d<\/li>\n<li>Select \u201cAny connection,\u201d and click OK.<\/li>\n<\/ol>\n<p>Sign out and then sign back into your account to run the mapped drives without issues.<\/p>\n<h2>Solution 3: Modify the Group Policy Settings<\/h2>\n<p>As a network administrator, you can edit the Group Policy Object (GPO) by choosing \u201cReplace\u201d in the \u201cAction\u201d drop-down list. Use the following steps:<\/p>\n<ol>\n<li>Right-click your policy object and select \u201cEdit\u201d<\/li>\n<li>Open User Configuration &gt; Preferences &gt; Windows Settings &gt; Drive Maps.<\/li>\n<li>Right-click \u201cDrive Maps.\u201d<\/li>\n<li>Select New &gt; Mapped Drive.<\/li>\n<li>Select the \u201cGeneral\u201d tab, and then click Action &gt; Replace<\/li>\n<li>This deletes the specified mapped drive, if it exists, and then recreates a new one. If the mapped drive doesn\u2019t exist, this action creates a new mapped drive when the user logs back into the account.<\/li>\n<li>Restart the machine and you should see the mapped drives in File Explorer.<\/li>\n<\/ol>\n<h2>Solution 4: Delay Windows 10 October Update<\/h2>\n<p>If you\u2019ve not yet upgraded to Windows 10 October Update, you can defer new feature updates for several months.<\/p>\n<p>Follow these steps:<\/p>\n<ol>\n<li>From the Start Menu, go to Settings.<\/li>\n<li>Scroll down to Update &amp; Security.<\/li>\n<li>In \u201cWindows Update,\u201d click \u201cAdvanced options\u201d<\/li>\n<li>Navigate to \u201cChoose when updates are installed\u201d<\/li>\n<li>Select either:<\/li>\n<\/ol>\n<ul>\n<li>Semi-Annual Channel (Targeted) to defer the new release for up to 365 days.<\/li>\n<li>Semi-Annual Channel to defer the new release for organizations.<\/li>\n<li>Specify the number of days you intend to defer the feature update for.<\/li>\n<\/ul>\n<p>This pauses installation of new updates. However, security and maintenance updates will still be delivered regularly.<\/p>\n<p>Despite the isolated glitches in the Windows 10 October Update, running an efficient system helps to avoid some common installation issues. To ensure your PC is stable and fast, <a href=\"https:\/\/www.auslogics.com\/go\/blog_boost\/en\/software\/boost-speed-hard\/downloads\/?ref=fix-mapped-network-drives-problem\">Auslogics BoostSpeed<\/a> is a reliable utility suite that explores your system to find and fix errors in your registry.<\/p>\n<p>Additionally, the software optimizes your internet settings so that you can enjoy maximum speeds. Plus, BoostSpeed analyzes your disks to remove unnecessary files hence creating more space on your computer.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After fixing the data deletion issue earlier this month, Microsoft rereleased the Windows 10 October Update, saying the rollout would be slower and targeted to devices that were ready. But, within the same week, IT professionals discovered another bug. While this is not new while upgrading Windows 10, this time the mapped network drives fail [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":3891,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[8],"tags":[69,15,61],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to fix mapped network drives problem on Windows 10? - The Official FileInspect Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ivan.diskin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#organization\",\"name\":\"Outbyte Computing Pty Ltd\",\"url\":\"https:\/\/www.fileinspect.com\/blog\/\",\"sameAs\":[\"https:\/\/www.youtube.com\/channel\/UCI6brHKmaiiUCcseAlcV3tQ\",\"https:\/\/www.facebook.com\/outbyte\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.fileinspect.com\/blog\/wp-content\/uploads\/2021\/05\/1200x630-3.jpg\",\"contentUrl\":\"https:\/\/www.fileinspect.com\/blog\/wp-content\/uploads\/2021\/05\/1200x630-3.jpg\",\"width\":1200,\"height\":630,\"caption\":\"Outbyte Computing Pty Ltd\"},\"image\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#website\",\"url\":\"https:\/\/www.fileinspect.com\/blog\/\",\"name\":\"The Official FileInspect Blog\",\"description\":\"News and Perspectives from IT Experts\",\"publisher\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.fileinspect.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\",\"url\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\",\"name\":\"How to fix mapped network drives problem on Windows 10? - The Official FileInspect Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#website\"},\"datePublished\":\"2018-11-27T20:17:04+00:00\",\"dateModified\":\"2020-03-04T09:11:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.fileinspect.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cleanup &amp; Repair\",\"item\":\"https:\/\/www.fileinspect.com\/blog\/articles\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to fix mapped network drives problem on Windows 10?\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\"},\"author\":{\"name\":\"ivan.diskin\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/adc3a27e72a3c0dc7f88886068ae7a1e\"},\"headline\":\"How to fix mapped network drives problem on Windows 10?\",\"datePublished\":\"2018-11-27T20:17:04+00:00\",\"dateModified\":\"2020-03-04T09:11:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/\"},\"wordCount\":1212,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#organization\"},\"keywords\":[\"network issues\",\"troubleshooting\",\"Windows 10\"],\"articleSection\":[\"Cleanup &amp; Repair\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#respond\"]}]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/adc3a27e72a3c0dc7f88886068ae7a1e\",\"name\":\"ivan.diskin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/54b9e8452b4d854a9ae7270f2a131047?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/54b9e8452b4d854a9ae7270f2a131047?s=96&r=g\",\"caption\":\"ivan.diskin\"},\"sameAs\":[\"https:\/\/www.fileinspect.com\/blog\/author\/ivan.diskin\/\"],\"url\":\"https:\/\/www.fileinspect.com\/blog\/author\/ivan-diskin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to fix mapped network drives problem on Windows 10? - The Official FileInspect Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/","twitter_misc":{"Written by":"ivan.diskin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/www.fileinspect.com\/blog\/#organization","name":"Outbyte Computing Pty Ltd","url":"https:\/\/www.fileinspect.com\/blog\/","sameAs":["https:\/\/www.youtube.com\/channel\/UCI6brHKmaiiUCcseAlcV3tQ","https:\/\/www.facebook.com\/outbyte"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fileinspect.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.fileinspect.com\/blog\/wp-content\/uploads\/2021\/05\/1200x630-3.jpg","contentUrl":"https:\/\/www.fileinspect.com\/blog\/wp-content\/uploads\/2021\/05\/1200x630-3.jpg","width":1200,"height":630,"caption":"Outbyte Computing Pty Ltd"},"image":{"@id":"https:\/\/www.fileinspect.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"WebSite","@id":"https:\/\/www.fileinspect.com\/blog\/#website","url":"https:\/\/www.fileinspect.com\/blog\/","name":"The Official FileInspect Blog","description":"News and Perspectives from IT Experts","publisher":{"@id":"https:\/\/www.fileinspect.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.fileinspect.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/","url":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/","name":"How to fix mapped network drives problem on Windows 10? - The Official FileInspect Blog","isPartOf":{"@id":"https:\/\/www.fileinspect.com\/blog\/#website"},"datePublished":"2018-11-27T20:17:04+00:00","dateModified":"2020-03-04T09:11:14+00:00","breadcrumb":{"@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.fileinspect.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Cleanup &amp; Repair","item":"https:\/\/www.fileinspect.com\/blog\/articles\/"},{"@type":"ListItem","position":3,"name":"How to fix mapped network drives problem on Windows 10?"}]},{"@type":"Article","@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#article","isPartOf":{"@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/"},"author":{"name":"ivan.diskin","@id":"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/adc3a27e72a3c0dc7f88886068ae7a1e"},"headline":"How to fix mapped network drives problem on Windows 10?","datePublished":"2018-11-27T20:17:04+00:00","dateModified":"2020-03-04T09:11:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/"},"wordCount":1212,"commentCount":0,"publisher":{"@id":"https:\/\/www.fileinspect.com\/blog\/#organization"},"keywords":["network issues","troubleshooting","Windows 10"],"articleSection":["Cleanup &amp; Repair"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.fileinspect.com\/blog\/fix-mapped-network-drives-problem\/#respond"]}]},{"@type":"Person","@id":"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/adc3a27e72a3c0dc7f88886068ae7a1e","name":"ivan.diskin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.fileinspect.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/54b9e8452b4d854a9ae7270f2a131047?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/54b9e8452b4d854a9ae7270f2a131047?s=96&r=g","caption":"ivan.diskin"},"sameAs":["https:\/\/www.fileinspect.com\/blog\/author\/ivan.diskin\/"],"url":"https:\/\/www.fileinspect.com\/blog\/author\/ivan-diskin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/posts\/3890"}],"collection":[{"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/comments?post=3890"}],"version-history":[{"count":2,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/posts\/3890\/revisions"}],"predecessor-version":[{"id":5509,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/posts\/3890\/revisions\/5509"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/media\/3891"}],"wp:attachment":[{"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/media?parent=3890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/categories?post=3890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.fileinspect.com\/blog\/wp-json\/wp\/v2\/tags?post=3890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}