You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The below code, when run as administrator in Powershell ISE in Windows 10 Enterprise, results in a few files downloaded, but then endless repeated messages like WARNING: [12:09:47][Start-BitsJobProcess] Failure for 2023-02 Cumulative Update for .NET Framework 4.8 for Windows Server 2016 for x64 (KB5022503) | The system cannot find the file specified. (Exception from HRESULT: 0x80070002) WARNING: [12:09:47][Start-BitsJobProcess] Failure for kbupdate | The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
`$kbs = Get-KbUpdate -Source Web -MaxPages 9 -OperatingSystem 'Windows Server 2016' -Pattern 'NET Framework' -Exclude 1709, 1803
$kbs
In my case I lost internet access during one of the downloads and had to restart the script. Maybe try running the script. Then in the middle of one of the downloads cut internet and then CTRL+C to break out. After the internet restores, run the script again.
The below code, when run as administrator in Powershell ISE in Windows 10 Enterprise, results in a few files downloaded, but then endless repeated messages like
WARNING: [12:09:47][Start-BitsJobProcess] Failure for 2023-02 Cumulative Update for .NET Framework 4.8 for Windows Server 2016 for x64 (KB5022503) | The system cannot find the file specified. (Exception from HRESULT: 0x80070002) WARNING: [12:09:47][Start-BitsJobProcess] Failure for kbupdate | The system cannot find the file specified. (Exception from HRESULT: 0x80070002)
`$kbs = Get-KbUpdate -Source Web -MaxPages 9 -OperatingSystem 'Windows Server 2016' -Pattern 'NET Framework' -Exclude 1709, 1803
$kbs
foreach ($kb in $kbs)$kb.Id) $ ($file) $ ($kb.Title)"
{
$file = Split-Path $kb.Link -Leaf
$json = $file.Replace('.msu','.json')
Write-Host "$(
}
`
The text was updated successfully, but these errors were encountered: