The following has been tested using 1.2.1.6, under a virtual Windows 7 Home Basic Edition (x86) and a real Windows 10 Pro (x64)
I wanted to execute a reverse connection to my own computer via an automated task (Windows Task Scheduler).
The task gets executed but nothing happens.
For your information:
The Task Scheduler does NOT execute WINVNC -connect HOSTNAME/IP directly,
but runs a self compiled commandline .exe, that i've made using http://orwelldevcpp.blogspot.be/ and http://www.codeblocks.org/
Code: Select all
#include <windows.h>
//#include <winver.h>
using namespace std;
int main() {
// system("NETSTAT -N | FINDSTR /I ESTABLISHED | FINDSTR :1234 >NUL || winvnc.exe -connect 192.168.0.226:1234");
system("winvnc.exe -connect 192.168.0.226");
return 0;
}
Hopefully this can be fixed, as i intent to run multiple commands on a scheduled/repeating time and want to do this via an .exe, so that i don't have to add more stuff to the task scheduler (i prefer this method over a .bat/.cmd).
With the automated task i can manage my computers when i'm not at home, without having to manually connect to them (call me lazy, i find it convenient ).
Also (to eliminate any misunderstandings): the server connects to the correct address, the 192. was purely entered as an example and i also use encryption/authentication.
EDIT: 1.2.1.7 is also affected
/AnotherUVNCuser