{"id":41064,"date":"2023-01-12T17:17:45","date_gmt":"2023-01-12T17:17:45","guid":{"rendered":"https:\/\/www.n-able.com\/?p=41064"},"modified":"2023-01-19T17:19:31","modified_gmt":"2023-01-19T17:19:31","slug":"how-to-remove-bloatware-from-your-customers-pcs","status":"publish","type":"post","link":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs","title":{"rendered":"How to remove bloatware from your customers\u2019 PCs"},"content":{"rendered":"<p class=\"p4\"><span class=\"s1\">I recently delivered an N&#8209;able N&#8209;central Bootcamp called <a href=\"https:\/\/www.youtube.com\/watch?v=hA-0h1-Rb_s\" target=\"_blank\" rel=\"noopener\"><span class=\"s2\">15 things you can (and should) automate<\/span><\/a>, shortly after that I also delivered another bootcamp called <a href=\"https:\/\/www.youtube.com\/watch?v=kuhOIYAhy9M\" target=\"_blank\" rel=\"noopener\"><span class=\"s2\">15 MORE things you can (and should) automate<\/span><\/a><\/span><span class=\"s3\">.<\/span><span class=\"s1\"> After doing a little prep for the second, this reminded me of a particular automation policy we have in the <a href=\"https:\/\/www.n-able.com\/automation-cookbook\" target=\"_blank\" rel=\"noopener\"><span class=\"s2\">Automation Cookbook<\/span><\/a> that allows you to remove Bloatware from your customers\u2019\/end users\u2019 computers.<\/span><\/p>\n<h2 class=\"p5\"><span class=\"s1\">What is bloatware? <\/span><\/h2>\n<p class=\"p5\"><span class=\"s1\">First of all let\u2019s define exactly what bloatware is. Oxford Dictionary defines it as \u201c<\/span><span class=\"s4\">software whose\u00a0usefulness\u00a0is reduced because of the excessive disk space and memory it requires\u201d and \u201cunwanted software included on a new computer or mobile device by the manufacturer\u201d. Often these pieces of software are hidden on your device and come <\/span><span class=\"s1\">preinstalled by the manufacturer, distributor, or carrier\u2014examples include things like health apps and trial versions of software. At best they can be annoying as they can slow down your device, at worst they can actually be harmful as they can leave you exposed to malware or spyware.<\/span><\/p>\n<p class=\"p2\"><span class=\"s1\">As MSPs and Internal IT Departments we need to drastically reduce the attack surface of our customer or employee machines. Having unnecessary software like this\u2014whether they\u2019re games or tools\u2014can increase the company\u2019s attack surface and can pose as serious risk to the business.<\/span><\/p>\n<h2 class=\"p6\"><span class=\"s1\">Five reason to remove bloatware<\/span><\/h2>\n<p class=\"p7\"><span class=\"s1\">This is far from a definitive list, but five key reasons to remove bloatware include:<\/span><\/p>\n<ol>\n<li class=\"p8\"><span class=\"s1\">Patching applications is already difficult enough without having applications that no one needs installed as well. The good news is <a href=\"https:\/\/www.n-able.com\/products\/n-central-rmm\" target=\"_blank\" rel=\"noopener\"><span class=\"s2\">N&#8209;central<\/span><\/a> has close to 100 applications that can be patched using the <a href=\"https:\/\/www.n-able.com\/features\/patch-management\" target=\"_blank\" rel=\"noopener\">N&#8209;central Third-Party Patch<\/a> engine.<\/span><\/li>\n<li class=\"p8\"><span class=\"s1\">Patching through the Microsoft store or through vendor automatic updates is needless resource allocating for zero net benefit to the business or the end user.<\/span><\/li>\n<li class=\"p8\"><span class=\"s1\">These applications discreetly run in the background using up storage and memory.<\/span><\/li>\n<li class=\"p8\"><span class=\"s1\">They can significantly reduce battery life\u2014removing bloatware is good for the environment!<\/span><\/li>\n<li class=\"p9\"><span class=\"s1\">They can create an unwanted attack surface if they aren\u2019t updated or maintained.<\/span><span class=\"s1\">\u00a0<\/span><\/li>\n<\/ol>\n<h2 class=\"p6\"><span class=\"s1\">Identifying and removing bloatware from your system<\/span><\/h2>\n<p class=\"p7\"><span class=\"s1\">In this blog I\u2019m going to show you four tips you can use to identify and remove bloatware from your system.<\/span><\/p>\n<h3 class=\"p10\"><span class=\"s1\">1. Using PowerShell to identify bloatware<\/span><\/h3>\n<p class=\"p11\"><span class=\"s1\">Here\u2019s a PowerShell command you can use to see all of the apps installed on the computer<\/span><\/p>\n<pre>Get-AppxPackage -AllUsers |Format-Table<\/pre>\n<p class=\"p11\"><span class=\"s1\">Alternatively, you can also run DISM to get a much better formatted list:<\/span><\/p>\n<pre>DISM \/Online \/<span class=\"s1\">Get-ProvisionedAppxPackages<\/span><span class=\"s6\"> | select-string Packagename<\/span><\/pre>\n<h3 class=\"p10\"><span class=\"s1\">2. Hiding Bloatware using \u201cRemove-AppxPackage\u201d<\/span><\/h3>\n<p class=\"p2\"><span class=\"s1\">Once you have the list of bloatware apps on your system you can disable a package and remove it from the UI by running the following command:<\/span><\/p>\n<pre>Get-AppxPackage<span class=\"s6\"> *AppName* | Remove-AppxPackage<\/span><\/pre>\n<p class=\"p2\"><span class=\"s1\">Here are some of the most common packages that people remove from their systems. Simply replace *AppName* with the names below: <\/span><\/p>\n<table class=\"t1\" width=\"388.9\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td width=\"40%\"><strong>Name<\/strong><\/td>\n<td width=\"30%\"><strong>Appname<\/strong><\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">3D Builder<\/td>\n<td class=\"td4\" valign=\"bottom\">*3dbuilder*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Alarm and Clock<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowsalarms*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Calculator<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowscalculator*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Calander and Mail<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowscommunicationapps*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Camera<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowscamera*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Get Office<\/td>\n<td class=\"td4\" valign=\"bottom\">*officehub*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Get Skype<\/td>\n<td class=\"td4\" valign=\"bottom\">*skypeapp*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Get Started<\/td>\n<td class=\"td4\" valign=\"bottom\">*getstarted*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Groove Music<\/td>\n<td class=\"td4\" valign=\"bottom\">*zunemusic*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Maps<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowsmaps*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Solitaire<\/td>\n<td class=\"td4\" valign=\"bottom\">*solitairecollection*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Money<\/td>\n<td class=\"td4\" valign=\"bottom\">*bingfinance*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Movies and TV<\/td>\n<td class=\"td4\" valign=\"bottom\">*zunevideo*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">News<\/td>\n<td class=\"td4\" valign=\"bottom\">*bingnews*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">OneNote<\/td>\n<td class=\"td4\" valign=\"bottom\">*onenote*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">People<\/td>\n<td class=\"td4\" valign=\"bottom\">*people*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Phone Companion<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowsphone*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Photos<\/td>\n<td class=\"td4\" valign=\"bottom\">*photos*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Store<\/td>\n<td class=\"td4\" valign=\"bottom\">*windowsstore*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Sports<\/td>\n<td class=\"td4\" valign=\"bottom\">*bingsports*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Voice recorder<\/td>\n<td class=\"td4\" valign=\"bottom\">*soundrecorder*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Weather<\/td>\n<td class=\"td4\" valign=\"bottom\">*bingweather*<\/td>\n<\/tr>\n<tr>\n<td class=\"td3\" valign=\"bottom\">Xbox<\/td>\n<td class=\"td4\" valign=\"bottom\">*xboxapp*<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3 class=\"p14\"><span class=\"s7\">3. <\/span><span class=\"s1\">Deleting bloatware with PowerShell DISM<\/span><\/h3>\n<p class=\"p11\"><span class=\"s1\">Using the DISM command listed above will give you an output similar to the below, which you can then use to delete the app packages one by one.<\/span><\/p>\n<p style=\"text-align: left\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-41091\" src=\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png\" alt=\"\" width=\"1023\" height=\"838\" srcset=\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png 1023w, https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56-300x246.png 300w, https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56-768x629.png 768w, https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56-977x800.png 977w, https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56-700x573.png 700w\" sizes=\"auto, (max-width: 1023px) 100vw, 1023px\" \/><\/p>\n<p class=\"p2\"><span class=\"s1\">For the purpose of this example, I have highlighted the one I want to remove (the Skype Application).<\/span><\/p>\n<p class=\"p2\"><span class=\"s1\">To delete this from your system, run the following command:<\/span><\/p>\n<pre>DISM \/Online \/<span class=\"s8\">Remove-ProvisionedAppxPackage<\/span><\/pre>\n<pre><span class=\"s8\">\/PackageName:Microsoft.SkypeApp_15.92.3204.0_neutral_~_kzf8qxf38zg5c<\/span><\/pre>\n<h3 class=\"p10\"><span class=\"s1\">4. The Bloatware Automation from the N&#8209;able Head Nerds Automation Cookbook<\/span><\/h3>\n<p class=\"p2\"><span class=\"s1\">\u00a0<\/span><span class=\"s10\">Thankfully with <a href=\"https:\/\/www.n-able.com\/products\/n-central-rmm\/automation\" target=\"_blank\" rel=\"noopener\"><span class=\"s3\">N&#8209;central RMM&#8217;s automation capabilities<\/span><\/a>, there is a much easier way to do things.<\/span><span class=\"s1\"> Instead of running commands and doing this via Powershell, we have an automation policy (amp) that you can add to N&#8209;central and run it whenever you are onboarding a new customer, or if you have a new laptop you are provisioning.<\/span><\/p>\n<p class=\"p3\"><span class=\"s1\">To remove bloatware from Windows 10 with N&#8209;able N&#8209;central, please use <a href=\"https:\/\/me.n-able.com\/s\/article\/Remove-Bloatware-Windows-10\" target=\"_blank\" rel=\"noopener\"><span class=\"s11\">this link<\/span><\/a> to obtain the script.<\/span><\/p>\n<p class=\"p4\"><span class=\"s1\">If you\u2019re making it one of your new year\u2019s resolutions to get rid of all the bloatware on your systems, this will help get you started.<\/span><\/p>\n<p class=\"p17\"><em><span class=\"s1\">Jason Murphy is the Head Nerd for N&#8209;central and Efficiency at N&#8209;able. You can follow him on reddit on <a href=\"https:\/\/www.reddit.com\/r\/Nable\/\" target=\"_blank\" rel=\"noopener\"><span class=\"s12\">r\/nable<\/span><\/a> or Twitter at <a href=\"https:\/\/twitter.com\/ncentral_nerd\" target=\"_blank\" rel=\"noopener\"><span class=\"s12\">@ncentral_nerd<\/span><\/a>.<\/span><\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bloatware presents a serious risk to companies as it can\u00a0 increase your attack surface. Jason Murphy looks at how to identify and remove it from your systems.<\/p>\n","protected":false},"author":61,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"class_list":["post-41064","post","type-post","status-publish","format-standard","hentry","topic-automation","topic-head-nerds","topic-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.2) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to remove bloatware from your customers\u2019 PCs - N-able<\/title>\n<meta name=\"description\" content=\"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.\" \/>\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.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to remove bloatware from your customers\u2019 PCs - N-able\" \/>\n<meta property=\"og:description\" content=\"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\" \/>\n<meta property=\"og:site_name\" content=\"N-able\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/NableMSP\" \/>\n<meta property=\"article:published_time\" content=\"2023-01-12T17:17:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-01-19T17:19:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/230112_blogbanner_BloatwarePR2_ss.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jason Murphy\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/230112_blogbanner_BloatwarePR2_ss.jpg\" \/>\n<meta name=\"twitter:creator\" content=\"@Nable\" \/>\n<meta name=\"twitter:site\" content=\"@Nable\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jason Murphy\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\"},\"author\":{\"name\":\"Jason Murphy\",\"@id\":\"https:\/\/www.n-able.com\/es#\/schema\/person\/386267649dd5b64eb5374a69047aee1e\"},\"headline\":\"How to remove bloatware from your customers\u2019 PCs\",\"datePublished\":\"2023-01-12T17:17:45+00:00\",\"dateModified\":\"2023-01-19T17:19:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\"},\"wordCount\":721,\"publisher\":{\"@id\":\"https:\/\/www.n-able.com\/es#organization\"},\"image\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png\",\"articleSection\":[\"Automation\",\"Head Nerds\",\"Security\"],\"inLanguage\":\"es\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\",\"url\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\",\"name\":\"How to remove bloatware from your customers\u2019 PCs - N-able\",\"isPartOf\":{\"@id\":\"https:\/\/www.n-able.com\/es#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png\",\"datePublished\":\"2023-01-12T17:17:45+00:00\",\"dateModified\":\"2023-01-19T17:19:31+00:00\",\"description\":\"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage\",\"url\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png\",\"contentUrl\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Head Nerds\",\"item\":\"https:\/\/www.n-able.com\/es\/blog\/category\/head-nerds-es\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to remove bloatware from your customers\u2019 PCs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.n-able.com\/es#website\",\"url\":\"https:\/\/www.n-able.com\/es\",\"name\":\"N-able\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.n-able.com\/es#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.n-able.com\/es?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.n-able.com\/es#organization\",\"name\":\"N-able\",\"url\":\"https:\/\/www.n-able.com\/es\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/www.n-able.com\/es#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg\",\"contentUrl\":\"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg\",\"width\":\"1024\",\"height\":\"1024\",\"caption\":\"N-able\"},\"image\":{\"@id\":\"https:\/\/www.n-able.com\/es#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/NableMSP\",\"https:\/\/x.com\/Nable\",\"https:\/\/www.linkedin.com\/company\/n-able\",\"https:\/\/www.youtube.com\/channel\/UClnp77HHg4aME-S-3fWQhFw\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.n-able.com\/es#\/schema\/person\/386267649dd5b64eb5374a69047aee1e\",\"name\":\"Jason Murphy\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g\",\"caption\":\"Jason Murphy\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to remove bloatware from your customers\u2019 PCs - N-able","description":"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.","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.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs","og_locale":"es_ES","og_type":"article","og_title":"How to remove bloatware from your customers\u2019 PCs - N-able","og_description":"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.","og_url":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs","og_site_name":"N-able","article_publisher":"https:\/\/www.facebook.com\/NableMSP","article_published_time":"2023-01-12T17:17:45+00:00","article_modified_time":"2023-01-19T17:19:31+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/230112_blogbanner_BloatwarePR2_ss.jpg","type":"image\/jpeg"}],"author":"Jason Murphy","twitter_card":"summary_large_image","twitter_image":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/230112_blogbanner_BloatwarePR2_ss.jpg","twitter_creator":"@Nable","twitter_site":"@Nable","twitter_misc":{"Escrito por":"Jason Murphy","Tiempo de lectura":"4 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#article","isPartOf":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs"},"author":{"name":"Jason Murphy","@id":"https:\/\/www.n-able.com\/es#\/schema\/person\/386267649dd5b64eb5374a69047aee1e"},"headline":"How to remove bloatware from your customers\u2019 PCs","datePublished":"2023-01-12T17:17:45+00:00","dateModified":"2023-01-19T17:19:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs"},"wordCount":721,"publisher":{"@id":"https:\/\/www.n-able.com\/es#organization"},"image":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage"},"thumbnailUrl":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png","articleSection":["Automation","Head Nerds","Security"],"inLanguage":"es"},{"@type":"WebPage","@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs","url":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs","name":"How to remove bloatware from your customers\u2019 PCs - N-able","isPartOf":{"@id":"https:\/\/www.n-able.com\/es#website"},"primaryImageOfPage":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage"},"image":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage"},"thumbnailUrl":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png","datePublished":"2023-01-12T17:17:45+00:00","dateModified":"2023-01-19T17:19:31+00:00","description":"Bloatware can present a serious risk as it can increase your attack surface. Find out how how to identify and remove it from your systems.","breadcrumb":{"@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#primaryimage","url":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png","contentUrl":"https:\/\/www.n-able.com\/wp-content\/uploads\/2023\/01\/Screenshot-2023-01-12-at-17.14.56.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.n-able.com\/es\/blog\/how-to-remove-bloatware-from-your-customers-pcs#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Head Nerds","item":"https:\/\/www.n-able.com\/es\/blog\/category\/head-nerds-es"},{"@type":"ListItem","position":2,"name":"How to remove bloatware from your customers\u2019 PCs"}]},{"@type":"WebSite","@id":"https:\/\/www.n-able.com\/es#website","url":"https:\/\/www.n-able.com\/es","name":"N-able","description":"","publisher":{"@id":"https:\/\/www.n-able.com\/es#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.n-able.com\/es?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/www.n-able.com\/es#organization","name":"N-able","url":"https:\/\/www.n-able.com\/es","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/www.n-able.com\/es#\/schema\/logo\/image\/","url":"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg","contentUrl":"https:\/\/www.n-able.com\/wp-content\/uploads\/2021\/02\/logo-n-able-vertical-dark.svg","width":"1024","height":"1024","caption":"N-able"},"image":{"@id":"https:\/\/www.n-able.com\/es#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/NableMSP","https:\/\/x.com\/Nable","https:\/\/www.linkedin.com\/company\/n-able","https:\/\/www.youtube.com\/channel\/UClnp77HHg4aME-S-3fWQhFw"]},{"@type":"Person","@id":"https:\/\/www.n-able.com\/es#\/schema\/person\/386267649dd5b64eb5374a69047aee1e","name":"Jason Murphy","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/36cd4c86004be66e5a76f671eaf161ffeb90f6b3840f495cccf26d67651c8ab1?s=96&d=mm&r=g","caption":"Jason Murphy"}}]}},"_links":{"self":[{"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/posts\/41064","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/users\/61"}],"replies":[{"embeddable":true,"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/comments?post=41064"}],"version-history":[{"count":0,"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/posts\/41064\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.n-able.com\/es\/wp-json\/wp\/v2\/media?parent=41064"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}