|
Some computer lab managers prefer to install MASM on a network share. You can do this, but you may run into a problem with the Help file supplied with the book (IrvineLibHelp.chm). Microsoft Windows patch KB896358 prevents you from executing CHM (help) files located on network drives. Gerald Cahill from Antelope Valley College, the creator of IrvineLibHelp, uses a simple batch file that works around the restriction by copying the help file to drive C just before displaying it. Assuming his network share is mapped to drive S, here is the batch file: copy S:\masm615\IrvineLibHelp.chm c:\Windows\help\
start "hh.exe" "c:\Windows\help\IrvineLibHelp.chm"
exit
The START command launches a Windows program, and the EXIT command closes the command window, leaving the help file open. (Posted 9/9/05.) |