- I�ve installed SE_UTIL properly but when I test the installation and manually run CHECK.BAT, I keep getting an "Out of environment space" error message. What gives ?
COMMAND.COM requires environment space to store variables. If enough space is not specified, this error message will appear. Increasing the environment space will be required. If this is Windows for Workgroups (WFWG) 3.1x, use PIF Editor and edit the DOSPRMPT.PIF file to include enough space for the environment. Add /E:1024 on the "Optional Parameters" line. For Windows 95, edit the properties for the MS-DOS Prompt icon and add /E:1024 to the end of the CMD LINE entry.
- I want to create an icon in Windows 3.1x to run CHECK.BAT. When I create one and double- click on it, I get an "out of environment space" error message. What should I modify?
In the program group of your choice, place the icon that will reference CHECK.BAT. Then, select FILE and choose NEW ITEM. Fill in the following values:
Item name: CHECK
Command line: c:\command.com /e:1024 /c s:\css\antivir\check.bat
Working Directory: s:\css\antivir
The above example assumes that the file location for CHECK.BAT is on the S: drive: use the correct drive letter for your system in this command.
- I want to create an icon on the Windows 95 desktop to run CHECK.BAT. When I create one and double-click it, I get an "Out of environment space" error message. What should I modify?
On a blank area of the desktop, click the right mouse button and select NEW, then choose SHORTCUT. Use the BROWSE button to locate CHECK.BAT. After finding CHECK.BAT, click OPEN and then choose NEXT. Type a name for the shortcut, CHECK, and click FINISH. Next, right-click on the icon you just created and choose PROPERTIES. Select the PROGRAM tab and fill in the following values:
Item name: CHECK
Cmd line: s:\css\antivir\check.bat
Working: s:\css\antivir
Batch file:
Run: Normal
[x] Close on exit
The above example assumes that CHECK.BAT is on the S: drive: be sure to substitute the correct drive letter for your system. Next, select the MEMORY tab and enter the following values:
Total: 400
Initial Environment: Auto
- I�ve put the syntax to run SE_UTIL within the login script but now it is hanging. One error message I am seeing is "MPR not responding". What might be causing this ?
MPR is an acronym for Multi-Protocol Router. It is installed routinely when Windows 95 is placed on your system. When connecting to a Novell NetWare 4.1x server with Client32 running, it was discovered that there was a syntax problem that could cause this error if SE_UTIL was being used in the login script. The original syntax was:
#command /e:1024 /c s:\css\antivir\check.bat
To correct the problem and eliminate the error, change the above syntax by substituting @ for the # symbol as follows:
@command /e:1024 /c s:\css\antivir\check.bat