Reputation: 1557
What is maximum size of packagevariables for DTEXEC ProcessStartInfo while executing form C#(Process.start())
Upvotes: 0
Views: 339
Reputation: 294307
Afaik maximum length of a process command line is 32k, as it falls into the Environment Block limitations. However if a batch is involved then the cmd.exe's own limit of 8191 comes into play, see Command prompt (Cmd. exe) command-line string limitation.
Upvotes: 1