Quantcast
Channel: SharePoint Client Browser for SharePoint Online and SharePoint Server (on-prem)
Viewing all 648 articles
Browse latest View live

Edited Issue: Error when trying to add site or tenant [65850]

$
0
0
I get the following error whenever I try to open a site. Any suggestions.

For security reasons DTD is prohibited in this XML document. To enable DTD processing set the DtdProcessing
property on XmlReaderSettings to Parse and pass the settings into XmlReader.Create method

Edited Task: Trojan Alert Simda.B_17 [65225]

$
0
0
Getting a Trojan warning from this project. I want to hope this isn't deliberate, and I'm sorry I'm unable to use this, but I'm not going to risk installing something that my antivirus clearly warns has a Trojan in it
Comments: ** Comment from web user: BdeJager **

Sorry to hear this, I've not faces this issue before or from others. At the moment I can't help this. I can only refer you to the code which is public and it does not contain any Trojan or other malicious code.

Closed Task: Trojan Alert Simda.B_17 [65225]

$
0
0
Getting a Trojan warning from this project. I want to hope this isn't deliberate, and I'm sorry I'm unable to use this, but I'm not going to risk installing something that my antivirus clearly warns has a Trojan in it
Comments: Can't resolve the issue with regards to antivirus software.

Edited Issue: The property or field 'Url' has not been initialized. [65847]

$
0
0
When attempting to browse a site collection in tenant mode I receive the following errors:

![Image](http://i.imgur.com/VLw7sVZ.png)
![Image](http://i.imgur.com/Kth047R.png)

This issue occurs when attempting to browse site collections using the "Tenants" to browse the tenant. See below:

![Image](http://i.imgur.com/3g7bHTF.png)

Please note browsing the site collection directly works without issue. Love this tool so I thought I'd bring this to your attention. Feel free to contact me if you need any help reproducing the error.
Comments:

I noticed the issue as well and maded changes to the resolve the issue. Thanks for reporting!


 


New release will contain a fix.

Edited Feature: Add support to load all external users [65845]

$
0
0
i fixed this issue, can you please update this method to load all external user

```
public static void LoadExternalUsers(TreeNode parentNode, SPTenantMngt.Office365Tenant tenant, MainForm form, NodeLoadType loadType)
{
try
{
SPClient.ClientContext ctx = GetClientContext(parentNode);

// TODO: Fix issue with pagesize, this needs to be increased and recursive to collect all external users
int position = 0;
bool hasMore = true;
while (hasMore)
{

SPTenantMngt.GetExternalUsersResults results = tenant.GetExternalUsers(position, 50, string.Empty, SPTenantMngt.SortOrder.Ascending);
ctx.Load(results,
r=>r.ExternalUserCollection.Include(k=>k.InvitedBy),
r => r.UserCollectionPosition,
r => r.TotalUserCount,
r => r.ExternalUserCollection);
ctx.ExecuteQuery();

int total = results.TotalUserCount;
int current = 0;

// Add count to parent node
UpdateCountChildNodes(parentNode, total);

// Add external users to parent node


foreach (SPTenantMngt.ExternalUser user in results.ExternalUserCollection)
{

position++;
TreeNode node = AddTreeNode(parentNode, string.Format("{0} ({1})", user.DisplayName, user.InvitedAs), user, Constants.IMAGE_EXTERNAL_USERS, "Represents an external user in Office 365.", form.mnContextItem);

// Update progress
current++;
ItemLoaded(null, new ItemLoadedEventArgs() { TotalItem = total, CurrentItem = current });
}
hasMore = (results.TotalUserCount > position);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, form.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
LogUtil.LogException(ex);

AddLoadingNode(parentNode, loadType);
}
}
```

Commented Feature: Add support to load all external users [65845]

$
0
0
i fixed this issue, can you please update this method to load all external user

```
public static void LoadExternalUsers(TreeNode parentNode, SPTenantMngt.Office365Tenant tenant, MainForm form, NodeLoadType loadType)
{
try
{
SPClient.ClientContext ctx = GetClientContext(parentNode);

// TODO: Fix issue with pagesize, this needs to be increased and recursive to collect all external users
int position = 0;
bool hasMore = true;
while (hasMore)
{

SPTenantMngt.GetExternalUsersResults results = tenant.GetExternalUsers(position, 50, string.Empty, SPTenantMngt.SortOrder.Ascending);
ctx.Load(results,
r=>r.ExternalUserCollection.Include(k=>k.InvitedBy),
r => r.UserCollectionPosition,
r => r.TotalUserCount,
r => r.ExternalUserCollection);
ctx.ExecuteQuery();

int total = results.TotalUserCount;
int current = 0;

// Add count to parent node
UpdateCountChildNodes(parentNode, total);

// Add external users to parent node


foreach (SPTenantMngt.ExternalUser user in results.ExternalUserCollection)
{

position++;
TreeNode node = AddTreeNode(parentNode, string.Format("{0} ({1})", user.DisplayName, user.InvitedAs), user, Constants.IMAGE_EXTERNAL_USERS, "Represents an external user in Office 365.", form.mnContextItem);

// Update progress
current++;
ItemLoaded(null, new ItemLoadedEventArgs() { TotalItem = total, CurrentItem = current });
}
hasMore = (results.TotalUserCount > position);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, form.Text, MessageBoxButtons.OK, MessageBoxIcon.Error);
LogUtil.LogException(ex);

AddLoadingNode(parentNode, loadType);
}
}
```
Comments: ** Comment from web user: BdeJager **

Hi SlimMehrez, thanks for the suggestion. I have made changes to the sources and it will be included in the new release. Regards Bram

Commented Unassigned: Stuck on the "whats new" window [65552]

$
0
0
Unable to get rid of this window at startup, no button to close it, did I miss something ?
Comments: ** Comment from web user: BdeJager **

Please click on the SPCB icon in your taskbar, it will show a message. There is a new update available, but sometimes this message is not shown in front of the splash screen.

Another workaround is download the latest version ;-)

Closed Unassigned: Stuck on the "whats new" window [65552]

$
0
0
Unable to get rid of this window at startup, no button to close it, did I miss something ?
Comments: In comments the workaround is mentioned, this should resolve the issue.

Commented Unassigned: Cannot View Web for SharePoint On-Premise site [65743]

$
0
0
When I add a site collection I receive the following error "Object reference not set to an instance of an object".
Comments: ** Comment from web user: BdeJager **

Hi, can you please add the log file for detailed information? Check out [report](https://spcb.codeplex.com/wikipage?title=Report%20a%20bug&referringTitle=Documentation) a bug for steps. Thx!

Edited Issue: Cannot View Web for SharePoint On-Premise site [65743]

$
0
0
When I add a site collection I receive the following error "Object reference not set to an instance of an object".

Source code checked in, #76189

$
0
0
Changes: - Updated loading of all other user profiles, instead of first 500

Commented Unassigned: Stuck on the "whats new" window [65552]

$
0
0
Unable to get rid of this window at startup, no button to close it, did I miss something ?
Comments: ** Comment from web user: frvallet **

I have the exact same problem with version 3.0. No message when clicking on the icon in taskbar. I can click the more info button but that's all I can do.
This tool seems great, it's a shame I can't use it :(

Commented Issue: SharePoint Online Client Browser v2.1 SPCB.exe infected? [65111]

$
0
0
May be a false positive but AVG is detecting Luhe.Fiha.A infection in "SPCB.exe" file of SharePoint Online Client Browser v2.1. Only this .exe seems to be affected. SharePoint 2013 Client Browser v1.8 "SPCB.exe" does not seem to have a problem.
Comments: ** Comment from web user: Sharepointcynic **

The latest release of the SPCB online (3.0) is being blocked due to virus detection. Please advise.

Updated Wiki: Documentation

$
0
0

Getting started

Working on it...

Report a bug/issue

It's not very likely when working with SharePoint Client Browser issues or bugs occur. I'm doing my best to minimize these and for the less unfortunate ones I'll try to fix them as soon as possible. When you find an issue or bug, please help me by providing information.

How-to / Tips

Enjoy some tips and how-to on using the SharePoint Client Browser tool.

Known issues

Below a list of known issues with the tool. If you can't find your answer here, please add a new discussion or issue.

Application Lifecycle Management (ALM)

For the purpose of maintaining the tool a set of pages regarding application lifecycle management.

Updated Wiki: How to quickly open Recent Sites and Tenants

$
0
0
How-to: quickly load recent sites and tenants in SharePoint Client Browser.


Updated Wiki: Home

$
0
0
Remote SharePoint development is getting more important. Especially with SharePoint Apps. To speed up development, find hidden lists/items/documents, discover the structure or specific artifact properties use the SharePoint Client Browser which supports SharePoint 2010, SharePoint 2013, SharePoint 2016 and SharePoint Online (Office 365).

Get up and running in seconds, because this WinForm tool does not need installation but simply unzip the download and start the EXE file. Next step, connect to your on-premise SharePoint Server or SharePoint Online (Office 365) site collection.

Note: Please provide feedback via discussions and issues. I'm looking forward to your opinion, likes, new feature requests or issues you came across.



Why use this tool?
  • Get insight in your site collection structure
  • Find hidden lists, items or documents
  • Discover artifact properties
  • Easily start PowerShell, via context menu, and run (scripted) queries against your remote site collection
  • Support for both SharePoint 2010 and SharePoint 2013
  • Connect to on-premise or SharePoint Online (Office 365) site collections
  • No installer
  • Remote access from your desktop to site collection via Client Side Object Model (CSOM)
    • Can run remote, no need to run on the SharePoint server itself

Supported features
Support for SharePoint Online Tenants (Office 365), including the following items
  • Add tenant (File » Add Tenant)
  • Recent tenants are stored locally (File » Recent Tenants)
  • Treeview containing tenants and related components, like:
    • Office 365 Tenant
    • External Users
    • Site Properties
    • Deleted Site Properties
    • Apps in the App Catalog
    • Web Templates available in the Tenant
    • Log Entries (always empty due to missing implementation from Microsoft)

Support for Site Collections, including the following items
  • Add site collections (File » Add Site)
  • Recent site collections are stored locally (File » Recent Sites)
  • Support for both SharePoint 2010, SharePoint 2013 and SharePoint 2016 based on CSOM
  • Support for classic and claims authentication
  • Support for anonymous and forms based authentication
  • Support for Office 365 / SharePoint Online
  • Treeview containing site collection and related components, like:
    • Subwebs (including App Webs)
    • List and libraries
    • Site Columns
    • Content Types
    • Items and Field Values
    • Views
    • Features (activated)
    • Site Users
    • Site Groups
    • Associated Visitor, Member and Owner groups
    • Taxonomy (Term Store)
    • User Profiles
    • Workflows Templates
    • Workflow Associations
    • Event Receivers
    • Properties
    • List Templates
    • Push Notifications
    • Web Templates
    • Role Assigments
    • Role Definitions
    • Recycle Bin (first and second stage)
    • Root Folder including subfolders and files
    • User Custom Actions
    • Project Policies (Site Closure and Deletion)
  • The treeview includes the hidden objects (shown in gray) next to the default objects
  • Treenode context menu support for
    • "Open in browser..."
    • "Open PowerShell with CSOM", more info
    • "Browse Settings..."
    • "Browse MSDN Help"
  • "Properties"-tab shows all selected class properties
  • "Raw Data"-tab shows the list items based on the columns of a list or library
  • "Change Log"-tab shows the Change Log for different types of items
  • "MSDN Help"-tab shows the MSDN Help article for the selected node / object class
  • "Schema XML"-tab shows the schema XML for List, Content Type, Field and View
  • Status bar showing selected node / object class (including a link to MSDN Help article)
  • On startup checks if new version is available

Updated Wiki: How to quickly open Recent Sites and Tenants

$
0
0
How-to: quickly load recent sites and tenants in SharePoint Client Browser.

Updated Wiki: How to quickly open Recent Sites and Tenants

$
0
0

How to quickly open Recent Sites and Tenants

The animated GIF below shows how to quickly load recent sites and tenants in SharePoint Client Browser.

Updated Wiki: Documentation

$
0
0

Getting started

Working on it...

Report a bug/issue

It's not very likely when working with SharePoint Client Browser issues or bugs occur. I'm doing my best to minimize these and for the less unfortunate ones I'll try to fix them as soon as possible. When you find an issue or bug, please help me by providing information.

How-to / Tips

Enjoy some tips and how-to on using the SharePoint Client Browser tool.

Known issues

Below a list of known issues with the tool. If you can't find your answer here, please add a new discussion or issue.

Application Lifecycle Management (ALM)

For the purpose of maintaining the tool a set of pages regarding application lifecycle management.

Edited Issue: PowerShell not load assembly [65581]

$
0
0
Hello,

i get this error, a have installed SDK (online, 2013). Please help.

Add-Type : Could not load file or assembly 'file:///D:\Install\SharePoint Online Client Browser v2.2\Microsoft.SharePoi
nt.Client.dll' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)
At C:\Users\jirka\AppData\Local\Temp\SPCB_PowerShell_OpenSite.ps1:24 char:9
+ Add-Type -Path (Resolve-Path $assemblyName)
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Add-Type], FileLoadException
+ FullyQualifiedErrorId : System.IO.FileLoadException,Microsoft.PowerShell.Commands.AddTypeCommand
Comments: ** Comment from web user: BdeJager **

Hi, sorry to hear this is not working for you!

Can you start the PowerShell via the button in the SharePoint Client Browser. It will fail very likely. Once at the prompt type "$scriptLocation". This will show the script location. Open the script in PowerShell ISE and try debugging the script by running it. This should help resolving the issue.

Let me know if this works for you?!

Viewing all 648 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>