-
Notifications
You must be signed in to change notification settings - Fork 48
Home
The SharePoint Client Browser (SPCB) uses the CSOM to connect to a remote SharePoint site collection and shows the site structure with related properties and values.
The default location of the log files is: C:\Users\<username>\AppData\Roaming\SPCB\Logs
SPCB tool supports changing the location of the log files to a custom location you prefer. This can be achieved by adding a setting parameter to the SPCB.exe.Config file (located in the same folder as the SPCB.exe). Open the SPCB.exe.Config file and add/update the following parameter "LogLocationPathOverride".
In the example below the logs are written to 'C:\Temp\SPCB' folder.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="LogLocationPathOverride" value="C:\Temp\SPCB" />
</appSettings>
</configuration>