File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
sharepoint/sharepoint-ps/sharepoint-server Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,11 @@ For permissions and the most current information about Windows PowerShell for Sh
29
29
30
30
### ----------------EXAMPLE---------------------
31
31
```
32
- C:\PS>#Get UPA Proxy
33
- $pr = Get-SPServiceApplicationProxy | ? {$_.DisplayName.Contains(PartitionedUserProfileApplication_Proxy)}
34
-
35
- C:\PS>#Change the name of the proxy
36
- Set-SPProfileServiceApplicationProxy -Identity $pr -Name PartitionedUserProfileApplication_Proxy2
32
+ PS C:\>$proxy = Get-SPServiceApplicationProxy | ? {$_.TypeName -eq 'User Profile Service Application Proxy'}
33
+ PS C:\>Set-SPProfileServiceApplicationProxy -Identity $proxy -SiteNamingConflictResolution 2
37
34
```
38
35
39
- This example sets a proxy for the User Profile Service application .
36
+ This example sets the User Profile Service Application Proxy to use a site naming conflict resolution to use domain names prefixed to usernames .
40
37
41
38
42
39
## PARAMETERS
You can’t perform that action at this time.
0 commit comments