{"id":76934,"date":"2023-08-25T12:49:21","date_gmt":"2023-08-25T10:49:21","guid":{"rendered":"https:\/\/jotelulu.com\/en-gb\/blog\/"},"modified":"2025-12-12T15:12:05","modified_gmt":"2025-12-12T14:12:05","slug":"map-network-drive-powershell","status":"publish","type":"post","link":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/","title":{"rendered":"How to map a network drive using a PowerShell script"},"content":{"rendered":"<p>Join us in this short article where we&#8217;ll cover <strong>how to map a network drive using a PowerShell script<\/strong>\u2014specifically a personal drive for each user.<\/p>\n<h2><strong>How to map a network drive using a PowerShell script?<\/strong><\/h2>\n<p>The script we&#8217;ll build is quite simple, but as always, the goal is to provide you with the foundation to create customized scripts tailored to your specific needs.<\/p>\n<p>In this case, we&#8217;ll use the <strong><code>New-PSDrive<\/code><\/strong> cmdlet to map a new drive that has been previously shared. Since we&#8217;re mapping personal drives for each user, we&#8217;ll pass the <strong>username as an environment variable<\/strong>.<\/p>\n<p>By using the environment variable, the system automatically detects <strong>who&#8217;s logged in<\/strong> and loads the corresponding resource. Any authenticated user with an assigned folder will gain access to their personal drive.<\/p>\n<p><strong>NOTE:<\/strong> <em>As mentioned, we&#8217;ll create a shared resource with individual user folders. Users without a dedicated folder will receive an execution error when running the script, as no resource is available for them.<\/em><\/p>\n<p>The basic <strong>command structure<\/strong> looks like this:<\/p>\n<pre><code>New-PSDrive -Name \"&lt;DriveName&gt;\" -PSProvider FileSystem -Root \"&lt;SharedPath&gt;\" -Persist<\/code><\/pre>\n<p>Where:<\/p>\n<ul>\n<li><strong><code>-Name \"&lt;DriveName&gt;\"<\/code><\/strong>: Specifies the <strong>drive letter<\/strong> for the mapped resource. We&#8217;ll use &#8220;X&#8221;, but &#8220;P&#8221; for &#8220;Personal&#8221; is a good practice.<\/li>\n<li><strong><code>-PSProvider FileSystem<\/code><\/strong>: Indicates we&#8217;re mapping a <strong>file system resource<\/strong>.<\/li>\n<li><strong><code>-Root \"&lt;SharedPath&gt;\"<\/code><\/strong>: The <strong>shared resource path<\/strong>, which must include the username at the end for automatic substitution.<\/li>\n<li><strong><code>-Persist<\/code><\/strong>: Makes the drive <strong>persistent across reboots<\/strong>.<\/li>\n<\/ul>\n<p>An example shared path might be:<\/p>\n<pre><code>\\\\SRV-OLIN02-031\\SMB2022Nacho\\administrator\\<\/code><\/pre>\n<p>Putting it together:<\/p>\n<pre><code>New-PSDrive -Name \"x\" -PSProvider FileSystem -Root \"\\\\SRV-OLIN02-031\\SMB2022Nacho\\administrator\\\" -Persist<\/code><\/pre>\n<h2><strong>Improving the PowerShell script for personal drive mapping<\/strong><\/h2>\n<p>The problem with this approach is that it&#8217;s <strong>hardcoded for the &#8220;administrator&#8221; user<\/strong>\u2014you&#8217;d need to manually change the path for each user.<\/p>\n<p>To fix this, use <strong>environment variables<\/strong> like this:<\/p>\n<pre><code>$VARNAME = $env:UserName\r\nNew-PSDrive -Name \"x\" -PSProvider FileSystem -Root \"\\\\SRV-OLIN02-031\\SMB2022Nacho\\$VARNAME\" -Persist<\/code><\/pre>\n<p>Key changes:<\/p>\n<ul>\n<li><strong>First change:<\/strong> <code>$VARNAME = $env:UserName<\/code> captures the current username.<\/li>\n<li><strong>Second change:<\/strong> The root path now includes the variable (<code>\\\\SRV-OLIN02-031\\SMB2022Nacho\\$VARNAME<\/code>).<\/li>\n<\/ul>\n<p>For even better maintainability, add a path variable:<\/p>\n<pre><code>$UNITNAME = \"\\\\SRV-OLIN02-031\\SMB2022Nacho\\$VARNAME\"\r\n$VARNAME = $env:UserName\r\nNew-PSDrive -Name \"x\" -PSProvider FileSystem -Root \"$UNITNAME\" -Persist<\/code><\/pre>\n<p>This third improvement creates a <strong>separate path variable<\/strong>, making future modifications much easier without touching the core <code>New-PSDrive<\/code> command.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-21271\" src=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2023\/08\/Imagen.-Ejecucion-del-script-PowerShell-para-el-mapeo-de-unidades-personales-en-ISE-1.jpg\" alt=\"PowerShell script execution for personal drive mapping in ISE\" width=\"1937\" height=\"1097\" \/><\/p>\n<p>At this point, you have a solid, working script\u2014or you can continue developing it with additional features and error handling.<\/p>\n<h2><strong>Conclusions<\/strong><\/h2>\n<p>As you can see in this article about <strong>how to map a network drive using a PowerShell script<\/strong>, we&#8217;ve created a simple yet powerful piece of code that connects to a shared resource and automatically maps the correct personal folder based on the logged-in username.<\/p>\n<p>The user &#8220;jioller&#8221; will connect to a different location than &#8220;nacho&#8221;\u2014the script handles this dynamically. As usual, this tutorial provides the foundation, but the customization possibilities are endless.<\/p>\n<p>The script uses basic PowerShell cmdlets and should work on <strong>all current Windows systems<\/strong>. If you encounter any issues, feel free to contact us\u2014we&#8217;re happy to help troubleshoot.<\/p>\n<p>Want to learn more PowerShell scripts and tips? Check out our <a href=\"https:\/\/jotelulu.com\/en-gb\/blog\/\" target=\"_blank\" rel=\"noopener\">blog<\/a>.<\/p>\n<p><strong>Thanks for reading!<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Join us in this short article where we&#8217;ll cover how to map a network drive using a PowerShell script\u2014specifically a personal drive for each user. How to map a network drive using a PowerShell script? The script we&#8217;ll build is quite simple, but as always, the goal is to provide you with the foundation to [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":76937,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[287],"tags":[],"class_list":["post-76934","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sysadmin-en-gb"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to map a network drive using a PowerShell script - Jotelulu<\/title>\n<meta name=\"description\" content=\"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to map a network drive using a PowerShell script - Jotelulu\" \/>\n<meta property=\"og:description\" content=\"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Jotelulu\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-25T10:49:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-12T14:12:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"1549\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Juan Ignacio Oller Aznar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Juan Ignacio Oller Aznar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/\"},\"author\":{\"name\":\"Juan Ignacio Oller Aznar\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"headline\":\"How to map a network drive using a PowerShell script\",\"datePublished\":\"2023-08-25T10:49:21+00:00\",\"dateModified\":\"2025-12-12T14:12:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/\"},\"wordCount\":470,\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg\",\"articleSection\":[\"Sysadmin\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/\",\"name\":\"How to map a network drive using a PowerShell script - Jotelulu\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg\",\"datePublished\":\"2023-08-25T10:49:21+00:00\",\"dateModified\":\"2025-12-12T14:12:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\"},\"description\":\"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#primaryimage\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg\",\"contentUrl\":\"https:\\\/\\\/jotelulu.com\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg\",\"width\":2560,\"height\":1549},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/blog\\\/map-network-drive-powershell\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to map a network drive using a PowerShell script\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#website\",\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/\",\"name\":\"Jotelulu\",\"description\":\"Cloud Paradise for Tech Companies\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/#\\\/schema\\\/person\\\/2ae97818cae086c48f108cd74234aca9\",\"name\":\"Juan Ignacio Oller Aznar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g\",\"caption\":\"Juan Ignacio Oller Aznar\"},\"url\":\"https:\\\/\\\/jotelulu.com\\\/en-gb\\\/author\\\/juanignaciooller\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to map a network drive using a PowerShell script - Jotelulu","description":"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.","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:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/","og_locale":"en_GB","og_type":"article","og_title":"How to map a network drive using a PowerShell script - Jotelulu","og_description":"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.","og_url":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/","og_site_name":"Jotelulu","article_published_time":"2023-08-25T10:49:21+00:00","article_modified_time":"2025-12-12T14:12:05+00:00","og_image":[{"width":2560,"height":1549,"url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg","type":"image\/jpeg"}],"author":"Juan Ignacio Oller Aznar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Juan Ignacio Oller Aznar","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#article","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/"},"author":{"name":"Juan Ignacio Oller Aznar","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"headline":"How to map a network drive using a PowerShell script","datePublished":"2023-08-25T10:49:21+00:00","dateModified":"2025-12-12T14:12:05+00:00","mainEntityOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/"},"wordCount":470,"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg","articleSection":["Sysadmin"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/","url":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/","name":"How to map a network drive using a PowerShell script - Jotelulu","isPartOf":{"@id":"https:\/\/jotelulu.com\/en-gb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#primaryimage"},"image":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg","datePublished":"2023-08-25T10:49:21+00:00","dateModified":"2025-12-12T14:12:05+00:00","author":{"@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9"},"description":"Learn how to map personal network drives using PowerShell and New-PSDrive. Automate drive mapping with username variables for any authenticated user. Step-by-step guide.","breadcrumb":{"@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#primaryimage","url":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg","contentUrl":"https:\/\/jotelulu.com\/wp-content\/uploads\/2025\/12\/Mapear-unidad-de-red-script-powershell-scaled-2.jpg","width":2560,"height":1549},{"@type":"BreadcrumbList","@id":"https:\/\/jotelulu.com\/en-gb\/blog\/map-network-drive-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/jotelulu.com\/en-gb\/"},{"@type":"ListItem","position":2,"name":"How to map a network drive using a PowerShell script"}]},{"@type":"WebSite","@id":"https:\/\/jotelulu.com\/en-gb\/#website","url":"https:\/\/jotelulu.com\/en-gb\/","name":"Jotelulu","description":"Cloud Paradise for Tech Companies","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jotelulu.com\/en-gb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/jotelulu.com\/en-gb\/#\/schema\/person\/2ae97818cae086c48f108cd74234aca9","name":"Juan Ignacio Oller Aznar","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/87efd80399b2c40a1d78dd5cee4e788d3f6c29d33e3b67bcfbc6abbf91d0fdcf?s=96&d=mm&r=g","caption":"Juan Ignacio Oller Aznar"},"url":"https:\/\/jotelulu.com\/en-gb\/author\/juanignaciooller\/"}]}},"_links":{"self":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76934","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/comments?post=76934"}],"version-history":[{"count":2,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76934\/revisions"}],"predecessor-version":[{"id":77044,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/posts\/76934\/revisions\/77044"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media\/76937"}],"wp:attachment":[{"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/media?parent=76934"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/categories?post=76934"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jotelulu.com\/en-gb\/wp-json\/wp\/v2\/tags?post=76934"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}