Crow Canyon Software Forum

Forum Navigation
Please or Register to create posts and topics.

Get site being referenced in CCSWorkflowTimerLogs

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

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