I am using TightVNC along with a .vnc file to connect to a remote VNC server. The connection works, but the TightVNC window that opens is not maximized. I have searched for .vnc file options to specify window size/maximize but can't find it. Is there an option I can add to the .vnc file that says "Window Size = Maximized" or similar?
Please note that I do not want to go into "Full Screen" mode. That's a different option. I simply want the VNC window to be maximized on the desktop.
Thank you for any help.
Update:After reviewing the TightVNC source code, client-config-lib/ConnectionConfig.cpp, it appears the following are the only supported options in a .vnc file:
bool allowedCopyRect; unsigned char preferredEncoding; bool use8BitColor; int customCompressionLevel; int jpegCompressionLevel; bool viewOnly; bool isClipboardEnabled; bool useFullscreen; bool deiconifyOnRemoteBell; int scaleNumerator; int scaleDenominator; bool swapMouse; bool requestSharedSession; bool fitWindow; bool requestShapeUpdates; bool ignoreShapeUpdates; int localCursor;
So I don't think this is possible in TightVNC... Can anyone correct me on this?