Forum Discussion
nileshvk
Sep 17, 2017Copper Contributor
Site Collection: Get Web Id fails
Hi Guys, I am using below code to get web Id of list of site collections using code below. The issue is i always get GUID of the first site collection howerver the other webinfo like Title, Url,e...
Sep 18, 2017
Faced similar issue in the past, just initially $web with null as below and check.
foreach ($row in $data)
{
Connect-PnPOnline -Url $row.Url -Credentials $creds
$web=Get-PnPWeb
write-host "web: " + $web.Title
write-host "web: " + $web.id
$web=$null
}
- nileshvkSep 18, 2017Copper Contributor
Hi Narsima,
I have tried this already. No luck with this change.