$SPWebApp =
Get-SPWebApplication https://abc.com
foreach ($SPSite in
$SPWebApp.Sites)
{
if ($SPSite -ne $null)
{
$site=Get-SPSite $SPSite
Ssite
$dbname =
$site.ContentDatabase.name
$dbname
$rbss=$site.ContentDatabase.RemoteBlobStorageSettings
#$rbss
$SPSite.Dispose()
}
}
5 comments:
may i know how to check the sharepoint userid number
hi Rex Chia,
$web = Get-SPWeb URLTOWEB
$user = $web.EnsureUser("USERLOGINNAME")
$id = $user.ID
try and see.
try this in sql or where?
hi rex chia,
just noticed i have miss out your question. ha ha. this run at sharepoint powershell.
Post a Comment