1
+ function Register-PSFModuleScope {
2
+ <#
3
+ . SYNOPSIS
4
+ Provide a scope you can install modules to.
5
+
6
+ . DESCRIPTION
7
+ Provide a scope you can install modules to.
8
+ Those are used by Install-PFModule to pick what path to install to.
9
+
10
+ . PARAMETER Name
11
+ Name of the scope.
12
+ Must be unique, otherwise it will overwrite an existing scope.
13
+
14
+ . PARAMETER Path
15
+ Path where modules should be stored.
16
+
17
+ . PARAMETER Mode
18
+ Specifying a mode will add the path provided to the PSModulePath variable for this session.
19
+ - Append: Adds the path as the last option, making it the last location PowerShell will look for modules.
20
+ - Prepend: Adds the path as the first option, making it take precedence over all other module paths.
21
+
22
+ . PARAMETER ScriptBlock
23
+ Logic determining, where modules should be stored.
24
+ This scriptblock will not receive any parameters.
25
+ Used to dynamically determine the path, may be executed against remote computers,
26
+ when installing to remote computers.
27
+ Keep in mind that dependencies may not be available.
28
+
29
+ . PARAMETER Description
30
+ A description to add to the module scope registered.
31
+ Purely for documentation purposes.
32
+
33
+ . EXAMPLE
34
+ PS C:\> Register-PSFModuleScope -Name WinPSAllUsers -Path 'C:\Program Files\WindowsPowerShell\Modules'
35
+
36
+ Registers the module-scope "WinPSAllusers" with the default path for Modules in Windows PowerShell.
37
+ This would allow installing modules for Windows PowerShell from PowerShell 7.
38
+ #>
39
+ [CmdletBinding ()]
40
+ param (
41
+ [Parameter (Mandatory = $true )]
42
+ [string ]
43
+ $Name ,
44
+
45
+ [Parameter (Mandatory = $true , ParameterSetName = ' Path' )]
46
+ [string ]
47
+ $Path ,
48
+
49
+ [Parameter (ParameterSetName = ' Path' )]
50
+ [ValidateSet (' Append' , ' Prepend' )]
51
+ [string ]
52
+ $Mode ,
53
+
54
+ [Parameter (Mandatory = $true , ParameterSetName = ' Scriptblock' )]
55
+ [PsfValidateLanguageMode (' FullLanguage' )]
56
+ [scriptblock ]
57
+ $ScriptBlock ,
58
+
59
+ [string ]
60
+ $Description
61
+ )
62
+ process {
63
+ $typeMap = @ {
64
+ $true = ' Dynamic'
65
+ $false = ' Static'
66
+ }
67
+ $script :moduleScopes [$Name ] = [PSCustomObject ]@ {
68
+ PSTypeName = ' PSFramework.NuGet.ModulePath'
69
+ Name = $Name
70
+ Type = $typeMap [($ScriptBlock -as [bool ])]
71
+ Path = $Path
72
+ ScriptBlock = $ScriptBlock
73
+ Description = $Description
74
+ }
75
+ if (-not $Mode ) { return }
76
+
77
+ $envPaths = $env: PSModulePath -split ' ;'
78
+ if ($Path -in $envPaths ) { return }
79
+ switch ($Mode ) {
80
+ ' Append' {
81
+ $envPaths = @ ($envPaths ) + $Path
82
+ }
83
+ ' Prepend' {
84
+ $envPaths = @ ($Path ) + $envPaths
85
+ }
86
+ }
87
+ $env: PSModulePath = $envPaths -join ' ;'
88
+ }
89
+ }
0 commit comments