79748438

Date: 2025-08-27 20:09:24
Score: 0.5
Natty:
Report link

Found the issue. Basically, its not a funky character, its that the powershell functionally is handling the command line call different like THIS post. so the correct syntax here is as follows

java -Dsun.java2d.uiScale=1 -jar "fsal jar location" -url "url"

Becomes

java '-Dsun.java2d.uiScale=1' -jar "fsal jar location" -url "url"

otherwise the PS interpreter separates on the period yielding
-Dsun
.java2d.uiscale=1

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: IT Alex