문제

I have created a web application using powershell and associate it with custom application proxy group. But i also want to add all default application proxies except Managed Metadata Service to my custom proxy group using powershell. How i do this using powershell?

도움이 되었습니까?

해결책

You can use the following commands to add the new member in the custom proxy group.

#obtain the identity of the service application
$SAProxy = Get‐SPServiceApplicationProxy | ? {$_.DisplayName ‐eq "Name of Service Application"}

#add the Service Application's proxy to the proxy group you want to

Add‐SPServiceApplicationProxyGroupMember "name of proxy group" ‐Member $SAProxy

you have to add all the Services App one by one or if you can loop them.

http://jantjesworld.blogspot.com/2013/09/proxy-groups-in-sharepoint-2013.html

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top