Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is anybody having this Powershell "Update-Help" command, issue?

I am trying to download and install Help files for all the commands but it won't work. I am using Powershell 7.1.1 inside the Windows Terminal.

Update-Help: Failed to update Help for the module(s) 'ConfigDefender, PSReadline' with UI culture(s) {en-US} : One or more errors occurred. (Response status code does not indicate success: 404 (The specified blob does not exist.).).

English-US help content is available and can be installed using: Update-Help -UICulture en-US.

This is exactly what the out-put looks like

enter image description here

like image 637
techsk8 Avatar asked Jan 31 '21 15:01

techsk8


1 Answers

Solved, thanks to another post I've found on stackoverflow. According to Microsoft, the below command should work in case of errors regarding the cmdlet: Update-Help.

 Update-Help -Verbose -Force -ErrorAction SilentlyContinue
like image 195
techsk8 Avatar answered Sep 27 '22 19:09

techsk8