<!DOCTYPE html> <html> <head> </head> <body> <p>This happens because ASDM uses Swing which automatically tells Java that it is DPI aware. <br />Java passes this information along to Windows, so Windows doesn't scale it.<br /><br />If you are using Java 7 or before, you should be able to modify the arguments that are passed to Java to override Swing's DPI setting by modifying the following line at "%ProgramFiles(x86)%Cisco SystemsASDMrun.bat" from this:</p> <pre class="prettyprint">javaw.exe -Xms64m -Xmx512m -Dsun.swing.enableImprovedDragGesture=true</pre> <p>To this:</p> <pre class="prettyprint">javaw.exe -Xms64m -Xmx512m <strong>-Dsun.java2d.dpiaware=false</strong> -Dsun.swing.enableImprovedDragGesture=true</pre> <p>Unfortunately, Java 8 now has this setting hard-coded into the javaw.exe file itself, so this method will no longer work. <br />Now you have to download something like <a href="http://www.restuner.com/" rel="nofollow noopener noreferrer">Resource Tuner</a> and modify the file itself. <a href="http://exilent.org/forums/index.php?/topic/102-high-dpi-scaling-on-windows-10/" rel="nofollow noopener noreferrer">This is a good tutorial</a> on how to modify it.</p> </body> </html>
Subscribe
0 Comments
Oldest