Kevin Marquette
Kevin Marquette
I just want to add that `-WhatIf` support is a native feature of PowerShell. It is really helpful for admins learning the commands or doing a dry run before making...
I also ran into this issue. I spent some time looking into it and it does not work like I think it would. If the file is downloaded and then...
The core issue driving this issue in nuget here: https://github.com/NuGet/Home/issues/3050 Either drop to a 3 part version number or place anything except 0 in the 4th part. This will mitigate...
How is the DSC Resource Kit published so that the 4 part version is showing up correctly in PSGallery? The core issue here is that Publish-Module is using NuGet and...
I was only asking about publishing because `Publish-Module` is handing the work off to nuget. The publishing process must be using a down level version of nuget to preserve the...
More specifically, if the system running `Publish-Module` updates NuGet then you will also have this issue. `Publish-Module` doesn't pin to specific version and that is why people are running into...
Thank you, That will work for my use case. Over use of `-Force` was causing me issues in other places.
I second `~/AppData/Local/PowerShell/Modules` location. Thats the first place I thought. It should be added in addition to the existing paths. I would like to have a trivial way to inquire...
I also support this request. If an admin runs `Install-Module -Scope AllUsers` on a system, a different admin has to first register this repository in order to call `Update-Module`. Every...
I partially mitigated this by smoothing over closing braces. When the brace is the last line, then it is reset to 0. This is still an issue where the last...