PowershellModulePath.psm1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#region Get-ModulePath
Function Get-ModulePath
{
    Param
    (
        [switch]$AsString,
        [switch]$Active
    )

    # Get current PATH
    $CurrentPath=(Get-ItemProperty -Path ‘Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment’ -Name PSModulePath).PSModulePath

    if($AsString)
    {
        if( $Active )
        {
            return $env:PSModulePath
        }
        else
        {
        return $CurrentPath
        }
    }
    else
    {
        $directories = @()
        if($Active)
        {
            $directories = $env:PSModulePath.Split(';')
        }
        else
        {
            $directories = $currentpath.Split(';')
        }

        foreach($d in $directories)
        {
            $obj = New-Object psobject
            $obj | Add-Member -MemberType NoteProperty -Name Path -Value $d

            $obj
        }
    }
}
#endregion

#region Add-ModulePath
Function Add-ModulePath
{
    Param
    (
        [parameter(
            Mandatory=$True,
            ValueFromPipeline=$True,
            Position=0
        )]
        [String[]]$Path,
        [Switch]$ActiveSessionOnly
    )

    # Get the current PATH
    $currentPathDirectories = @()

    if( $ActiveSessionOnly )
    {
        $currentPathDirectories = Get-ModulePath -Active
    }
    else
    {
        $currentPathDirectories = Get-ModulePath
    }

    foreach($p in $Path)
    {
        # Test if folder to be added to the PATH exists
        If( !(Test-Path $p))
        {
            Write-Error ("Folder " + $p + " does not exist!")
            continue
        }

        # Test if the folder already exists in the PATH
        foreach($d in $currentPathDirectories)
        {
            if( $d.Path -eq $p )
            {
                Write-Error ("Folder " + $p + " already exists in module path!")
                continue
            }
        }

        if( $ActiveSessionOnly )
        {
            $env:PSModulePath = $env:PSModulePath + ";" + $p
        }
        else
        {
            # Form the New Path
            $CurrentPath = Get-ModulePath -AsString
            $NewPath=$CurrentPath+’;’+$p

            # Set the new path
            Set-ItemProperty -Path ‘Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment’ -Name PSModulePath –Value $newPath
        }
    }
}
#endregion

#region Remove-ModulePath
function Remove-ModulePath
{
    Param
    (
        [parameter(
            Mandatory=$True,
            ValueFromPipeline=$True,
            Position=0
        )]
        [String[]]$Path,
        [switch]$ActiveSessionOnly
    )

    # Get the current PATH
    [string]$CurrentPath = ""
    [string]$newPath = ""

    $currentPathDirectories = @()
    if($ActiveSessionOnly)
    {
        $currentPathDirectories = Get-ModulePath -Active
    }
    else
    {
        $currentPathDirectories = Get-ModulePath
    }

    foreach($p in $Path)
    {
        # Test if the folder exists in the PATH
        $found = 0
        foreach($d in $currentPathDirectories)
        {
            if( $d.Path -eq $p )
            {
                $found = 1
                break
            }
        }
        if($found -eq 0)
        {
            Write-Error ("Folder " + $p + " does not exist in PATH")
            continue
        }
    }

    # Form the New Path
    foreach($d in $currentPathDirectories)
    {
        if(!$Path.Contains($d.path))
        {
            $newpath += $d.path + ";"
        }
    }    
    
    # Remove the last ";"
    $newPath = $newPath.Remove($newPath.Length - 1)

    # Set the new path
    Set-ItemProperty -Path ‘Registry::HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment’ -Name PSModulePath –Value $newPath
}
#endregion