-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KnownIssues: reformat, reorganize, clean up #2899
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- fix bad tabulation in rendered markdown. GFM is very forgiving with tabs, but most implementations require four spaces per level. - fix headers and header depth (H3 should not be the toplevel...) - convert some list items to headers - fix some grammar and reword some parts - reorganize some list elements and sections - unify use of key shortcut presentation (`Win`+`X`) - convert some quoted words to italics - don't include punctuation in emphasized/quoted technical words - better explain some of the troubleshooting steps - add key takeaways to battery health section - other general proofreading
With my initial look, this is great, but I'll take another look with rendering in a bit. I always enjoy good formatting. |
Real-MullaC
suggested changes
Oct 11, 2024
Comment on lines
-141
to
-179
### Troubleshoot errors during Microwin usage | ||
|
||
#### Error `0x80041031` | ||
|
||
* This error code typically indicates an issue related to Windows Management Instrumentation (WMI). Here are a few steps you can try to resolve the issue: | ||
|
||
1. **Reboot Your Computer:** | ||
Sometimes, a simple reboot can resolve temporary issues. Restart your computer and try mounting the ISO again. | ||
|
||
2. **Check for System Corruption:** | ||
Run the System File Checker (SFC) utility to scan and repair system files that may be corrupted. | ||
```powershell | ||
sfc /scannow | ||
``` | ||
|
||
3. **Update Your System:** | ||
Make sure your operating system is up-to-date. Check for Windows updates and install any pending updates. | ||
|
||
4. **Check WMI Service:** | ||
Ensure that the Windows Management Instrumentation (WMI) service is running. You can do this through the Services application: | ||
- Press `Win + R` to open the Run dialog. | ||
- Type `services.msc` and press Enter. | ||
- Locate "Windows Management Instrumentation" in the list. | ||
- Make sure to set its status to "Running" and the startup type to "Automatic." | ||
|
||
5. **Check for Security Software Interference:** | ||
Security software can sometimes interfere with WMI operations. Temporarily disable your antivirus or security software and check if the issue persists. | ||
|
||
6. **Event Viewer:** | ||
Check the Event Viewer for more detailed error information. Look for entries related to the `80041031` error and check if there are any additional details that can help identify the cause. | ||
|
||
- Press `Win + X` and select "Event Viewer." | ||
- Navigate to "Windows Logs" -> "Application" or "System." | ||
- Look for entries with the source related to WMI or the application use to mount the ISO. | ||
|
||
7. **ISO File Integrity:** | ||
Ensure that the ISO file you are trying to mount is uncorrupted. Try mounting a different ISO file to see if the issue persists. | ||
|
||
* If the problem persists after trying these steps, additional troubleshooting is required. Consider seeking assistance from Microsoft support or community forums for more specific guidance based on your system configuration and the software you use to mount the ISO. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be kept.
ruxunderscore
suggested changes
Oct 20, 2024
ChrisTitusTech
approved these changes
Nov 7, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of Change
Description
Saw this page rendered on the site and it didn't look good; the tabs were what killed me but I also did some other work.
As in the commit message:
Win
+X
)Testing
N/A
Impact
Headers will change, making old links not scroll to old anchors.
Checklist