Chris Magnuson

Results 17 comments of Chris Magnuson

Here is an example from [UniversalDashboard ](https://github.com/ironmansoftware/universal-dashboard)of [using https with Kestrel with and without a certificate file](https://github.com/ironmansoftware/universal-dashboard/blob/master/src/UniversalDashboard/Server/Server.cs#L97).

@jeremymcgee73 Whenever you go to add docs, I have found that `Add-NetIPHttpsCertBinding` works in place of `netssh`: ``` $CertificatePassword = "PasswordToDecryptCertificate" | ConvertTo-SecureString -AsPlainText -Force $CertificateImport = Import-PfxCertificate -FilePath "$Local\Certificate.pfx"...

I know this is a little old but I would like to be able to use the streaming aspect of Wait-RSJob so that as jobs complete I can immediately start...

@MVKozlov I am sorry I must not have been clear, I want to process a set of asynchronous jobs as soon as each one is complete. To do this I...

@MVKozlov I have created some sample code below that I think will help explain. I believe this is closest to the `$data1 | { scriptblock-1 } | { scriptblock-2 }`...

@MVKozlov Nice! I cloned this and ran the example from PoshRSJob [README.md](https://github.com/proxb/PoshRSJob/blob/master/README.md) and now the example works again: ``` PS > 1..10|Start-RSJob { >> if (1 -BAND $_){ >> "First...

@MVKozlov I see what you mean, don't see much activity from @proxb since February. I will focus on trying to use that branch of your fork in our code for...

As PowerShell#6463 has been closed I think the license could be updated and the packaged published. Hit this today when trying to install.

I captured the command line that gets called by nteract to launch the kernel using process explorer: `dotnet C:\ProgramData\chocolatey\lib\jupyter-powershell\PowerShell-Core\PowerShell-Kernel.dll C:\Users\username\AppData\Roaming\jupyter\runtime\kernel-f7d33565-81f6-41c2-b8ec-c2dc67b49a43.json` The formatted contents of that file are: ``` { "version":...

@darkoperator Is there a link to where the refactor/rewrite is being done?