{"id":7439,"date":"2023-11-14T02:36:18","date_gmt":"2023-11-14T02:36:18","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=7439"},"modified":"2024-07-23T08:02:39","modified_gmt":"2024-07-23T08:02:39","slug":"powershell-to-force-remove-webroot","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot","title":{"rendered":"Powershell to force remove webroot"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\"> If you boot into Safe mode or boot the disk into another device you can delete the below folders<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&#8220;%ProgramData%\\WRData&#8221;,<br>    &#8220;%ProgramData%\\WRCore&#8221;,<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Which will let you run the below to remove it ( you will need to reboot again ) <\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall.<\/li>\n\n\n\n<li>For 64 bit versions of Windows: C:\\Program Files (x86)\\Webroot\\WRSA.exe -uninstall.<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\"># Removes Webroot SecureAnywhere by force\n# Run the script once, reboot, then run again\n\n# Webroot SecureAnywhere registry keys\n$RegKeys = @(\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\WRUNINST\",\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\WRUNINST\",\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\WRData\",\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\WRCore\",\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\WRMIDData\",\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\webroot\",\n    \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WRUNINST\",\n    \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\WRUNINST\",\n    \"HKLM:\\SOFTWARE\\WRData\",\n    \"HKLM:\\SOFTWARE\\WRMIDData\",\n    \"HKLM:\\SOFTWARE\\WRCore\",\n    \"HKLM:\\SOFTWARE\\webroot\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\WRSVC\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\WRkrn\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\WRBoot\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\WRCore\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\WRCoreService\",\n    \"HKLM:\\SYSTEM\\ControlSet001\\services\\wrUrlFlt\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\WRSVC\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\WRkrn\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\WRBoot\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\WRCore\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\WRCoreService\",\n    \"HKLM:\\SYSTEM\\ControlSet002\\services\\wrUrlFlt\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\WRSVC\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\WRkrn\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\WRBoot\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\WRCore\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\WRCoreService\",\n    \"HKLM:\\SYSTEM\\CurrentControlSet\\services\\wrUrlFlt\"\n)\n\n# Webroot SecureAnywhere startup registry item paths\n$RegStartupPaths = @(\n    \"HKLM:\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run\",\n    \"HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run\"\n)\n\n# Webroot SecureAnywhere folders\n$Folders = @(\n    \"%ProgramData%\\WRData\",\n    \"%ProgramData%\\WRCore\",\n    \"%ProgramFiles%\\Webroot\",\n    \"%ProgramFiles(x86)%\\Webroot\",\n    \"%ProgramData%\\Microsoft\\Windows\\Start Menu\\Programs\\Webroot SecureAnywhere\"\n)\n\n# Try to Uninstall - https:\/\/community.webroot.com\/webroot-secureanywhere-antivirus-12\/pc-uninstallation-option-missing-from-control-panel-34688\nStart-Process -FilePath \"${Env:ProgramFiles(x86)}\\Webroot\\WRSA.exe\" -ArgumentList \"-uninstall\" -Wait -ErrorAction SilentlyContinue\nStart-Process -FilePath \"${Env:ProgramFiles}\\Webroot\\WRSA.exe\" -ArgumentList \"-uninstall\" -Wait -ErrorAction SilentlyContinue\n\n# Stop &amp; Delete Webroot SecureAnywhere service\nsc.exe stop WRSVC\nsc.exe stop WRCoreService\nsc.exe stop WRSkyClient\nsc.exe delete WRSVC\nsc.exe delete WRCoreService\nsc.exe delete WRSkyClient\n\n# Stop Webroot SecureAnywhere process\nStop-Process -Name \"WRSA\" -Force\n\n# Remove Webroot SecureAnywhere registry keys\nForEach ($RegKey in $RegKeys) {\n    Write-Host \"Removing $RegKey\"\n    Remove-Item -Path $RegKey -Force -Recurse -ErrorAction SilentlyContinue\n}\n\n# Remove Webroot SecureAnywhere registry startup items\nForEach ($RegStartupPath in $RegStartupPaths) {\n    Write-Host \"Removing WRSVC from $RegStartupPath\"\n    Remove-ItemProperty -Path $RegStartupPath -Name \"WRSVC\"\n}\n\n# Remove Webroot SecureAnywhere folders\nForEach ($Folder in $Folders) {\n    Write-Host \"Removing $Folder\"\n    Remove-Item -Path \"$Folder\" -Force -Recurse -ErrorAction SilentlyContinue\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>If you boot into Safe mode or boot the disk into another device you can delete the below folders &#8220;%ProgramData%\\WRData&#8221;, &#8220;%ProgramData%\\WRCore&#8221;, Which will let you run the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-7439","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"If you boot into Safe mode or boot the disk into another device you can delete the below folders &quot;%ProgramData%\\WRData&quot;, &quot;%ProgramData%\\WRCore&quot;, Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Powershell to force remove webroot | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"If you boot into Safe mode or boot the disk into another device you can delete the below folders &quot;%ProgramData%\\WRData&quot;, &quot;%ProgramData%\\WRCore&quot;, Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-11-14T02:36:18+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2024-07-23T08:02:39+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Powershell to force remove webroot | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If you boot into Safe mode or boot the disk into another device you can delete the below folders &quot;%ProgramData%\\WRData&quot;, &quot;%ProgramData%\\WRCore&quot;, Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#article\",\"name\":\"Powershell to force remove webroot | Welcome to Pariswells.com\",\"headline\":\"Powershell to force remove webroot\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2023-11-14T02:36:18+00:00\",\"dateModified\":\"2024-07-23T08:02:39+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#webpage\"},\"articleSection\":\"Research\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"position\":2,\"name\":\"Research\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#listItem\",\"name\":\"Powershell to force remove webroot\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#listItem\",\"position\":3,\"name\":\"Powershell to force remove webroot\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot\",\"name\":\"Powershell to force remove webroot | Welcome to Pariswells.com\",\"description\":\"If you boot into Safe mode or boot the disk into another device you can delete the below folders \\\"%ProgramData%\\\\WRData\\\", \\\"%ProgramData%\\\\WRCore\\\", Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\\\Program Files\\\\Webroot\\\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\\\Program\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/powershell-to-force-remove-webroot#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2023-11-14T02:36:18+00:00\",\"dateModified\":\"2024-07-23T08:02:39+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Powershell to force remove webroot | Welcome to Pariswells.com","description":"If you boot into Safe mode or boot the disk into another device you can delete the below folders \"%ProgramData%\\WRData\", \"%ProgramData%\\WRCore\", Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program","canonical_url":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#article","name":"Powershell to force remove webroot | Welcome to Pariswells.com","headline":"Powershell to force remove webroot","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2023-11-14T02:36:18+00:00","dateModified":"2024-07-23T08:02:39+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#webpage"},"articleSection":"Research"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","position":2,"name":"Research","item":"https:\/\/pariswells.com\/blog\/category\/research","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#listItem","name":"Powershell to force remove webroot"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#listItem","position":3,"name":"Powershell to force remove webroot","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#webpage","url":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot","name":"Powershell to force remove webroot | Welcome to Pariswells.com","description":"If you boot into Safe mode or boot the disk into another device you can delete the below folders \"%ProgramData%\\WRData\", \"%ProgramData%\\WRCore\", Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2023-11-14T02:36:18+00:00","dateModified":"2024-07-23T08:02:39+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"Powershell to force remove webroot | Welcome to Pariswells.com","og:description":"If you boot into Safe mode or boot the disk into another device you can delete the below folders &quot;%ProgramData%\\WRData&quot;, &quot;%ProgramData%\\WRCore&quot;, Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program","og:url":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot","article:published_time":"2023-11-14T02:36:18+00:00","article:modified_time":"2024-07-23T08:02:39+00:00","twitter:card":"summary","twitter:title":"Powershell to force remove webroot | Welcome to Pariswells.com","twitter:description":"If you boot into Safe mode or boot the disk into another device you can delete the below folders &quot;%ProgramData%\\WRData&quot;, &quot;%ProgramData%\\WRCore&quot;, Which will let you run the below to remove it ( you will need to reboot again ) For 32 bit versions of Windows: C:\\Program Files\\Webroot\\WRSA.exe -uninstall. For 64 bit versions of Windows: C:\\Program"},"aioseo_meta_data":{"post_id":"7439","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"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":"","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":"default","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":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2023-11-14 02:35:54","updated":"2024-07-23 08:06:30","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" 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:\/\/pariswells.com\/blog\/category\/research\" title=\"Research\">Research<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPowershell to force remove webroot\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Research","link":"https:\/\/pariswells.com\/blog\/category\/research"},{"label":"Powershell to force remove webroot","link":"https:\/\/pariswells.com\/blog\/research\/powershell-to-force-remove-webroot"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7439","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=7439"}],"version-history":[{"count":2,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7439\/revisions"}],"predecessor-version":[{"id":8160,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7439\/revisions\/8160"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=7439"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=7439"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=7439"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}