views:

238

answers:

1

There are many people asking questions on SO about how to get around the cmd.exe command maximum length. I was wondering what actually is the Windows command-line length limit? Is it different between version of Windows? Does using a 32-bit vs. a 64-bit version affect this limitation?

+2  A: 

The first result of asking google about your question was this MS Knowledge Base article:

On computers running Microsoft Windows XP or later, the maximum length of the string that you can use at the command prompt is 8191 characters. On computers running Microsoft Windows 2000 or Windows NT 4.0, the maximum length of the string that you can use at the command prompt is 2047 characters.

Frank Bollack
Care to summarize it here?
Michael Myers
It seems like Windows version DOES matter when it comes to the limit but 32 bit vs. 64 bit does not make any difference.
Gweebz
Side note: This also affects how long strings in environment variables can be when working with them in batch files.
Joey