BizRobo! Basic のインストール時、初回のRoboServer起動時に下記の様なワーニングが表示されることがあります。
WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(…) returned error code 5.
これは RoboServerの初期起動時にJRE(Java Runtime Environment)がWindowsのレジストリへ、当該JREのJavaバージョンなどの情報をキーとして登録しようとしたものの、ログインユーザの権限不足でレジストリキーを生成できなかった場合に発生します。
BizRobo! Basic の実行においてはインストーラに同封されたJREを参照する仕組みであるため、該当レジストリ情報を参照する必要はなく、ロボットの稼働等に影響を与えることはありませんが、下記の情報を参考に生成に失敗したレジストリキーを手動で生成することは可能です。
The message is most often caused by a missing Windows Registry entry.
Please review the following on-line posts:http://stackoverflow.com/questions/5354838/java-java-util-preferences-failing
For example:
Problem(Abstract)
===============
Running a Java application results in the following message:java.util.prefs.WindowsPreferences <init>
WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs
at root 0x80000002. Windows RegCreateKeyEx(…) returned error code 5.Cause:
======
The error occurs because java.util.prefs.WindowsPreferences is trying to save information in HKEY_LOCAL_MACHINE\Software\JavaSoft\Prefs instead of under HKEY_CURRENT_USER\Software\JavaSoft\Prefs.Environment:
===========
Windows 7 64-bit
Resolving the problem
The work around is to login as the administrator and create the key HKEY_LOCAL_MACHINE\Software\JavaSoft\Prefs.