Why?
Because I have two environments: development and production. They look very similar and I don't whant to broke production environment during testingHow?
What I've got?
background-color : #B80000 !important;
}
Vim is the one of the most powerful and widely used text editor. But how can you learn it staying at home with children. The answer is simple and straightforward. You can learn vim by rough memorizing. Recently I had experience of developing small set of web applications for internal use. These applications were based on ZKoss AJAX UI framework. During development me and my teammates realized that we need set of UI test just because it easier and faster to test our work automatically than manually.
Also we have some issues:
In Windows 7 and Windows Server 2008 R2, both Telnet client and Telnet server features are available, although they are not turned on by default. These features can be turned on by an administrator (or a user with an administrator account) through Control Panel\Programs\Programs and Features\Turn Windows features on or off. Instructions for turning on the Telnet client are also provided in Help in Windows 7 and Windows Server 2008 R2.
(Source : http://technet.microsoft.com/en-us/library/ee126154%28WS.10%29.aspx)
To set desired number of connection please modify next registry key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\TelnetServer\1.0]
"MaxConnections"=dword:00000002
(Source: http://64.4.11.252/en-us/library/cc771020(WS.10).aspx)
You should modify file C:\WINDOWS\system32\login.cmd ( check registry key LoginScript in node HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\TelnetServer\1.0)
@echo off
rem
rem Default global login script for the Telnet Server
rem
rem In the default setup, this command script is executed when the
rem initial command shell is invoked. It, in turn, will try to invoke
rem the individual user's login script.
rem
rem Modification allows to have own autorun for each user
echo *===============================================================
echo Microsoft Telnet Server.
echo Hello %USERRNAME%
echo To have autorun please modify (or create)
echo %HOMEDRIVE%\%HOMEPATH%\autotelnet.bat
echo *===============================================================
cd /d %HOMEDRIVE%\%HOMEPATH%
IF EXIST "%HOMEDRIVE%\%HOMEPATH%\autotelnet.bat" call "%HOMEDRIVE%\ %HOMEPATH%\autotelnet.bat"
After that, modify your autotelnet.bat in your user directory (for example add c:\dn\dn line to run DosNavigator on each logon).
If you have troubles with hot-keys usage, you could run telnet client in next way
telnet -t vtnt YOUR_SERVER_NAME