Why this program does not run telnet in windows 7
in XP it works fine
include "fivewin.ch"
FUNCTION MAIN()
winexec( "telnet" )
RETURN NIL
P.S. telnet is enabled
Marco Boschi
info@marcoboschi.it
info@marcoboschi.it
Why this program does not run telnet in windows 7
in XP it works fine
FUNCTION MAIN()
winexec( "telnet" )
RETURN NIL
P.S. telnet is enabled
May be because telnet is not enabled by default in win 7. Can you run it from prompt?
Sorry I did not seen telnet is enabled.
P.S. is enabled!
WaitRun( "Telnet",1 )Rick,
nothing
If I copy telnet.exe in the same folder of program
IT RUNS
bye
![]()
WaitRun( "c:\windows\system32\Telnet.exe",1 )WaitRun( GetWinDir()+"\system32\Telnet.exe",1 )cStrg := "runas /noprofile /user:" + GetEnv( "COMPUTERNAME" ) + "\" + GetEnv( "USERNAME" ) + " TELNET"
winexec( cStrg )ok
many thanks
![]()