Forum Discussion
이영곤74
Jul 30, 2022Copper Contributor
Update-Help error
안녕하세요. 파워셀을 사용하려 는데 도움이 필요 합니다. 업데이트를 하는데 계속해서 이런 메시지가 나옵니다 Hello. I need help trying to use PoweShell. I keep getting this message when I try to update. Update-Help: Failed to update Help ...
- Aug 03, 2022Basically the flow is:
- You used Update-Help to get the Help for the cmdlets for the modules you have installed
- You get an error which indicates that the Help is not available in the chosen culture (ko-KR)
- You append -Verbose to have more information
- You append -Force to ensure that if any Yes/No prompts appear it will automatically chose Yes and continue
- You append -ErrorAction with value SilentlyContinue, which means that if it encounters any error it will continue without showing an error, effectively skipping the parts that it cannot update
So what you did is that you asked the Update-Help cmdlet to update everything it can update, overwrite if needed and not inform you if it hits any error.
이영곤74
Aug 04, 2022Copper Contributor
Thank you for providing a solution. But to do this, I wonder what level it has to be to be able to come up with. Thank you again for solving this. Please continue to guide me and I will study hard.
raindropsdev
Aug 04, 2022Iron Contributor
Uh, please don't overfocus on studying, this is supposed to be fun as well!
My recommendation for learning is: find problems to solve then try solving them with Powershell. Anything that you now do manually try doing it with Powershell.
And read other people's code, that has been very useful to me to learn!
My recommendation for learning is: find problems to solve then try solving them with Powershell. Anything that you now do manually try doing it with Powershell.
And read other people's code, that has been very useful to me to learn!
- raindropsdevAug 08, 2022Iron ContributorYou can mostly find it on Github, but what I do is quite simply search on google:
what I want to do + powershell
For example:
Create AD user powershell
Delete Azure AD user powershell
Manage Sentinel incidents powershell
Ecc...
This way the powershell code you'll find will be written for your exact need, so you can start read it, crossreference it with Microsoft Docs and books like Powershell in a Month of Lunches and start understanding what everything does.
The more you do this the easier it will get, until you'll be able to write all that code yourself. - 이영곤74Aug 06, 2022Copper ContributorThank you, but where can I get the code from other people?