Posts

Showing posts from 2021

Wsp Struck On Deploying

 Check status with below Powershell: ------------------------------------------ $farm = get-spfarm   $ss = $farm.Servers | ? {       $_.Role -notlike "Invalid"   }   foreach($s in $ss) {       $s.name       Write-host "........................."       $is = $s.ServiceInstances       foreach($i in $is) {           if ($i.TypeName -eq "Microsoft SharePoint Foundation Administration") {               $i.Typename               $i.status           }           if ($i.TypeName -eq "Microsoft SharePoint Foundation Timer") {               $i.Typename               $i.status           }...