{"id":7476,"date":"2023-11-22T00:24:43","date_gmt":"2023-11-22T00:24:43","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=7476"},"modified":"2023-11-22T00:24:46","modified_gmt":"2023-11-22T00:24:46","slug":"intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf","title":{"rendered":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">#Detect HP bloatware \/ crapware\r\n#-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388\r\n\r\n#List of built-in apps to remove\r\n$UninstallPackages = @(\r\n   # \"AD2F1837.HPJumpStarts\"\r\n   # \"AD2F1837.HPPCHardwareDiagnosticsWindows\"\r\n   # \"AD2F1837.HPPowerManager\"\r\n   # \"AD2F1837.HPPrivacySettings\"\r\n   # \"AD2F1837.HPSupportAssistant\"\r\n   # \"AD2F1837.HPSureShieldAI\"\r\n   # \"AD2F1837.HPSystemInformation\"\r\n   # \"AD2F1837.HPQuickDrop\"\r\n   # \"AD2F1837.HPWorkWell\"\r\n   # \"AD2F1837.myHP\"\r\n   # \"AD2F1837.HPDesktopSupportUtilities\"\r\n   # \"AD2F1837.HPQuickTouch\"\r\n   # \"AD2F1837.HPEasyClean\"\r\n   # \"AD2F1837.HPSystemInformation\"\r\n)\r\n\r\n#List of programs to uninstall\r\n$UninstallPrograms = @(\r\n    #\"HP Client Security Manager\"\r\n    #\"HP Connection Optimizer\"\r\n    #\"HP Documentation\"\r\n    #\"HP MAC Address Manager\"\r\n    #\"HP Notifications\"\r\n    \"HP Security Update Service\"\r\n    #\"HP System Default Settings\"\r\n    \"HP Sure Click\"\r\n    \"HP Sure Click Security Browser\"\r\n    \"HP Sure Run\"\r\n    \"HP Sure Recover\"\r\n    \"HP Sure Sense\"\r\n    \"HP Sure Sense Installer\"\r\n)\r\n\r\n$HPidentifier = \"AD2F1837\"\r\n\r\n$InstalledPackages = Get-AppxPackage -AllUsers `\r\n            | Where-Object {($UninstallPackages -contains $_.Name) -or ($_.Name -match \"^$HPidentifier\")}\r\n\r\n$ProvisionedPackages = Get-AppxProvisionedPackage -Online `\r\n            | Where-Object {($UninstallPackages -contains $_.DisplayName) -or ($_.DisplayName -match \"^$HPidentifier\")}\r\n\r\n$InstalledPrograms = Get-Package | Where-Object {$UninstallPrograms -contains $_.Name}\r\n\r\n$InstalledWolfSecurityPrograms = Get-WmiObject Win32_Product | Where-Object { $_.name -like \"HP Wolf Security*\" }\r\n\r\nif (($InstalledPackages) -or ($ProvisionedPackages) -or ($InstalledPrograms) -or ($InstalledWolfSecurityPrograms)) {\r\n    #Apps detected, need to run removal script\r\n    Write-Host \"Apps detected, starting removal script\"\r\n    exit 1\r\n}\r\n\r\nWrite-Host \"No apps detected\"\r\nexit 0<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"powershell\" class=\"language-powershell\">#Remove HP bloatware \/ crapware\r\n#-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388\r\n\r\n#Remove HP Documentation\r\nif (Test-Path \"${Env:ProgramFiles}\\HP\\Documentation\\Doc_uninstall.cmd\" -PathType Leaf) {\r\n    try {\r\n        Invoke-Item \"${Env:ProgramFiles}\\HP\\Documentation\\Doc_uninstall.cmd\"\r\n        Write-Host \"Successfully removed provisioned package: HP Documentation\"\r\n    }\r\n    catch {\r\n        Write-Host \"Error Remvoving HP Documentation $($_.Exception.Message)\"\r\n    }\r\n}\r\nelse {\r\n    Write-Host \"HP Documentation is not installed\"\r\n}\r\n\r\n#Remove HP Support Assistant silently\r\n$HPSAuninstall = \"${Env:ProgramFiles(x86)}\\HP\\HP Support Framework\\UninstallHPSA.exe\"\r\n\r\nif (Test-Path -Path \"HKLM:\\Software\\WOW6432Node\\Hewlett-Packard\\HPActiveSupport\") {\r\n    try {\r\n        Remove-Item -Path \"HKLM:\\Software\\WOW6432Node\\Hewlett-Packard\\HPActiveSupport\"\r\n        Write-Host \"HP Support Assistant regkey deleted $($_.Exception.Message)\"\r\n    }\r\n    catch {\r\n        Write-Host \"Error retreiving registry key for HP Support Assistant: $($_.Exception.Message)\"\r\n    }\r\n}\r\nelse {\r\n    Write-Host \"HP Support Assistant regkey not found\"\r\n}\r\n\r\nif (Test-Path $HPSAuninstall -PathType Leaf) {\r\n    try {\r\n        &amp; $HPSAuninstall \/s \/v\/qn UninstallKeepPreferences=FALSE\r\n        Write-Host \"Successfully removed provisioned package: HP Support Assistant silently\"\r\n    }\r\n    catch {\r\n        Write-Host \"Error uninstalling HP Support Assistant: $($_.Exception.Message)\"\r\n    }\r\n}\r\nelse {\r\n    Write-Host \"HP Support Assistant Uninstaller not found\"\r\n}\r\n\r\n#Remove HP Connection Optimizer\r\n$HPCOuninstall = \"${Env:ProgramFiles(x86)}\\InstallShield Installation Information\\{6468C4A5-E47E-405F-B675-A70A70983EA6}\\setup.exe\"\r\nif (Test-Path $HPCOuninstall -PathType Leaf) {\r\n    Try {\r\n        # Generating uninstall file\r\n        \"[InstallShield Silent]\r\n        Version=v7.00\r\n        File=Response File\r\n        [File Transfer]\r\n        OverwrittenReadOnly=NoToAll\r\n        [{6468C4A5-E47E-405F-B675-A70A70983EA6}-DlgOrder]\r\n        Dlg0={6468C4A5-E47E-405F-B675-A70A70983EA6}-MessageBox-0\r\n        Count=2\r\n        Dlg1={6468C4A5-E47E-405F-B675-A70A70983EA6}-SdFinish-0\r\n        [{6468C4A5-E47E-405F-B675-A70A70983EA6}-MessageBox-0]\r\n        Result=6\r\n        [Application]\r\n        Name=HP Connection Optimizer\r\n        Version=2.0.19.0\r\n        Company=HP\r\n        Lang=0413\r\n        [{6468C4A5-E47E-405F-B675-A70A70983EA6}-SdFinish-0]\r\n        Result=1\r\n        bOpt1=0\r\n        bOpt2=0\" | Out-File -FilePath \"${Env:Temp}\\uninstallHPCO.iss\" -Encoding UTF8 -Force:$true -Confirm:$false\r\n\r\n        Write-Host \"Successfully created uninstall file ${Env:Temp}\\uninstallHPCO.iss\"\r\n\r\n        &amp; $HPCOuninstall -runfromtemp -l0x0413 -removeonly -s -f1${Env:Temp}\\uninstallHPCO.iss\r\n        Write-Host \"Successfully removed HP Connection Optimizer\"\r\n    }\r\n    Catch {\r\n        Write-Host \"Error uninstalling HP Connection Optimizer: $($_.Exception.Message)\"\r\n    }\r\n}\r\nElse {\r\n    Write-Host \"HP Connection Optimizer not found\"\r\n}\r\n\r\n#List of built-in apps to remove\r\n$UninstallPackages = @(\r\n   # \"AD2F1837.HPJumpStarts\"\r\n   # \"AD2F1837.HPPCHardwareDiagnosticsWindows\"\r\n   # \"AD2F1837.HPPowerManager\"\r\n   # \"AD2F1837.HPPrivacySettings\"\r\n   # \"AD2F1837.HPSupportAssistant\"\r\n   # \"AD2F1837.HPSureShieldAI\"\r\n   # \"AD2F1837.HPSystemInformation\"\r\n   # \"AD2F1837.HPQuickDrop\"\r\n   # \"AD2F1837.HPWorkWell\"\r\n   # \"AD2F1837.myHP\"\r\n   # \"AD2F1837.HPDesktopSupportUtilities\"\r\n   # \"AD2F1837.HPQuickTouch\"\r\n   # \"AD2F1837.HPEasyClean\"\r\n   # \"AD2F1837.HPSystemInformation\"\r\n)\r\n\r\n#List of programs to uninstall\r\n$UninstallPrograms = @(\r\n    #\"HP Client Security Manager\"\r\n    #\"HP Connection Optimizer\"\r\n    #\"HP Documentation\"\r\n    #\"HP MAC Address Manager\"\r\n    #\"HP Notifications\"\r\n    \"HP Security Update Service\"\r\n    #\"HP System Default Settings\"\r\n    \"HP Sure Click\"\r\n    \"HP Sure Click Security Browser\"\r\n    \"HP Sure Run\"\r\n    \"HP Sure Recover\"\r\n    \"HP Sure Sense\"\r\n    \"HP Sure Sense Installer\"\r\n)\r\n\r\n$HPidentifier = \"AD2F1837\"\r\n\r\n$InstalledPackages = Get-AppxPackage -AllUsers `\r\n| Where-Object { ($UninstallPackages -contains $_.Name) -or ($_.Name -match \"^$HPidentifier\") }\r\n\r\n$ProvisionedPackages = Get-AppxProvisionedPackage -Online `\r\n| Where-Object { ($UninstallPackages -contains $_.DisplayName) -or ($_.DisplayName -match \"^$HPidentifier\") }\r\n\r\n$InstalledPrograms = Get-Package | Where-Object { $UninstallPrograms -contains $_.Name } | Sort-Object Name -Descending\r\n\r\n#Remove appx provisioned packages - AppxProvisionedPackage\r\nForEach ($ProvPackage in $ProvisionedPackages) {\r\n    Write-Host -Object \"Attempting to remove provisioned package: [$($ProvPackage.DisplayName)]...\"\r\n    try {\r\n        $Null = Remove-AppxProvisionedPackage -PackageName $ProvPackage.PackageName -Online -ErrorAction Stop\r\n        Write-Host -Object \"Successfully removed provisioned package: [$($ProvPackage.DisplayName)]\"\r\n    }\r\n    catch { Write-Warning -Message \"Failed to remove provisioned package: [$($ProvPackage.DisplayName)]\" }\r\n}\r\n\r\n#Remove appx packages - AppxPackage\r\nForEach ($AppxPackage in $InstalledPackages) {                                        \r\n    Write-Host -Object \"Attempting to remove Appx package: [$($AppxPackage.Name)]...\"\r\n    try {\r\n        $Null = Remove-AppxPackage -Package $AppxPackage.PackageFullName -AllUsers -ErrorAction Stop\r\n        Write-Host -Object \"Successfully removed Appx package: [$($AppxPackage.Name)]\"\r\n    }\r\n    catch { Write-Warning -Message \"Failed to remove Appx package: [$($AppxPackage.Name)]\" }\r\n}\r\n\r\n#Remove installed programs\r\nForEach ($InstalledProgram in $InstalledPrograms) {\r\n    Write-Host -Object \"Attempting to uninstall: [$($InstalledProgram.Name)]...\"\r\n    try {\r\n        $Null = $InstalledProgram | Uninstall-Package -AllVersions -Force -ErrorAction Stop\r\n        Write-Host -Object \"Successfully uninstalled: [$($InstalledProgram.Name)]\"\r\n    }\r\n    catch {\r\n        Write-Warning -Message \"Failed to uninstall: [$($InstalledProgram.Name)]\"\r\n        Write-Host -Object \"Attempting to uninstall as MSI package: [$($InstalledProgram.Name)]...\"\r\n        try {\r\n            $MSIApp = Get-WmiObject Win32_Product | Where-Object { $_.name -like \"$($InstalledProgram.Name)\" }\r\n            if ($null -ne $MSIApp.IdentifyingNumber) {\r\n                Start-Process -FilePath msiexec.exe -ArgumentList @(\"\/x $($MSIApp.IdentifyingNumber)\", \"\/quiet\", \"\/noreboot\") -Wait\r\n            }\r\n            else { Write-Warning -Message \"Can't find MSI package: [$($InstalledProgram.Name)]\" }\r\n        }\r\n        catch { Write-Warning -Message \"Failed to uninstall MSI package: [$($InstalledProgram.Name)]\" }\r\n    }\r\n}\r\n\r\n#Try to remove all HP Wolf Security apps using msiexec\r\n$InstalledWolfSecurityPrograms = Get-WmiObject Win32_Product | Where-Object { $_.name -like \"HP Wolf Security*\" }\r\nForEach ($InstalledWolfSecurityProgram in $InstalledWolfSecurityPrograms) {\r\n    try {\r\n        if ($null -ne $InstalledWolfSecurityProgram.IdentifyingNumber) {\r\n            Start-Process -FilePath msiexec.exe -ArgumentList @(\"\/x $($InstalledWolfSecurityProgram.IdentifyingNumber)\", \"\/quiet\", \"\/noreboot\") -Wait\r\n            Write-Host \"Attempting to uninstall as MSI package: [$($InstalledWolfSecurityProgram.Name)]...\"\r\n        }\r\n        else { Write-Warning -Message \"Can't find MSI package: [$($InstalledWolfSecurityProgram.Name)]\" }\r\n    }\r\n    catch {\r\n        Write-Warning -Message \"Failed to uninstall MSI package: [$($InstalledWolfSecurityProgram.Name)]\"\r\n    }\r\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","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-7476","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # &quot;AD2F1837.HPJumpStarts&quot; # &quot;AD2F1837.HPPCHardwareDiagnosticsWindows&quot; # &quot;AD2F1837.HPPowerManager&quot; # &quot;AD2F1837.HPPrivacySettings&quot; # &quot;AD2F1837.HPSupportAssistant&quot; # &quot;AD2F1837.HPSureShieldAI&quot; # &quot;AD2F1837.HPSystemInformation&quot; # &quot;AD2F1837.HPQuickDrop&quot; # &quot;AD2F1837.HPWorkWell&quot; # &quot;AD2F1837.myHP&quot; # &quot;AD2F1837.HPDesktopSupportUtilities&quot; # &quot;AD2F1837.HPQuickTouch&quot; # &quot;AD2F1837.HPEasyClean&quot; # &quot;AD2F1837.HPSystemInformation&quot; ) #List of programs to uninstall $UninstallPrograms = @(\" \/>\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\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\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=\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # &quot;AD2F1837.HPJumpStarts&quot; # &quot;AD2F1837.HPPCHardwareDiagnosticsWindows&quot; # &quot;AD2F1837.HPPowerManager&quot; # &quot;AD2F1837.HPPrivacySettings&quot; # &quot;AD2F1837.HPSupportAssistant&quot; # &quot;AD2F1837.HPSureShieldAI&quot; # &quot;AD2F1837.HPSystemInformation&quot; # &quot;AD2F1837.HPQuickDrop&quot; # &quot;AD2F1837.HPWorkWell&quot; # &quot;AD2F1837.myHP&quot; # &quot;AD2F1837.HPDesktopSupportUtilities&quot; # &quot;AD2F1837.HPQuickTouch&quot; # &quot;AD2F1837.HPEasyClean&quot; # &quot;AD2F1837.HPSystemInformation&quot; ) #List of programs to uninstall $UninstallPrograms = @(\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2023-11-22T00:24:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2023-11-22T00:24:46+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # &quot;AD2F1837.HPJumpStarts&quot; # &quot;AD2F1837.HPPCHardwareDiagnosticsWindows&quot; # &quot;AD2F1837.HPPowerManager&quot; # &quot;AD2F1837.HPPrivacySettings&quot; # &quot;AD2F1837.HPSupportAssistant&quot; # &quot;AD2F1837.HPSureShieldAI&quot; # &quot;AD2F1837.HPSystemInformation&quot; # &quot;AD2F1837.HPQuickDrop&quot; # &quot;AD2F1837.HPWorkWell&quot; # &quot;AD2F1837.myHP&quot; # &quot;AD2F1837.HPDesktopSupportUtilities&quot; # &quot;AD2F1837.HPQuickTouch&quot; # &quot;AD2F1837.HPEasyClean&quot; # &quot;AD2F1837.HPSystemInformation&quot; ) #List of programs to uninstall $UninstallPrograms = @(\" \/>\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\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#article\",\"name\":\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com\",\"headline\":\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2023-11-22T00:24:43+00:00\",\"dateModified\":\"2023-11-22T00:24:46+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage\"},\"articleSection\":\"Research\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#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\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#listItem\",\"name\":\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#listItem\",\"position\":3,\"name\":\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf\",\"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\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#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\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf\",\"name\":\"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com\",\"description\":\"#Detect HP bloatware \\\/ crapware #-- source : https:\\\/\\\/gist.github.com\\\/mark05e\\\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # \\\"AD2F1837.HPJumpStarts\\\" # \\\"AD2F1837.HPPCHardwareDiagnosticsWindows\\\" # \\\"AD2F1837.HPPowerManager\\\" # \\\"AD2F1837.HPPrivacySettings\\\" # \\\"AD2F1837.HPSupportAssistant\\\" # \\\"AD2F1837.HPSureShieldAI\\\" # \\\"AD2F1837.HPSystemInformation\\\" # \\\"AD2F1837.HPQuickDrop\\\" # \\\"AD2F1837.HPWorkWell\\\" # \\\"AD2F1837.myHP\\\" # \\\"AD2F1837.HPDesktopSupportUtilities\\\" # \\\"AD2F1837.HPQuickTouch\\\" # \\\"AD2F1837.HPEasyClean\\\" # \\\"AD2F1837.HPSystemInformation\\\" ) #List of programs to uninstall $UninstallPrograms = @(\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2023-11-22T00:24:43+00:00\",\"dateModified\":\"2023-11-22T00:24:46+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":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com","description":"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # \"AD2F1837.HPJumpStarts\" # \"AD2F1837.HPPCHardwareDiagnosticsWindows\" # \"AD2F1837.HPPowerManager\" # \"AD2F1837.HPPrivacySettings\" # \"AD2F1837.HPSupportAssistant\" # \"AD2F1837.HPSureShieldAI\" # \"AD2F1837.HPSystemInformation\" # \"AD2F1837.HPQuickDrop\" # \"AD2F1837.HPWorkWell\" # \"AD2F1837.myHP\" # \"AD2F1837.HPDesktopSupportUtilities\" # \"AD2F1837.HPQuickTouch\" # \"AD2F1837.HPEasyClean\" # \"AD2F1837.HPSystemInformation\" ) #List of programs to uninstall $UninstallPrograms = @(","canonical_url":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#article","name":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com","headline":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2023-11-22T00:24:43+00:00","dateModified":"2023-11-22T00:24:46+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage"},"articleSection":"Research"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#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\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#listItem","name":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#listItem","position":3,"name":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf","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\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#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\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#webpage","url":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf","name":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com","description":"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # \"AD2F1837.HPJumpStarts\" # \"AD2F1837.HPPCHardwareDiagnosticsWindows\" # \"AD2F1837.HPPowerManager\" # \"AD2F1837.HPPrivacySettings\" # \"AD2F1837.HPSupportAssistant\" # \"AD2F1837.HPSureShieldAI\" # \"AD2F1837.HPSystemInformation\" # \"AD2F1837.HPQuickDrop\" # \"AD2F1837.HPWorkWell\" # \"AD2F1837.myHP\" # \"AD2F1837.HPDesktopSupportUtilities\" # \"AD2F1837.HPQuickTouch\" # \"AD2F1837.HPEasyClean\" # \"AD2F1837.HPSystemInformation\" ) #List of programs to uninstall $UninstallPrograms = @(","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2023-11-22T00:24:43+00:00","dateModified":"2023-11-22T00:24:46+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":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com","og:description":"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # &quot;AD2F1837.HPJumpStarts&quot; # &quot;AD2F1837.HPPCHardwareDiagnosticsWindows&quot; # &quot;AD2F1837.HPPowerManager&quot; # &quot;AD2F1837.HPPrivacySettings&quot; # &quot;AD2F1837.HPSupportAssistant&quot; # &quot;AD2F1837.HPSureShieldAI&quot; # &quot;AD2F1837.HPSystemInformation&quot; # &quot;AD2F1837.HPQuickDrop&quot; # &quot;AD2F1837.HPWorkWell&quot; # &quot;AD2F1837.myHP&quot; # &quot;AD2F1837.HPDesktopSupportUtilities&quot; # &quot;AD2F1837.HPQuickTouch&quot; # &quot;AD2F1837.HPEasyClean&quot; # &quot;AD2F1837.HPSystemInformation&quot; ) #List of programs to uninstall $UninstallPrograms = @(","og:url":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf","article:published_time":"2023-11-22T00:24:43+00:00","article:modified_time":"2023-11-22T00:24:46+00:00","twitter:card":"summary","twitter:title":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf | Welcome to Pariswells.com","twitter:description":"#Detect HP bloatware \/ crapware #-- source : https:\/\/gist.github.com\/mark05e\/a79221b4245962a477a49eb281d97388 #List of built-in apps to remove $UninstallPackages = @( # &quot;AD2F1837.HPJumpStarts&quot; # &quot;AD2F1837.HPPCHardwareDiagnosticsWindows&quot; # &quot;AD2F1837.HPPowerManager&quot; # &quot;AD2F1837.HPPrivacySettings&quot; # &quot;AD2F1837.HPSupportAssistant&quot; # &quot;AD2F1837.HPSureShieldAI&quot; # &quot;AD2F1837.HPSystemInformation&quot; # &quot;AD2F1837.HPQuickDrop&quot; # &quot;AD2F1837.HPWorkWell&quot; # &quot;AD2F1837.myHP&quot; # &quot;AD2F1837.HPDesktopSupportUtilities&quot; # &quot;AD2F1837.HPQuickTouch&quot; # &quot;AD2F1837.HPEasyClean&quot; # &quot;AD2F1837.HPSystemInformation&quot; ) #List of programs to uninstall $UninstallPrograms = @("},"aioseo_meta_data":{"post_id":"7476","title":null,"description":null,"keywords":[],"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":[],"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-22 00:23:20","updated":"2023-11-22 00:35:11","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\tIntune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf\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":"Intune Proactive Remediation Remove HP Bloatware such as HP Sure Click and HP Wolf","link":"https:\/\/pariswells.com\/blog\/research\/intune-proactive-remediation-remove-hp-bloatware-such-as-hp-sure-click-and-hp-wolf"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7476","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=7476"}],"version-history":[{"count":1,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7476\/revisions"}],"predecessor-version":[{"id":7477,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/7476\/revisions\/7477"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=7476"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=7476"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=7476"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}