Documentation @errtext[]

May 20, 2008
12,167
133
Syracuse, NY, USA
There are other collections of error codes which I don't think @ERRTEXT handles, for example, COM errors, typically 0x8XXXXXXX. While there are larger ones <=15999, this is the biggest one @ERRTEXT reports on here (Win7).
Code:
v:\> echo %@errtext[15301]
The hash requested from the server is not available or no longer valid.
 
Apr 2, 2011
1,607
15
55
North Carolina, USA
So for Windows 7 - errtext[0..15301] would be good. thanks. I think I will just do something like this:

Code:
for /l %n in (0,1,16000) (echo %@errtext[%n] > "%@format[05,%n]_err.txt")

as some are multiple lines.