Errata for Windows NT Workstation Configuration and Maintenance
Submit your own errata for this product.
The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".
The following errata were submitted by our customers and approved as valid errors by the author or editor.
Color Key: Serious Technical Mistake Minor Technical Mistake Language or formatting error Typo Question Note Update
| Version |
Location |
Description |
Submitted By |
Date Submitted |
Date Corrected |
| Printed |
Page iv
|
Insert the following line below "Production Editor: Clairemarie Fisher O'Leary":
"Cover Designer: Hanna Dyer"
|
Anonymous |
|
|
| Printed |
Page 24
|
The script at bottom of page does not close registry keys maybe we should ignore this.
|
Anonymous |
|
|
| Printed |
Page 37
Last paragraph, second sentence used to read |
"... we add it to the hash table %localfiles."
It now reads:
"... we add it to the hash table %local_files."
|
Anonymous |
|
Sep 01, 1999 |
| Printed |
Page 37
Last paragraph, third sentence used to read |
"Note that %localfiles never ... "
It now reads:
"Note that %local_files never ... "
|
Anonymous |
|
Sep 01, 1999 |
| Printed |
Page 39
First section of script |
This part of the script checks every remote file to see if the
workstation has an equivalent; if it does not, it copies it over.
The slight snag is that the local file list only contains ".pl"
files (as dictated by the part of the script at the top of p.38),
whereas we check ALL remote files, including NON ".pl" ones. This
means that the script will try to copy "." and "..", which is not
good! Luckily, this is an easy error to spot and alter. The line
which now reads:
else `xcopy z:\$remotepath\$remote_file $localpath\$remote_file`;
Should be replaced with:
else
{
if($remote_file =~ /.pl$/)
{
`xcopy z:\$remotepath\$remote_file $localpath\$remote_file`;
}
}
I don't know how this error was missed; the copy of the script that
I have works fine (i.e. HAS this change in it).
|
Anonymous |
|
|
| Printed |
Page 85
|
The second set of code, about halfway down the page, used to read:
"close(NETNAMES)"
It now reads:
"close(NETNAMES);"
|
Anonymous |
|
Sep 01, 1999 |
| Printed |
Page 166
Colophon: the first line of the third paragraph now reads |
"Edie Freedman designed the cover of this book, using a
19th-century engraving from the Dover Pictorial Archive."
Should read:
"Hanna Dyer designed the cover of this book, using a 19th-century
engraving from the Dover Pictorial Archive, based on a series
design by Edie Freedman."
|
Anonymous |
|
|