Do you get a kick out of enabling customers?
Do you want enable organizations around the world to do better business using Technology?
Are you passionate about Technology?
Are you passionate about Microsoft?
If you answered yes to all this then I think you might be looking for a career at MGSI.
Drop in a note on my contact page.
Basicallyl for administrative purposes we can use the WMI Provider.
Firstly we have to enable the WMI Provider in the corresponding service config file.
<configuration> <system.serviceModel> <diagnostics wmiProviderEnabled="true" />… </system.serviceModel></configuration>
The sample below shows how to query for the endpoints in Power Shell
PS C:\> get-wmiobject endpoint -n root/ServiceModel | ft name name----IService@http://myMachine/Vdir/Service.svc PS C:\>
PS C:\> get-wmiobject endpoint -n root/ServiceModel | ft name
name----IService@http://myMachine/Vdir/Service.svc
PS C:\>