views:

42

answers:

1

Hi What is maximum size of packagevariables for DTEXEC ProcessStartInfo while executing form C#(Process.start())

+1  A: 

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.

Remus Rusanu