Question

Simple question... how do I get the machine name off of the SPContext object.

Était-ce utile?

La solution

Maybe SPServer.Local is what you are looking for...

Autres conseils

I'm not sure why you would use SPContext for that - perhaps you are looking for this instead: Environment.MachineName

Try HttpContext.Current.Server.MachineName

POSH Scripts to get you server info

(Get-SPServer has other params - check for unique server)

$myserver = Get-SPServer $myserver | select-object *

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top