PackageManagementProviderResource
PackageManagementProviderResource copied to clipboard
Modules with DSC resources for the PackageManagement(aka OneGet) providers.
### Summary of the new feature / enhancement PackageManagementResource can install Winget and drive that, but it is nearly impossible to use meaningfully for two reasons: 1- winget install accepts...
### Prerequisites - [X] Write a descriptive title. - [X] Make sure you are able to repro it on the latest version - [X] Search the existing issues. ### Steps...
``` Configuration PSModulesConfig { Import-DscResource -ModuleName 'PSDesiredStateConfiguration' Import-DscResource -ModuleName @{ModuleName="PackageManagement"; RequiredVersion="1.4.7"} Node $AllNodes.NodeName { foreach ($moduleName in $Node.Modules) { PackageManagement $moduleName { Name = $moduleName Source = "PSGallery" Ensure =...
``` PS C:\Windows\system32> Get-InstalledModule PackageManagement Version Name Repository Description ------- ---- ---------- ----------- 1.4.7 PackageManagement PSGallery PackageManagement (a.k.a. OneGet) is a new way to discover and install software packages from...
As far as I can tell, there is no way to get it to update any currently installed module to whatever the latest version is. yes I am aware are...
Is this resource deprecated in favour of the DSC resources in the PackageManagement module? https://github.com/OneGet/oneget/tree/master/src/Microsoft.PackageManagement.DscResources cc @brywang-msft
I have a DSC with resources: PackageManagementSource NugetRepository { Ensure = "Present" Name = "TrDevOpsNuget" ProviderName= "Nuget" SourceUri = "http://my.internal.nuget.repo" InstallationPolicy ="Trusted" } NugetPackage Agent { DependsOn = "[PackageManagementSource]NugetRepository" Name...
I've written a few providers for OneGet. I'm guessing I'd need to follow the Nuget DSC Resource approach to create a DSC Resource for mine? Thank you
Hi, any plans on porting that over to a class based resource? I have already started doing one here: https://github.com/davidobrien1985/DscResources/tree/master/PowerShellModule Obviously don't want to spend more time on it if...