Hello,
I want to display a result on multilple lines because I want to execute a script remotly with winRM on computers.
The actual result is displayed above.
I tried to add a new line with “System.Environment.NewLine” or “br” tag but it doesn’t works. I try to return a String so…
-
Controller:
BackgroundJob.Enqueue( () => new executeCommand().winRm(data["fqdn"].Value<string>(), data["username"].Value<string>()));
My method winRm is returning a string.