Intel Corporation - SoftwareComponent - 1.1122.713.2 windows update problem

Anonymous
2023-01-30T06:06:07+00:00

Hello

I am using Windows 11 Pro VER 22H2. Windows update, downloads and installs "Intel Corporation - SoftwareComponent - 1.1122.713.2"

and by next boot, it does this again.

I am in the infinite loop of download and install "Intel Corporation - SoftwareComponent - 1.1122.713.2"

What can I do?

Windows for home | Windows 11 | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

57 answers

Sort by: Most helpful
  1. Anonymous
    2023-10-24T14:49:02+00:00

    I ended up by just hiding that single Update in the OS. Here a Powershell script to do this:

    #requires -RunAsAdmin

    $UpdateSession = New-Object -ComObject Microsoft.Update.Session

    $UpdateSearcher = $UpdateSession.CreateupdateSearcher()

    $Updates = @($UpdateSearcher.Search("IsHidden=0").Updates)

    foreach ($u in $Updates) {

        if ($u.Title -eq 'Intel Corporation - SoftwareComponent - 2.1123.706.4') {

            write-host $u.Title

            $u.IsHidden = $true

            break

        }

    }

    'done.'

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2023-08-20T06:50:48+00:00

    Hi,

    It works! Great tip! Thanks a lot!

    My device: HP ZBook Power 15,6-Zoll G9 Mobile Workstation ¦ Windows 11, version 22H2

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  3. Anonymous
    2023-05-11T05:34:49+00:00

    Hi , I have the same ZB Power and specs as yours, with the Intel SoftwareComponent 1.1122.713.2 & Intel Extension 1.1122.612.5 stuck in a Windows Update perpetual loop.

    Have you found a fix?

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  4. Anonymous
    2023-05-04T13:07:20+00:00

    Thanks ... but how can I solve the problem ?

    Rgds Roberto Giussani

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  5. VARADHARAJAN K 9,726 Reputation points Volunteer Moderator
    2023-02-10T13:32:36+00:00

    Check-in device manager in software components

    the below hardware device ID items are installed or in hide condition

    swc\vid_8086&pid_icps&sid_0001 swc\vid_8086&pid_icps&sid_0002 Microsoft Update Catalog

    Above device IDS for Intel Connectivity Performance Suite IHV Component (ICPS)

    Microsoft Update Catalog

    Was this answer helpful?

    0 comments No comments