I work with Octopush dashboard:
Code on screenshot brings me a list of TFS change sets. So I already have the list of my IDs. I need to run some exe file and pass parameters to this exe in following way through C#:
string cParams = "\"Test proj name\" " + "3.22.652.965863 " + "QA " + "false " + "463841" + " 464268" + " 463450" + " 463841" + " 463167" + " 458908" + " 462917" + " 462780" + " 462429" + " 461225" + " 460414";
var proc = System.Diagnostics.Process.Start(@"\\ptnas1\home_dirs\michaelb\Documents\Visual Studio 2015\Projects\Changesetes\Changesetes\bin\Debug\Changesetes.exe", cParams);
Or in PowerShell it works this way:
start "" "\\ptnas1\home_dirs\michaelb\Documents\Visual Studio 2015\Projects\Changesetes\Changesetes\bin\Debug\Changesetes.exe" "Test proj name" 3.22.652.965863 QA false 463841 464268 463450 463841 463167 458908 462917
pause
I need to combine betwwen my hard-coded argements "proj name", "version num", "string1", "false" and the list of IDs I received. How can I make it work in Powershell?

it works this wayand then askhow to make it work, so I'm confused as to what the question is.