Kamil Sacek

Results 35 comments of Kamil Sacek

The $isInsideContainer is not configurable, it is set by ```powershell $isInsideContainer = ($myUsername -eq "user manager\containeradministrator") ``` Which is true in my case.

When I removed the part ```powershell if ($IsInsideContainer) { (' if (!$restartingInstance) { $cert = New-SelfSignedCertificate -DnsName "dontcare" -CertStoreLocation Cert:\LocalMachine\My winrm create winrm/config/Listener?Address=*+Transport=HTTPS (''@{Hostname="dontcare"; CertificateThumbprint="'' + $cert.Thumbprint + ''"}'') winrm...

I think implicit, will check. Sorry for the delay. If I do import-module for another module, which have bccontainerhelper as dependency, does it count as implicit or explicit?

HI @lktraser , in between, you can try to look at function Invoke-PaketForAl function in NVRAppDevOps powershell module, which is doing what you want by using Paket CLI. It needs...

@DevHarmonize I agree that symbol package should have dependency on symbol packages only and full package only on full packages. For the tools like Paket and Nuget, when creating list...

Workaround for now is to run my\additionalsetup.ps1 e.g. through custom my\servicesettings.ps1 because this is runned from navinstall.ps1 which is running even for filesOnly container. But there is no way how...

Hmm, it seems more complicated. When I resolved the problem with connection, I have problem with another code running in the get-bccontainersession failing on error: ``` Cannot find path 'C:\Program...

Ok, I did new research and there are the differences when running from outside container and from within container In both cases, this script was used to try to create...

Ok, after few days of research, I have found the original source of the problem. This is the result: **Problems:** 1. when inside container, new-pssession -containerid xxx cannot be used,...

I am checking the code and I do not understand why the AddTeamToRepo function is part of the ado2gh (ado2gh/Commands). I see it as generic tool, which should be on...