home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM *** QuikMenE - One-stop quick use of EnviMenu to access commonly used
- REM *** programs and settings. This is only a sample of what your
- REM *** menu might look like. Some of the options in the file
- REM *** are path-dependent and so may not work on your system.
- REM ***
- REM *** QuikMenE works best as a single icon on the desktop to gain
- REM *** quik hit-and-remoe access to many of the functions you
- REM *** commonly use throughout the day. In this way you can keep the
- REM *** desktop uncluttered and still avoid remembering commands.
- REM ***
-
-
- mode 80,20
- call EnviMenu MENU_CHOICE QuikMenE.cmd /Init "ToDo" /Pre :~ /Com "REM " /Sort /Prompt "Whaddya want?" /Esc
- if a%MENU_CHOICE%z == az GOTO FINISHED
- GOTO :~%MENU_CHOICE%
- GOTO FINISHED
-
-
- REM ***
- REM *** WHAT FOLLOWS IS A LIST OF FUNCTIONS I FREQUENTLY ACCESS BUT DON'T
- REM *** WANT TO REMEMBER EXACTLY HOW I ACCESS THEM
- REM ***
-
- :~Chess
- REM OS2 Chess - Play against computer or another player
- c:
- cd \
- start /F OS2CHESS.EXE
- GOTO FINISHED
-
- :~Solitaire
- REM Klondike - Solitaire
- c:
- cd \
- start /F KLONDIKE.EXE
- GOTO FINISHED
-
- REM Cat And Mouse uses the character Alt-255 to look like a space
- :~Cat And Mouse
- REM Chase Neko around the screen
- c:
- cd \
- start /F NEKO.EXE
- GOTO FINISHED
-
- :~Seek And Scan Files
- REM PMSEEK: Search disk(s) for files and text
- start /F PMSEEK.EXE
- GOTO FINISHED
-
- :~Backup
- REM Very quick and temporary backup of Arcive-bit files into E:\TempBak
- c:
- cd \
- start /F /C mini-backup.cmd
- GOTO FINISHED
-
- :~Information
- REM access manuals or other frequently needed information
- e:
- cd \Utl\System\Information
- start /F /C ViewInfo.cmd
- GOTO FINISHED
-
- :~Globe
- REM View the earth and sunlight globe
- e:
- cd \Utl\PMGlobe
- start /F PMGlobe.exe
- GOTO FINISHED
-
- :~ToDo
- REM View and edit TODO list
- e:
- cd \personal
- start /F c:\os2\apps\pmdtodo.exe e:\personal\ToDo.$T$
- GOTO FINISHED
-
- :~Quicken
- REM Quicken for Windows. Check writing and bank accounts.
- e:
- cd \Personal\QuickenW
- startd /DOS /FG /FS /SF E:\Personal\QuickenW\Quicken.ini c:\os2\mdos\winos2\winos2.com e:\Personal\QuickenW\QW.EXE
- GOTO FINISHED
-
- :~AmiPro
- REM Start AmiPro Windows word processor
- e:
- cd \
- startd /DOS /FG /FS /SF E:\Utl\AmiPro\AmiPro.ini c:\os2\mdos\winos2\winos2.com e:\Utl\AmiPro\AmiPro.exe
- GOTO FINISHED
-
- :~C Plus Plus IDE
- REM Borland C++ IDE
- e:
- cd \temp
- startd /DOS /FG /WIN /SF E:\UTL\BORLANDC\BIN\BC.INI e:\UTL\BORLANDC\BIN\BC.EXE
- GOTO FINISHED
-
- :~Windows
- REM Microsoft Windows 3.0 - WINOS2
- e:
- cd \
- startd /DOS /FG /FS /SF C:\OS2\MDOS\WINOS2\WINOS2.INI c:\OS2\MDOS\WINOS2\winos2.com
- GOTO FINISHED
-
- :~Swapper Size
- REM Show swapper size
- e:
- cd \utl
- start /F dinfo.exe
- GOTO FINISHED
-
- :~Memory Available
- REM Show system memory for DosQuerySysInfo
- cls
- e:\utl\MemAvail.exe
- echo
- echo
- pause
- GOTO FINISHED
-
- :~Stuff Random thoughts
- REM Quick edit of file for storing information
- start /F epm.exe /M /O /W e:\personal\Stuff
- GOTO FINISHED
-
- :~Terminal
- REM Run Modem Terminal program
- c:
- cd \os2\apps
- start /F softerm.exe
- GOTO FINISHED
-
- :~Names And Addresses
- REM My Phone Book
- start /F pmmbase.exe e:\personal\Addresses.$$F
- GOTO FINISHED
-
- :~Edit This Menu
- REM Start editor to add another item to this menu
- start /F epm.exe /M /O /W QuikMenE.cmd
- GOTO FINISHED
-
- :~Calculator
- REM Presentation Manager's Calculator
- start /F c:\os2\apps\pmdcalc.exe
- GOTO FINISHED
-
- :~Create Boot Disk for OS2
- REM Create a boot disk on floppy A:
- start /F cmd.exe /C makeboot 1 a: c:
- GOTO FINISHED
-
- :~Pulse
- REM Show system activity
- start /F pulse.exe
- GOTO FINISHED
-
- :~Backup Workplace Shell
- REM Backup the Workplace Shell to restore when inevitable disaster occurs
- e:
- cd \Utl\System
- xdel WPSBckup.old\*.* /s /d /n
- rename WPSBckup WPSBckup.old
- start /F E:\utl\System\WPSBackup.exe E:\Utl\System\WPSBckup
- REM *** Note that this comes from New Freedom Data Center, P.O. Box 461
- REM *** New Freedom Pa, 17349......authored by Dave Lester
- GOTO FINISHED
-
- :~Workframe
- REM IBM WorkFrame/2
- e:
- cd \utl\IBMWF
- call WFENV.cmd
- GOTO FINISHED
-
- :~CDMenu
- REM Interactively move among directories
- start /F /C CDMenu.cmd
- GOTO FINISHED
-
- :FINISHED
- SET MENU_CHOICE=
-