• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

"Too many parameters" on boot-up

Pete

Diamond Member
I gt that error for the following line that PGP put in my Autoexec.bat:

SET PATH=%PATH%;C:\PROGRA~1\NETWOR~1\PGP

Why do I get that message? Is it because the first line of Autoexec.bat is this, installed by JDK 1.2:

PATH C:\JDK1.2.2\BIN

Any help would be appreciated.
 
Try just appending your JDK path stuff to the other path line, so it reads thusly:

SET PATH=%PATH%;C:\PROGRA~1\NETWOR~1\PGP;C:\JDK1.2.2\BIN

Then, put an "REM" in front of the line that says:

PATH C:\JDK1.2.2\BIN

So it should read:

REM PATH C:\JDK1.2.2\BIN


 
Back
Top