Skip to content
Bram de Jager edited this page Nov 1, 2018 · 1 revision

SharePoint Client Browser documentation

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.

Where to find the Log files

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>

Clone this wiki locally