Hello All, i am trying to run a java .class using BigFix. I have tried using Batch file, PowerShell and normal passing of command.
But for PowerShell it returned 0 and did nothing. For Batch, it returned 1 and did nothing. When i ran those files by double clicking on it, it is working.
In the java code, there is no print or prompt statement. It just creates a text file.
Please help me to achieve this.
In Batch file and PowerShell, i wrote,
“”"
java “C:\Temp\DemoJava”
“”"
and
“”"
java “DemoJava”
“”"
direct
“”"
waithidden cmd.exe /C java “C:\Temp\DemoJava”
“”"