Crow Canyon Software Forum
Get site being referenced in CCSWorkflowTimerLogs
Quote from DavisA on May 1, 2026, 3:25 pmI have the following from the CCSWorkflowTimerLogs and was wondering what property the highlighted guid is coming from. I've tried get-spsite & get-spweb using the guid as ID and it can't be found.
[ERROR] Error occurred during timer job processing in a web site id: 80b2c321-b8d5-4812-8c9d-46eb1a060cdd, Error Message: System.IO.FileNotFoundException: <nativehr>0x80070002</nativehr><nativestack></nativestack>
~Thanks
I have the following from the CCSWorkflowTimerLogs and was wondering what property the highlighted guid is coming from. I've tried get-spsite & get-spweb using the guid as ID and it can't be found.
[ERROR] Error occurred during timer job processing in a web site id: 80b2c321-b8d5-4812-8c9d-46eb1a060cdd, Error Message: System.IO.FileNotFoundException: <nativehr>0x80070002</nativehr><nativestack></nativestack>
~Thanks
Quote from supportTeam on May 6, 2026, 4:55 pmHi DavisA,
Please run the following PowerShell script in both source and target SharePoint servers using SharePoint Management Shell. This will create a CSV file at “C:\SiteIds.csv” that can be used to find the site URL corresponding to the site id in the error.
Get-SPSite -Limit All | ForEach-Object {
$_.AllWebs | Select-Object Title, Url, ID
} | Export-Csv "C:\SiteIds.csv" -NoTypeInformation
Hi DavisA,
Please run the following PowerShell script in both source and target SharePoint servers using SharePoint Management Shell. This will create a CSV file at “C:\SiteIds.csv” that can be used to find the site URL corresponding to the site id in the error.
Get-SPSite -Limit All | ForEach-Object {
$_.AllWebs | Select-Object Title, Url, ID
} | Export-Csv "C:\SiteIds.csv" -NoTypeInformation