Hello,
I am currently learning powershell and am trying to make a script to display the current version of java that is install on the PC. When I use the command java -fullversion, it works outside of the script but in a script I get the following error
java : java full version “1.8.0_40-b26”
At line:1 char:1
- java -fullversion
-
+ CategoryInfo : NotSpecified: [java full version "1.8.0_40-b26":String] [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError</code>
Can anyone telling me why I am getting this error and how to fix it?