Installation Oracle10g 'check the operating system version' without passing through the win10

Disclaimer: This article is a blogger original article, shall not be reproduced without the bloggers allowed. https://blog.csdn.net/z858466/article/details/80753584

Recently window 10 Times oracle 10g installation error:
Check the operating system version: must be 5.1 or 5.2, is actually 6.2, did not pass.
By Baidu, it has taken several solutions, combining it worked.
Solution
1, the first set of compatibility setup.exe.

Write pictures described here

Run again, I found an error becomes "" is actually 6.0 "."

2, modify the configuration file oraparam.ini (default is read only, the need to modify the property right)

You can customise error message shown for failure, provide value for CERTIFIED_VERSION_FAILURE_MESSAGE
Windows=5.0,5.1,5.2,6.0,6.2

And add:

[Windows-6.0-required]  
#Minimum display colours for OUI to run  
MIN_DISPLAY_COLORS=256  
#Minimum CPU speed required for OUI  
#CPU=300  
[Windows-6.0-optional]  

3, to find all the oracle refhost.xml installation folder, and then add the following code in each refhost.xml

<!--Microsoft Windows 10-->   
    <OPERATING_SYSTEM>  
      <VERSION VALUE="6.0"/>  
    </OPERATING_SYSTEM>  

Finally, run the installation was successful!

Guess you like

Origin blog.csdn.net/z858466/article/details/80753584