summaryrefslogtreecommitdiff
path: root/docs/change_edition_issues.md
diff options
context:
space:
mode:
authorMay2025-03-31 21:59:28 +0000
committerGitHub2025-03-31 21:59:28 +0000
commit3e2132c4115320dca0a9a9a43e0120af65aa29cc (patch)
treec6a66fa9a8618c02139fc42f13e6faca13a03842 /docs/change_edition_issues.md
parent313056f6eed6658b68809b9308aa97839b4662b6 (diff)
downloadmassgrave.dev-3e2132c4115320dca0a9a9a43e0120af65aa29cc.zip
Adjust change edition pages (#43)
* Adjust change edition pages * Update change_office_edition.md fix ambiguity with the word "current" * Update change_office_edition.md --------- Co-authored-by: WindowsAddict <[email protected]>
Diffstat (limited to 'docs/change_edition_issues.md')
-rw-r--r--docs/change_edition_issues.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/change_edition_issues.md b/docs/change_edition_issues.md
index 88ac146..1402bb0 100644
--- a/docs/change_edition_issues.md
+++ b/docs/change_edition_issues.md
@@ -2,15 +2,15 @@
## Error 0x80070490
-- In the Home to Pro upgrade process, the script may show the below error in red color:
+- During a Home to Pro upgrade, the script may show the below error:
```
Exception calling "_DismSet Edition" with "6" argument(s): "Element not found. (Exception from HRESULT: 0x80070490)"
```
-- This issue often appears due to the installed .Net 3.5 framework.
-- To solve this, we need to disable it, to do that, open the command prompt as admin and enter
+- This issue often appears when .NET Framework 3.5 is installed.
+- To solve this, it needs to be disabled. To do that, open Command Prompt as admin and enter
`DISM /Online /English /Disable-Feature /FeatureName:"NetFx3"`
-- Once it's done, try to change the edition again.
-- After the edition change, you can enable .net 3.5 again, to do that, enter,
+- Once that's done, try to change the edition again.
+- After the edition change, you can enable .NET 3.5 again:
`DISM /Online /English /Enable-Feature /FeatureName:"NetFx3"`
---