1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
@echo off
:: This is a DOS batch file facilitating the usage of PS_VIEW---part 2
:: The purpose is to restore standard keyboard functions.
:: ANSI.SYS is assumed to be installed. See also ANSIPRE.BAT.
::
:: Authors: Wietse Dol and Erik Frambach
:: with a contribution of Bogus\l{}aw Jackowski and Piotr Pianowski
::
:: Version 1.00 (Thursday, May 4th, 1995)
:: Version 1.01 (Friday, October 27th, 1995)
::
:: ======================================================================
:: ANSI.SYS DEFINITIONS
:: ======================================================================
::
:: [F9], [F10], [F11], [F12]
echo [0;67;0;67p[0;68;0;68p[0;133;0;133p[0;134;0;134p[1A
:: [F2], [F3], [F4]
echo [0;60;0;60p[0;61;0;61p[0;62;0;62p[1A
:: [PgDn], [PgUp]
echo [0;81;0;81p[0;73;0;73p[1A
:: [Home], [End]
echo [0;71;0;71p[0;79;0;79p[1A
:: [Alt + Period] and [Alt + Comma], i.e., [Alt + Greater], [Alt + Less]
echo [0;52;0;52p[0;51;0;51p[1A
:: [Del], [Ins]
echo [0;83;0;83p[0;82;0;82p[1A
:: [Left Arr], [Right Arr], [Up Arr], [Down Arr]
echo [0;75;0;75p[0;77;0;77p[0;72;0;72p[0;80;0;80p[1A
:: [Tab], [Shift + Tab]
echo [9;9p[0;15;0;15p[1A
:: [Ctrl + Print Scr]
echo [0;114;0;114p[1A
:: [Ctrl + X] = [Alt + X] = [Esc]
echo [24;24p[0;45;0;45p[27;27p[1A
:: [Ctrl + Q] = [Alt + Q] = [Alt + F4]
echo [17;17p[0;16;0;16p[0;107;0;107p[1A
:: [Alt + H] = [F1]
echo [0;35;0;35p[0;59;0;59p[1A
|