-
Notifications
You must be signed in to change notification settings - Fork 98
Add Scope to Repositories #616
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Be sure permissions for ubuntu are also taken into consideration with install scope parameter, related isse #364 |
Please review the "CurrentUser" default as more and more users have "Back up important PC folders to OneDrive" Enabled in OneDrive: https://github.com/PowerShell/PowerShellGet/issues/195, https://github.com/PowerShell/PowerShellGet/issues/724, https://github.com/PowerShell/PowerShellGet/issues/627 PS: The problem around this request has in two-weeks it's two-year anniversary on Nov 21, 2022! |
@weyCC81 thanks for reaching out. There's an issue to track this in the PowerShell repository: PowerShell/PowerShell#15552 It is being worked on and will be addressed from the PowerShell side. |
At the very least, allow for a |
@JustinGrote We have Save-PSResource with the -IncludeXML parameter that would essentially give the desired outcome. The reason we didn't include |
@SydneyhSmith this was asked about in the PSConfEU Mini Con chat today and would be great to get into a v1.1 if possible |
+1 For this. As it is right-now it is impossible to upgrade a package that was installed with a private repository using # Import Module works as expected (Module installed -Scope AllUsers)
import-module mymodule
# throws error Update-PSResource: No installed packages were found with name 'mymodule' in scope 'CurrentUser'.
Update-PsResource mymodule
# throws error Update-PSResource: Package 'mymodule' could not be found in any registered repositories.
Update-PSResource mymodule -Scope AllUsers
Edit: I just realized that this is the same as #84 |
Summary of the new feature / enhancement
In order to make repository registration available system-wide we should add a
-Scope
parameter toRegister-PSRepository
. This parameter will determine the file path where the repository metadata is stored and therefore determine whether all users can access the repository registration. This change will also introduce the following parameters:Scope
Parameter toRegister-PSResourceRepository
Scope
Parameter toSet-PSResourceRepository
Scope
Parameter toUnregister-PSResourceRepository
Scope
Parameter toGet-PSResourceRepository
RepositoryScope
Parameter toFind-PSResource
RepositoryScope
Parameter toInstall-PSResource
RepositoryScope
Parameter toUpdate-PSResource
RepositoryScope
Parameter toUninstall-PSResource
RepositoryScope
Parameter toPublish-PSResource
RepositoryScope
Parameter toSave-PSResource
Proposed technical implementation details (optional)
CurrentUser will remain the default behavior even with these changes.
We will not enforce uniqueness across scope, and therefore need additional parameters to indicate repository scope.
The text was updated successfully, but these errors were encountered: