makecert

Using makecert for Development SSL

假装没事ソ 提交于 2019-11-26 06:54:14
问题 Here\'s my situation: I\'m trying to create a SSL certificate that will be installed on all developer\'s machine\'s, along with two internal servers (everything is non-production). What do I need to do to create a certificate that can be installed in all of these places? Right now I\'ve got something along these lines, using the makecert application in Microsoft Visual Studio 8\\SDK\\v2.0\\Bin: makecert -r -pe -n \"CN=MySite.com Dev\" -b 01/01/2000 -e 01/01/2033 -eku 1.3.6.1.5.5.7.3.1 -ss

How to pass multiple arguments in processStartInfo?

孤人 提交于 2019-11-26 06:44:24
问题 I want to run some cmd command from c# code. I followed some blogs and tutorial and got the answer, but I am in little bit confused i.e how should I pass multiple arguments? I use follow code: System.Diagnostics.Process process = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(); startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal; startInfo.FileName = \"cmd.exe\"; startInfo.Arguments = ... What will be