SharePoint - add all wsps from a folder
foreach ($item in (Get-Childitem -path c:\temp\wsp)) {
$location = "c:\temp\wsp\" + $item.Name
add-spsolution -literalpath $location
}
Browser ini sudah tidak didukung.
Mutakhirkan ke Microsoft Edge untuk memanfaatkan fitur, pembaruan keamanan, dan dukungan teknis terkini.
foreach ($item in (Get-Childitem -path c:\temp\wsp)) {
$location = "c:\temp\wsp\" + $item.Name
add-spsolution -literalpath $location
}