massgrave.dev/docs/change_edition_issues.md

28 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2024-02-12 13:05:09 +01:00
# Change Edition Issues
## Error 0x80070490
2024-04-12 05:05:28 +02:00
- In the Home to Pro upgrade process, the script may show the below error in red color:
2024-02-12 13:05:09 +01:00
```
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.
2024-04-12 05:05:28 +02:00
- To solve this, we need to disable it, to do that, open the command prompt as admin and enter
2024-02-12 13:05:09 +01:00
`DISM /Online /English /Disable-Feature /FeatureName:"NetFx3"`
- Once it's done, try to change the edition again.
2024-04-12 05:05:28 +02:00
- After the edition change, you can enable .net 3.5 again, to do that, enter,
2024-02-12 13:05:09 +01:00
`DISM /Online /English /Enable-Feature /FeatureName:"NetFx3"`
2024-04-12 05:05:28 +02:00
---
2024-02-12 13:05:09 +01:00
## Other Errors
- In Windows settings, go to the Windows Update page, run the check for updates button, and ensure that Windows is fully updated.
- In the MAS script, go to Troubleshoot and run these options in the below order,
- DISM Restore
- SFC Scan
- Restart the system and try to change the edition again.
2024-04-12 05:05:28 +02:00
- If it's still not resolved, please connect with us [here](troubleshoot.md).
---