-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGet-OneShellUserProfile.ps1
85 lines (82 loc) · 3.05 KB
/
Get-OneShellUserProfile.ps1
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
Function Get-OneShellUserProfile
{
[cmdletbinding(DefaultParameterSetName = 'All')]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string[]]$Identity
,
[parameter(ParameterSetName = 'OrgProfileIdentity')]
[string]$OrgProfileIdentity
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[ValidateScript( {Test-DirectoryPath -Path $_})]
[string[]]$Path = $Script:OneShellUserProfilePath
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
$ProfileType = 'OneShellUserProfile'
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[ValidateScript( {Test-DirectoryPath -Path $_})]
[string[]]$OrgProfilePath
,
[parameter(ParameterSetName = 'GetCurrent')]
[switch]$GetCurrent
)#end param
Begin
{
}
Process
{
$outputprofiles = @(
switch ($PSCmdlet.ParameterSetName)
{
'GetCurrent'
{
$script:CurrentUserProfile
}
Default
{
$PotentialUserProfiles = GetPotentialUserProfiles -path $Path
$FoundUserProfiles = @($PotentialUserProfiles | Where-Object {$_.ProfileType -eq $ProfileType})
if ($FoundUserProfiles.Count -ge 1)
{
switch ($PSCmdlet.ParameterSetName)
{
'All'
{
$FoundUserProfiles
}
'Identity'
{
foreach ($i in $Identity)
{
$FoundUserProfiles | Where-Object -FilterScript {$_.Identity -eq $i -or $_.Name -eq $i}
}
}
'OrgProfileIdentity'
{
$FoundUserProfiles | Where-Object -FilterScript {$_.organization.identity -eq $OrgProfileIdentity -or $_.organization.Name -eq $OrgProfileIdentity}
}
}#end Switch
}#end if
}#end Default
}#end Switch
)#end outputprofiles
#output the found profiles
$outputprofiles
foreach ($opp in $outputprofiles)
{
if ($null -ne $opp)
{
if ($opp.ProfileTypeVersion -lt $script:UserProfileTypeLatestVersion)
{
Write-Warning -Message "The Schema of User Profile $($opp.Name) is out of date. Run Update-OneShellUserProfileTypeVersion -Identity $($opp.Name) to update."
}
}
}
}#end End
}