Skip to content
1.877.226.2662[email protected]
  • Open a Support Ticket
  • View by Category
  • Knowledge Base
  • Ticket Manager
  • Log a Support Ticket

Bamboo Solutions

Product Documentation

Document Category: User Profile Plus

How to Remove a web.config Modification Using PowerShell

How to Remove a web.config Modification Using PowerShell

Background

Some custom SharePoint products make changes to the web.config file for a Web application via SPWebConfigModification objects to support their features. Bamboo products sometimes make changes like this during installation. Please see How to modify a web.config file using PowerShell for some additional background information.

You may need to remove these changes for a particular Web application, if the product is no longer used on that Web application. It’s not a good idea to manually edit the file to remove the text, because the web.config would no longer match what has been set in the SharePoint configuration database and might cause future problems on your farm.

Resolution

Follow the steps below to remove web.config settings using PowerShell.

NOTE: The commands in this article work with both SharePoint 2010 Foundation and Server. Be extra careful when making changes to the web.config. Back up the file before making any changes. Do not remove a modification unless you are absolutely sure what it is.

Step Action
1. First, open SharePoint 2010 Management Shell. From the Start menu on a SharePoint WFE Server, select All Programs > Microsoft SharePoint 2010 Products > SharePoint 2010 Management Shell
2.

Next, list all of the SPWebConfigModification objects that have been applied to the Web application. These objects are stored in the WebConfigModifications property of the Web application.

 1: $webApp = Get-SPWebApplication WebApplicationURL
 2: $webApp.WebConfigModifications

In this example, you can see some of the modifications added by Bamboo products to support Telerik:
webconfigModifications.jpg

3.

Now, we can identify a particular modification and remove it using the commands shown below.

 1: $config = $webApp.WebConfigModifications | Where-Object {condition_to_identify_the_object}
 2: $webApp.WebConfigModifications.Remove($config)
 3: $webApp.Update()
 4: $webApp.Parent.ApplyWebConfigModifications()

In this example, we’ll remove the modification with the name “add[@name=[‘Session’]” and path “configuration/system.webServer/Modules”.
example remove.jpg

4.

The ApplyWebConfigModifications() method applies this change across the farm for the specific web application, so we don’t need to worry about each physical web.config file at the server-level. That is one of the main advantages of using PowerShell to update web.config modifications.

If there are multiple modifications we need to remove, we can use a loop to do that. The following example removes all of the modifications added by Bamboo Telerik Config in a particular Web application (they all have the same Owner value):

 1: $BambooConfigs = $webApp.WebConfigModifications | 
    Where-Object {$_.Owner -eq "Bamboo.SP2010.Config"}
 2: foreach ($config in $BambooConfigs) {
 3:     $webApp.WebConfigModifications.Remove($config)
 4: }
 5: $webApp.Update()
 6: $webApp.Parent.ApplyWebConfigModifications()

How to move your Bamboo Product License to a new server

How to move your Bamboo Product License to a new server

Overview of Licensing and and Product Activation

You must have a Bamboo product license for each Web Front-end (WFE) server in the SharePoint farm that serves web content. If you replace a server with another physical device, you can move the license from the old server to a new one. To do so, first deactivate the license and then re-activate by following the instructions below.

Step Action
1.

Go to Central Administration and under the Bamboo Solutions section, click Manage My License Keys.

NOTE: If you are using SharePoint 2007, in Central Administration, go to the Bamboo Solutions Corporation heading on the main page and click Bamboo Web License Manager.

Locate the product that you need to deactivate and click the product name link. The license Status Page will be displayed.

WLM-GMSApack status.jpg
Each server that is licensed for that product is listed on the page.

NOTE: If the License Key is not listed on the license status page, see Is there a way to find a lost or unknown Bamboo product license key.

2. In the Status Page, copy the license key from the server that will be deactivated to a safe location so you can use it on the new server (see Step 4 below). Then, click the Active status link. The Activation Page will be displayed.
3.

On the Activation Page, click the Deactivate button. Your license is now deactivated on that server.

NOTE: If your SharePoint WFE server doesn’t have access to the Internet, you will not be able to deactivate from this page. However, it is important to deactivate the license. Please see How to deactivate your Bamboo Product License if your server doesn’t have access to the Internet for a way to deactivate from a PC that does have access to the Internet.

4. When the new server is ready, see Activating Your Bamboo Product License for information about activating the license key for that server. Use the license key you copied to a safe location in Step 2 above to activate the product on the new server.

How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the In-Place Upgrade Method

How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the In-Place Upgrade Method

When you run an in-place upgrade from SharePoint 2007 to SharePoint 2010, the configuration data for the farm and all the content in the farm is upgraded on the existing hardware, in a fixed order. When you start the in-place upgrade process, Setup takes the Web server offline and the Web sites are unavailable until the upgrade is finished, and then Setup restarts the Web server.

Using the In-place Upgrade method, the following Bamboo products migrate to SP2010 with no errors or additional steps:

  • Alert Plus
  • Alerts Administrator
  • Chart Plus
  • Cross List
  • Column Level Security
  • Custom Identifier Column
  • Group Redirect
  • Group Email
  • In/Out Schedule Board
  • KPI Column
  • List Consolidator
  • List Rollup
  • List Search Simple
  • List Search Advanced
  • Lookup Selector Column
  • Mini-Calendar
  • My Alerts Organizer
  • Navigators
  • Password Expiration
  • Poll
  • Tree View
  • Site Creation Plus
  • Rich Text Column
  • Visual Indicator Column
  • Validator Column
  • Video Library
  • Task Master
  • User Manager for Sites
  • User Redirect
  • Virtual Map View
  • Wiki Publisher
  • World Clock and Weather

NOTE: If you are using a Bamboo product that is not on the above list and you are considering using the In-Place Upgrade method to migrate your farm, refer to the specific migration information for your product to learn more about possible limitations before proceeding with a migration.

Step Action
1.

Follow Microsoft’s Upgrade In Place to SharePoint 2010 article to perform the in-place upgrade.

NOTE: When running the SharePoint Products Configuration Wizard, be sure to select the option Change existing SharePoint sites to use the new user experience. Administrators control the user experience for end users and can decide which sub-option is then selected in this step.

2. During the upgrade process or before, retrieve the installation package and license keys for the SharePoint 2010 version of the Bamboo products you are migrating. See Migrate My Existing Bamboo Product License Key From SharePoint 2007 to SharePoint 2010 for additional details.
3.

After successfully upgrading to SharePoint 2010 and after all sites have completed their conversion to the new user experience, run the SharePoint 2010 Bamboo product installation package that you retrieved in Step 2.

On the Repair, Remove or Install screen, choose to Upgrade/Repair Existing and Install New. For more information, refer to Upgrading your Bamboo Web Part.

4.

Select and upgrade the Bamboo Web License Manager component provided in the same installation package. On the Repair, Remove or Install screen, choose to Upgrade/Repair Existing and Install New.

NOTE: The Bamboo Web License Manager only needs to be installed once per farm. Skip this step for subsequent Bamboo product installations on the farm.

5. Activate the SharePoint 2010 versions of Bamboo products. See Install and Activate a License for Bamboo Products in SharePoint 2010 for more information.
6. Refer to specific migration steps for the Bamboo product(s) you are migrating. There may be some extra steps required to overcome a known migration issue.

Manually uninstall using PowerShell

Manually uninstall using PowerShell

Icon-WarningIMPORTANT: As of April 2017, Bamboo no longer includes ManualUninstallation.ps1 file in product download packages. An updated uninstall script is included instead. Please see Overview of the Updated Installation Process for Bamboo components and Uninstalling using the updated process for details.

Typically, Bamboo products are uninstalled from a server simply by selecting the Uninstall button for the product components in the Setup program. If you choose, however, you may also uninstall our products via another simple method. In this article, I will show you how to manually uninstall a Bamboo product with PowerShell.

Step Action
1.

Access the installation files for the product you want to uninstall. They are usually on the WFE Server where you installed.

Go to the Misc folder and locate the file ManualUninstallation.ps1

ManualUninstall on SP2010.jpg

This is a PowerShell script.

NOTE: Not all Bamboo products include a PowerShell script for uninstalling.

2. Next, open the SharePoint 2013 Management Shell program and Run as administrator:

mgmt shell app.png

3.

In the SharePoint 2013 Management Shell, go to the Misc folder of the Bamboo product installation files. Then run the script by entering:

.ManualUninstallation.ps1

cmd2.png

4.

A warning is displayed telling you to do the following before proceeding:

  • Deactivate the site collection feature for the product you are uninstalling. This script does not deactivate the features. They must be deactivated on all site collections where they have been activated.
  • Recycle the App Pool or reset IIS on all WFE servers before continuing.

    cmd3.png

5. Press Enter when ready, and the script will start. Wait for it to report Solution Removed Successfully, and then press Enter to exist.

cmd4.png

6. Check that the solution is successfully removed. In Site Collection features, the solution should no longer appear.
site collection features - nothing there.png
In Solutions Management in Central Administration, the solution should no longer be listed.
CA-soln mgmt.png
7.

Notice that the Bamboo.Core.v2.wsp solutions remains on the list in Solution Management. This solution is part of other Bamboo products and is left intentionally.

If you have no other Bamboo products on your farm, please see What is left behind after uninstalling to learn how to remove the Bamboo.core.v2.wsp also.

How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the Database Attach Upgrade Method

How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the Database Attach Upgrade Method

When you upgrade by using database attach upgrade, you detach the databases in the old farm and then attach them to the new farm. When you attach a database to the new farm, the SharePoint upgrade process runs and upgrades the whole database. The database attach upgrade process is similar to the in-place upgrade process. The difference is that the database attach upgrade process is performed manually, and is performed in a separate environment.

Using the Database Attach Upgrade method, the following products migrate to SP2010 with no errors or additional steps:

  • Chart Plus
  • Cross List
  • Column Level Security
  • Custom Identifier Column
  • Data-Viewer
  • Group Email
  • Group Redirect
  • List Search Simple
  • List Search Advanced
  • Mini-Calendar
  • Site Creation Plus
  • Task Master
  • Tree View
  • User Manager for Sites
  • Password Expiration
  • User Redirect
  • Validator Column
  • Visual Indicator Column
  • Wiki Publisher
  • World Clock and Weather

NOTE: If you are using a Bamboo product that is not on the above list and you are considering using the Database Attach Upgrade method to migrate your farm, refer to the specific migration information for your product to learn more about possible limitations before proceeding with a migration.

Step Action
1. The first step in the process is to set up a new environment to host the upgraded content. See Prepare the new SharePoint Server 2010 environment for a database attach upgrade for additional information from Microsoft.
2.

After you set up the new environment, use the procedures in Microsoft’s Attach Databases and Upgrade to SharePoint 2010 article to detach and then reconnect the databases to perform the actual upgrade.

NOTE: When attaching the databases, you must choose to update to the new user experience. Your Bamboo products will not perform correctly if you choose to remain in the old user experience after upgrade.

3. During the upgrade process or before, retrieve the installation package and license keys for the SharePoint 2010 release of the Bamboo product(s) you are migrating. See Migrate My Existing Bamboo Product License Key From SharePoint 2007 to SharePoint 2010 for additional details.
4.

After successfully upgrading to SharePoint 2010 and after all databases have been attached and converted, run the SharePoint 2010 Bamboo product installation package that you retrieved in Step 3.

Since this will be a new install on new hardware, you will be asked to choose the Web Applications to deploy to. Be sure to select the same Web Applications where the Bamboo product was deployed on the old farm. For more information about installation, refer to How to run the Installation-Setup Program.

5.

Install the Bamboo Web License Manager provided in the same installation package.

NOTE: The Bamboo Web License Manager only has to be installed once. Skip this step for subsequent Bamboo product installations.

6. Activate the SharePoint 2010 versions of Bamboo products. See Activating Your Bamboo Product License for more information.
7. Refer to specific migration steps for the Bamboo product(s) you are migrating. There may be some extra steps required to overcome a known migration issue.

How to find the release number of a Bamboo web part

How to find the release number of a Bamboo web part

NOTE: Since you need to access the web part tool pane, you must be user with Design permissions on the site in order to determine the web part version.
Not all of Bamboo’s products are Web Parts; some products are custom columns for SharePoint and some are desktop programs, so this information does not apply to those particular components.

Step Action
1. Navigate to the SharePoint page where the web part is used. It can be any page, on any site. Because web parts are installed on your farm, the version is the same in all web apps, site collections, and sites.
2. Access the Web Part’s configuration tool pane. In edit mode (select Edit Page from the Site Actions menu), select Edit web part from the web part menu in the upper right corner.
edit web part menu.jpg
3. Locate the About Web Part section of the tool pane and expand it. The most important version is the File Version number for the first component listed. This is the current product version installed.
about web part contents.jpg
See About Bamboo product Version Numbers for more information about how our products are versioned.

How to deactivate your Bamboo Product License if your server doesn’t have access to the Internet

How to deactivate your Bamboo Product License if your server doesn’t have access to the Internet

If your SharePoint WFE server does not have Internet access, you will not be able to deactivate a Bamboo product license from Central Administration. Instead, you can access the My Bamboo area of the Bamboo Solutions web site to deactivate any Bamboo product license key.

Follow the steps below:

Step Action
1.

Determine the license key you want to move or deactivate. Go to Central Administration and under the Bamboo Solutions section, click Manage My License Keys.

NOTE: If you are using SharePoint 2007, in Central Administration, go to the Operations tab to see the Bamboo Solutions section and the Manage My License Keys link.

Locate the product that you need to deactivate and click the product name link. The license Status Page will be displayed.

WLM-GMSApack status.jpg
Each server that is licensed for that product is listed on the page.

NOTE: If you don’t see the License Key on this page see Is there a way to find a lost or unknown Bamboo product license key.

2.

Log in to My Bamboo from a computer with an Internet connection.

MB-login.png

NOTE: If you don’t have a login account, you can create one quickly. All you need is a valid email address.

3. At the bottom of any My Bamboo page in the My Orders tab, locate the Manage License link and click it. The Manage License page will be displayed.

Mb-Manage Lic link.png

4. On the Deactivate Your License side of the Manage License page, enter your license key and then click the magnifying glass (Mb-magnify.jpg). The Assembly Name licensed with this key will be displayed. Ensure it is the product you expect and then click Deactivate.

MB-deactivate with lic key.jpg
Once deactivated, the license key can be re-used on your new or changed server. A license key can be used on only one server at a time. Please see Activating Your Bamboo Product License for more information.

How to check the status of your trial license

How to check the status of your trial license

Overview of Licensing and and Product Activation

To check the status of your trial, follow these steps:

NOTE: If you are trialing a Bamboo Desktop application, please see Checking the status of a Bamboo Desktop application trial.

Step Action
1. Open SharePoint Central Administration. Notice the Bamboo Solutions heading on the page with the Manage My License Keys link beneath it.
CA2010BambooSolutions.jpg
2. Click Manage My License Keys. On the page that appears, expand the Individual Products section and locate the product you are trialing.
3. Click the product name or select Status from the associated menu to view the license status.

WLMIndividual Products.jpg

4. If you are running a trial, your license status will be Trial. The status page will show when your trial started and when it will end. Bamboo Product Trials last 30 days from when the product is installed on your SharePoint farm.

WLMLicStatus.jpg

How to activate a Bamboo Site Feature

How to activate a Bamboo Site Feature

NOTE: In order to activate a site feature, you need to have at least the Manage Hierarchy level of permission for the site.

Step SharePoint 2007 SharePoint 2010/2013
1. From a page on the site where you want to activate the feature, click Site Actions > Site Settings > Modify All Site Settings. In the Site Administration columnn of the Site Settings page, click Site features.
sp2007 site features.jpg
From a page on the site where you want to activate the feature, click Site Actions > Site Settings. In the Site Actions section of the Site Settings page, click Manage site features.
site settings - site actions2010.png
2.

Find the appropriate feature. If it hasn’t yet been activated, click the Activate button.
sp2010 site features.jpg

The features available depend on the Bamboo products installed on your farm and deployed to your web application.

How to Add a web.config Modification Using PowerShell

How to Add a web.config Modification Using PowerShell

Background

Please see How to modify a web.config file using PowerShell for some additional background information about why you should modify your web.config file(s) programmatically.

Many Bamboo products implement Telerik controls and install a specific version of Telerik.Web.UI assembly to the SharePoint farm. If the farm already has a different version of Telerik.Web.UI assembly, this may cause a conflict and you may see errors on SharePoint pages where you use these controls.

Resolution

To resolve this problem, we need to add an assembly binding to the web.config to specify which version to use. However, adding text by manually editing a web.config file is not recommended because it is not synced across the servers in the farm and is not saved in the SharePoint configuration database.

The best way to modify a web.config file programmatically is via PowerShell.

NOTE: Be extra careful when making changes to the web.config. Backup your file before changing it. Do not add or remove something unless you are absolutely sure what it is.

To demonstrate, we will use an example with Telerik controls. Consider this scenario:
Before a Bamboo product is installed, a server has Telerik.Web.UI version 2012.3.1016.35 previously installed. During the Bamboo product installation process, Telerik.Web.UI version 2011.2.915.35 was installed. Although it is OK to have multiple Telerik versions on a single server, it may cause a conflict in SharePoint.

We need to add an assembly binding to the web.config to tell the assemblies looking for version 2011.2.915.35 to use version 2012.3.1016.35. The assembly binding addition to the web.config file will look like this:

<dependentAssembly>
    <assemblyIdentity name "Telerik.Web.UI" publickKeyToken "121fae78165ba3d4" culture "neutral" />
    <bindingRedirect oldVersion "2011.2.915.35" newVersion "2012.3.1016.35" />
</dependentAssembly>

NOTE: Always redirect all versions found to the newest version of Telerik.Web.UI on the system, for backwards compatibility of functionality.

Step Action
1. First, open the SharePoint 2010 Management Shell. From the Start menu, select All Programs > Microsoft SharePoint 2010 Products > SharePoint 2010 Management Shell.
2.

Next, create the SPWebConfigModification object for the assembly binding
ConfigModProps.jpg
Where:

  • Path: A string that contains an XPath expression that specifies the node. If the Type property specifies EnsureChildNode, the Path property contains the XPath expression for the parent node under which the node is created. In this example, the runtime element of the web.config file is placed in another xml-namespace, so we have to identify the namespace. Otherwise, that element will not be found.
  • Name: A string that contains the name of the attribute or section node. When the type of web.config modification is EnsureChildNode, the Name property refers to an XPath expression that uniquely identifies the node under the parent node, as identified by the Path property.
  • Sequence: A 32-bit unsigned integer between 0 and 65536. This property throws an InvalidOperationException if the number is outside this range. A sequence is used only if there is more than one modification of the same type to the same node or attribute. In this case, modifications with lower sequence numbers are applied first.
  • Owner: A string that specifies the owner of the modification. You can use the Owner property to track ownership of modifications.
  • Type: An SPWebConfigModification.SPWebConfigModificationType value that specifies the type of modification. There are 3 types:
    • EnsureChildNode: Specifies that the web.config modification must ensure the existence of a child node of the node to which the XPath expression points. Value = 0.
    • EnsureAttribute: Specifies that the web.config modification must ensure that there is a value for a particular attribute. Value = 1.
    • EnsureSection: Ensures a singleton node. This node is only written once, even if multiple entities register multiple instances of EnsureSection to ensure the existence of a section. Value = 2.
  • Value: If the Type property specifies EnsureChildNode, the Value property contains an XML string that represents the node to be populated as a child of the specified parent node. If the type is EnsureSection, Value contains the name of the section. If the type is EnsureAttribute, Value contains the value set in the attribute.
3.

Then, apply the modification to the Web application (replace ‘WebApplicationURL’ with the actual URL of the Web application).
apply mods.jpg

NOTE: Bamboo products are only tested with the Telerik version that they install. Therefore, if a newer Telerik version is used, there might be some unexpected problem.

How many License Keys do I need for my SharePoint farm?

How many License Keys do I need for my SharePoint farm?

Overview of Licensing and and Product Activation

For most products, you will need one Bamboo product License Key per Web Front End (WFE) server. A WFE server is any farm server running the Microsoft SharePoint Foundation Web Application (or Windows SharePoint Services Web Application in WSSv3/MOSS).

CA-servers on farm.jpgTo determine which servers on the farm run these services, go to Central Administration > System Settings > and then Manage servers in this farm. If you are using WSSv3/MOSS, this page is accessed in Central Administration through Operations > Servers in Farm. In this example, there are two WFE servers on the farm.

Some SharePoint farms have WFE servers that do not serve content to users, even though they are running the Microsoft SharePoint Foundation Web Application. You will not need a license key for WFEs that do not deliver content to end users.

Desktop applications, such as List Bulk Import and List Bulk Export require only one license per instance.

Some products, such as List Rollup and Alert Plus may include optional components that run on application servers in addition to WFE servers. To use these product features, you may need an additional server license for each separate (non-WFE) application server on which you would like to run the associated service for that product. Using application server features on already licensed WFE servers does not require any additional licensing.

See also:

  • System Requirements for Bamboo Web Parts
  • System Requirements for Bamboo Desktop Applications

How long do trial versions of Bamboo software last and when do they start?

How long do trial versions of Bamboo software last and when do they start?

Overview of Licensing and and Product Activation

Currently, trials for Bamboo products run for 30 days, and begin when the product is installed. So if you download the software today, but don’t actually install for two weeks, that’s OK.

If you need an extension to a trial, contact your Bamboo Sales Representative (Sales@bamboosolutions.com).

Highlights of User Profile Plus

Highlights of User Profile Plus

UserProfilePlus.pngNow you and your end users can manage user information.

User Profile Plus allows you to display user profile data alphabetically, by department or by organizational hierarchy from a SharePoint Contacts List or the User Information List. You can grant users the ability to edit their own profiles, print their user profile information, and allow user groups to edit profiles for users belonging to their own department. User profile data can be edited, hidden from all users or made private so that users only see their own private data.

  • Allow end users to edit their own profile information.
  • Configure search criteria for Advanced Search so users can search by name, department, email address, etc.
  • Determine which user profile columns are included, editable and public/private.
  • Configure user groups to edit user profiles belonging to a particular department, enabling department site administrators to have control over their own department user profile data.
  • Configure user pictures to be automatically stored in a Picture Library enabling a faster upload process that does not require the URL to an existing picture in a SharePoint Picture Library.
  • Show the Print Preview buttons so users can print user profile information.

Error Log Files

Error Log Files

Applies To

  • Bamboo Products
  • Windows SharePoint Services v3 and Microsoft Office SharePoint Server 2007
  • SharePoint Foundation 2010 and SharePoint Server 2010
  • SharePoint Foundation 2013 and SharePoint Server 2013—Standard Edition
  • SharePoint Server 2016

While troubleshooting issues, the Bamboo support team may request a copy of the log files for your Bamboo product(s). Many licensing, functionality and access issue information is captured in the log files found in the BambooSolutions file folder.

This directory is located at C:WindowsTempBambooSolutions

The log files are named in this format: bsc_bamboo_{processID}.log

  • where {processID} is the ID of the w3wp.exe process which was handling the request at the time of the error

NOTE: These files will be created on any farm server running the Microsoft SharePoint Foundation Web Application (on SharePoint 2010 or SharePoint 2013) or the Windows SharePoint Services Web Application (on SharePoint 2007).

To determine which servers on the farm run these services:

SharePoint 2007:

  • Go to the page Central Administration > Operations > Servers in Farm

SharePoint 2010:

  • Go to the page Go to the page Central Administration > System Settings > Manage Servers in this Farm

CentralAdmin.pngSharePoint 2013:

  • Go to the page Central Administration > System Settings > Manage Servers in this Farm

There may be many log files. When reporting a problem to support, attach the most recent file(s) to your support ticket. If you know the time at which the error occurred, choose the file with the corresponding date/time.

Refer to Topology and Services in SharePoint Central Administration for a list of servers running this service. Learn more…

Display Options for User Profile Plus

Display Options for User Profile Plus

Return to Overview of Web Part Configuration

hw29015.jpgYou have a variety of display options to configure what users see in the user interface when they are interacting with User Profile Plus.

Step Action Result
1. Always display this text when user profile fields have no data Enter the text you want to display for each user profile column/field that does not have any data. Leave this blank if you do not want to display any text.
2. Default View Select these check boxes to display users by alphabet, department, or organizational hierarchy.
3. Select ‘Report to’ column: If you select Organization (as shown in #2 above), you must also specify which column/field holds the Report To data since the Organization option displays users based on to whom they report.
4. My Profile Link Select this check box to display this link at the top of the Web Part next to the Search box.
5. Display My Profile First Select this check box so that when users navigate to User Profile Plus, the first profile they see is their own.
6. Print Preview Button Select this check box to show the Print Preview in the Web Part. Users can preview and print user profile information.
7. Select a Language

Select a language from the drop-down menu to translate the Web Part user interface and tool pane settings. You can also create your own translation or modify the default files available in the drop-down menu.

NOTE: The translation options for Spanish, French, German and English are currently still in English. You must customize the files directly to translate the web part user interface to the language you require. See Customizing the Translation Settings for more information.

8. Tree Item Limit Set the limit for the number of items to display in the tree. When you limit the number, a More link displays at the bottom of the tree so that you can view the next set of items up to the limit. For example, if you enter 25, then you will see only 25 items in the tree and a More link if there are more than 25 items. After clicking the link, you will see the next 25 items. This feature helps you to manage performance of the Web Part if you have hundreds or thousands of items to display in the tree.

Deploying a Bamboo solution to a new Web Application

Deploying a Bamboo solution to a new Web Application

Note: Perform these steps using an account that is a member of the SharePoint Farm Administrators group.

Step for SharePoint 2007 for SharePoint 2010/2013
1. In SharePoint Central Administration, click the Operations link. In the Global Configuration section, click the Solution Management link. A list of installed solutions is displayed. In SharePoint Central Administration, click System Settings link. In the Farm Management section shown on the page, click the Manage farm solutions link. A list of installed solutions is displayed.
2. Click on the name of the solution you want to deploy. Click on the name of the solution you want to deploy.
3. Click the Deploy Solution link. Click the Deploy Solution link.
4. Select the Web application to deploy to and a deployment schedule, and then click OK. Select the Web application to deploy to and a deployment schedule, and then click OK.

CSS Overview

CSS Overview

Classes for customizing CSS in your environment are provided by Bamboo so that you can customize web parts to match your branding. We also provide skins that change the look and feel but these are used discretely. See the topic Skins Overview for more information.

Calendar Plus

  • CSS for Calendar Plus

Chart Plus

  • Chart Plus: Chart Appearance
  • Chart Plus: Legend
  • Chart Plus: Title

Cross List

  • CSS for Cross List – this topic covers the classes you would need to modify for Cross List.

Data-Viewer

  • CSS for Data Viewer

List Rotator

  • CSS for List Rotator

List Search

  • CSS for List Search

Mini Calendar

  • CSS for Mini Calendar

Navigators

  • CSS for Navigators Menu
  • CSS for Navigators Tabstrip
  • CSS for Navigators Treeview

Password Change

  • CSS for Password Change Web Part

PM Central

  • PMC Skin Templates

Team Calendar

  • CSS for Team Calendar

Virtual Map View

  • CSS for Virtual Map View

Configure the User Profile Plus Source

Configure the User Profile Plus Source

Return to Overview of Web Part Configuration

From.jpgConfigure the User Profile source.
Select to connect to the WSS v3 User Info List for the site collection or a SharePoint Contact List. For the WSS v3 User Info List option, just select this option.

002.jpg

For the SharePoint Contacts List option, fill out the following columns:

Step Action Description
1. Enter a SharePoint site URL Enter the URL for the site that has the Contacts List you want to use.
2. Connect Click Connect to connect the SharePoint site and populate the List drop-down box with all the Contacts Lists available from that site.
3. Select the Contacts List Pick the list that contains your contacts from the drop-down selector.
4. Select an Account name column Select the column in the Contacts list that contains the Account Name.
5. Select a Picture column Select the column in the Contacts List which contains a link to the picture.

Configure User Profile Fields

Configure User Profile Fields

Return to Overview of Web Part Configuration

In this section of the tool pane, you configure how columns will behave for your users by selecting or de-selecting check boxes. You can shift columns up or down, remove them and make them “editable.”

hw29013.jpg

Display Description
Column Name Name of the column/field in the User Information List or Contacts List.
Display Name Name of the column/field as it is displayed to the user. This field can be edited.
Editable Select this check box if you want to allow users who have edit permissions to edit the data in this column/field.
Public Select this check box if you want to make this column/field available in all user profiles. Clear this check box to make the column private so that only the logged in user can see information in these fields.
Include Select this check box to show this column/field so all users can view/edit it depending on their permissions. Clear this check box to completely hide this field in the user profile.

Icon-Warning IMPORTANT: Remember to click the save icon (Icon-Save) to retain your configuration changes.

Configure Group Edit Permission by Department

Configure Group Edit Permission by Department

Return to Overview of Web Part Configuration

This section of the tool pane is where you configure the web part to allow either users and/or Site Collection Administrators to edit their own profile information.

hw29012.jpg

Step Action Result
1. Allow users to edit their own profiles

Select this check box to allow users to edit their profiles.

  • If this check box is not selected, users can only view their profile.
  • This check box overrides the Editable permission assigned in the Configure User Profile Fields section further down in the tool pane.
2. Allow Site Collection Administrator to edit profiles Select this check box to allow Site Collection Administrators to edit all user profiles.
3. Configure Group Edit Permission by Department Select the field or list column that contains the Department information for each user profile.
4. Assign User Group Edit Permission For each department, select the user group that has permission to edit user profiles for the selected department. Users in the selected group can edit profiles of users in the designated department.

Configuration Overview of User Profile Plus

Configuration Overview of User Profile Plus

hw29004.jpgAdd User Profile Plus anywhere in your site collection to allow users to view and update their profile information. Profile information can be stored in the User Information List or a Contacts List.

Configure the web part to allow all users to edit certain fields while also making some fields private (only the user can view and/or edit the field for their own profile). You can set editing permissions for departments by user groups – allowing users in the selected group to edit all profiles for users belonging to a particular department. Create new tabs to display user information as well as designate fields to be included or hidden from view. You can also specify a SharePoint Picture Library to automatically store pictures uploaded to user profiles.

0001.jpgTo configure web part functionality available to users, you can set up columns to be used as search criteria in the Advanced Search as well as designate full column search when using just the Search box. You can also determine whether users can print user profile information, click a My Profile link to quickly return to their own profile, determine whether the default view of the web part includes the Alphabetical, Organization (displayed by reporting hierarchy), and/or Department view as well as whether users default to their own profile first when they navigate to the web part.

For a detailed look at the configuration tool pane, select each of the options below that correspond to the sections to be configured as indicated in the image to the right:

  1. Configure the User Profile Plus Source
  2. Configure Group Edit Permission by Department
  3. Configure User Profile Fields
  4. Select a Picture Library to Store User Profile Plus Images
  5. Select Advanced Search Columns
  6. Display Options for User Profile Plus

Complementary Products for User Profile Plus

Complementary Products for User Profile Plus

sharepointsolutions.pngYou will find many of our products complement each other quite nicely saving you the time and trouble to write custom code. With Bamboo at the heart of your SharePoint investment, you gain access to a huge catalog of enhancements, components, and accessories that add the critical functionality your business requires.

The same components can be easily used in future applications and they all come from a single, trusted vendor, ensuring an easy purchase process and support you can count on. That’s the Bamboo Way!


Choosing which farm servers to license

Choosing which farm servers to license

Bamboo products are deployed to all servers in the farm running the Microsoft SharePoint Foundation Web Application service (or Windows SharePoint Services Web Application in WSSv3/MOSS), which may include servers that do not serve Web content. For most products, only servers that serve Web content need a license key (Alert Plus is an exception), but all servers that run the Microsoft SharePoint Foundation Web Application service will appear on the Web License Manager Status and Activation pages by default.

If you would like to see only certain servers displayed in the Web License Manager, follow these steps:

Step Action
1. Click the Choose License Server(s) link on the Bamboo Web License Manager main page.

SP2013ChooseLicenseServers3.jpg

2.

Although this step is optional, it makes it easier for SharePoint Administrators to see which servers in the farm need a license key, if not all do.

On the page displaying the list of servers, check the box for each server functioning as a Web Front End (WFE).

Some products, such as Alert Plus or List Rollup, may include optional features that require licensing of a SharePoint application server as well. If so, these servers can also be selected.

WLM-choosing license servers2.jpg

Can trials be extended?

Can trials be extended?

Overview of Licensing and and Product Activation

Once you have installed a Bamboo product on your farm and the trial period has passed, you cannot install a second trial. Instead, you need to extend the original trial period. Contact your Bamboo Sales Account Manager (Sales@bamboosolutions.com) for a trial extension.

Before you uninstall

Before you uninstall

Icon-WarningIMPORTANT: Before you uninstall a Bamboo product, make sure that it is no longer in use on any site in your farm. If a web part resides on a page and you uninstall the web part, an error will be displayed for users that visit that page. The uninstall process does not update individual pages in your SharePoint portal.

Also, if you uninstall Workflow Conductor (WFC) and some workflows built with WFC are still active, those workflows will fail.

You have several choices for how to uninstall your Bamboo product:

Option Comment
Use the Updated Uninstall Process for Bamboo components

Based on feedback from our customers, Bamboo introduced updated install/uninstall processes for component products (web parts). Instead of the Setup.exe Installation Application, we now supply two PowerShell scripts – one for Install/Upgrade and the other for Uninstall – to be used to install, upgrade, or uninstall the product.

For more information, see Overview of the Updated Installation Process for Bamboo components.

Bamboo Installation Package

Icon-WarningIMPORTANT: As of April 2017, Bamboo no longer includes the Installation/Setup program in product download packages.

You can use the Bamboo product installation package that you used to install the product to uninstall. This is the preferred method, because it performs some automated system checks to help ensure the uninstall will be successful. It also steps you through each component, so its easier to make sure everything is uninstalled. See Using the Setup program to Uninstall for more information.

SharePoint Central Administration Many Bamboo products are deployed as SharePoint solutions, so you can retract and remove them from Central Administration. See Uininstalling from SharePoint Central Administration for more information.
PowerShell Some Bamboo products are packaged with a PowerShell script that you can use to uninstall. See Manually uninstall using PowerShell for more information.
stsadm If you prefer, you can use stsadm commands to retract and delete Bamboo SharePoint solutions. See Manually uninstall using stsadm for more information.
Add/Remove Programs Some Bamboo products include components that are installed using an EXE or MSI installer. See Uninstalling a Bamboo .msi or .exe for more information.

Depending on the uninstall method you choose, there may be a solution left behind after the install. This is intentional, as several Bamboo products use some of the same components. See What is left behind after uninstalling? for more information and steps for how to uninstall completely.

Before you Migrate from SharePoint 2007 to SharePoint 2010 Read This

Before you Migrate from SharePoint 2007 to SharePoint 2010 Read This

Overview

Microsoft recommends that you use one of two basic approaches when you upgrade from SharePoint 2007 to SharePoint 2010:

  • In-place upgrade. An in-place upgrade is used to upgrade all Microsoft SharePoint sites on the same hardware. See How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the In-Place Upgrade Method for details.
  • Database attach upgrade. A database attach upgrade enables you to move your content to a new farm or new hardware. See How to Migrate a Bamboo Web Part from SharePoint 2007 to SharePoint 2010 using the Database Attach Upgrade Method for details.

You can also combine these two types of upgrade in hybrid approaches that reduce downtime during an upgrade. For more information about these approaches, see Determine upgrade approach (SharePoint Server 2010) from Microsoft TechNet.

General Migration Restrictions for Bamboo Products

  1. Regardless of the upgrade method you choose, you MUST change existing SharePoint sites to use the new user SharePoint 2010 experience. If you don’t, some features of your Bamboo products will not work as expected.
  2. You need to make sure that you are running the latest available Bamboo product release in your SP2007 environment before migrating. Review information specific to the product(s) you are migrating to learn the minimum product release to migrate. See Bamboo product releases that are supported for migration from SharePoint 2007 to SharePoint 2010 for details.
  3. Bamboo Solutions does not support the migration of Bamboo products deployed on WSSv2/SharePoint 2003 environments to SharePoint 2010 farms.
  4. Bamboo Solutions does not support the downgrade of SharePoint editions when migrating from SharePoint 2007 to SharePoint 2010. For example, Bamboo products are not supported when migrating from MOSS 2007 to SharePoint Foundation 2010.

Migration Restrictions for Specific Bamboo Products

Before following the instructions for the method you choose, review information specific to the product(s) you are migrating. The In-Place Upgrade method is sometimes easier, but it takes longer. Some Bamboo products do not support the In-Place upgrade method and we recommend a hybrid In-Place Upgrade method as an alternative.

Bamboo products that use Telerik

Bamboo products that use Telerik

Product Uses Telerik?
Alerts Administrator Yes
Alert Plus Yes
Bulk Export No
Bulk Import No
Calendar Plus Yes
Chart Plus Yes
Column Level Security Yes
Community Central Yes
Cross List No
Cross Site Display No
Custom Identifier No
Data Viewer Yes
Discussion Board Plus Yes
File Share Library No
Filters Collection Yes
Grants Management Yes
Group Email Yes
Group Redirect Yes
In/Out Schedule Board Yes
Knowledge Base Solution Accelerator Yes
KPI Column Yes
List Consolidator Yes
List Print No
List Rollup Yes
List Rotator No
List Search Yes
Lookup Selector No
Mini Calendar No
My Alerts Organizer No
Navigators Yes
Password Change Yes
Password Expiration No
Password Reset No
Password Management Toolkit Yes
PM Central Yes
Poll Yes
Project Portfolio Dashboard Yes
Rating Yes
Rich Text Yes
Site Creation Plus No
SQL View No
Task Master Yes
Team Calendar Yes
Time Tracking and Management Yes
Tree View Yes1
No2
User Account Setup Yes
User Directory Yes
User Manager for Sites Yes
User Profile Plus No
User Profile Sync No
User Redirect No
User Registration Accelerator No
Validator column No
Video Library No
Virtual Map View No
Visual Indicator column No
Wiki Publisher No
Workflow Conductor Yes
World Clock and Weather No

1SharePoint 2007 and SharePoint 2013
2SharePoint 2010

Bamboo product releases that are supported for migration from SharePoint 2010 to SharePoint 2013

Bamboo product releases that are supported for migration from SharePoint 2010 to SharePoint 2013

The table below shows the minimum required Bamboo product version required when migrating Bamboo products from SharePoint 2010 to SharePoint 2013. If you have an earlier version installed than the one listed, please upgrade that product before migrating to SharePoint 2013.

For additional information:

  • How to find the version/release number of a Bamboo Web Part
  • Upgrading your Bamboo Web Part
  • Migrating…
Product minimum SP2010 version minimum SP2013 version
Alert Plus 30.2.115 30.2.121.2013
Alerts Administrator 10.4.52 10.4.62.2013
Calendar Plus 40.1.143 40.1.155.2013
Chart Plus 30.5.109 30.5.143.2013
Column Level Security 10.3.34 10.3.48.2013
Community Central 10.1.91 10.5.76.2013
Cross List 10.5.20 N/A
Cross Site Display 10.2.26 10.2.40.2013
Custom Identifier Column 10.0.45 10.0.57.2013
Data-Viewer 30.5.67 30.5.57.2013
Discussion Board Plus 10.5.22 20.0.57.2013
DWG Parser
SharePoint 2007 Only
N/A N/A
Filters Collection 10.3.25 10.3.35.2013
File Share Library 20.0.60 20.0.81.2013
Grants Management 10.5.20 N/A
Group Email 10.7.43 10.7.46.2013
Group Redirect 20.3.27 20.3.33.2013
Hello 20.1.9 N/A
In/Out Schedule Board 10.4.56 10.4.57.2013
Knowledge Base 20.2.47 20.2.75.2013
KPI Column 10.3.65 10.3.78.2013
List Bulk Export 1.4.12 20.0.18.1
List Bulk Import 2.5.105 30.0.29.2013
List Consolidator 10.0.79 10.0.107.2013
List Print 10.4.31 10.4.35.2013
List Rollup 60.0.64 60.0.70.2013
List Rotator 20.5.82 20.5.99.2013
List Search Advanced 10.8.93 10.8.121.2013
List Search Simple 20.1.140 20.1.167.2013
Lookup Selector Column 20.3.61 20.3.88.2013
Mini-Calendar 20.8.67 20.8.86.2013
My Alerts Organizer 10.4.43 10.4.51.2013
Navigators 10.3.47 10.3.57.2013
Password Change 40.1.65 40.1.68.2013
Password Expiration 10.6.43 10.6.49.2013
Password Reset 20.4.51 20.4.70.2013
Poll 10.4.53 10.4.63.2013
Project Management Central 40.1.135 40.1.109.2013
Project Portfolio Dashboard 10.8.58 10.8.80.2013
Quick Add 10.0.29.0 10.0.29.2013
Rating Column 10.2.43 10.1.54.2013
Rich Text Column 10.3.27 10.3.28.2013
Site Creation Plus 10.4.66 10.4.71.2013
SQL View 10.6.26 N/A
Task Master 30.5.117 30.5.116.2013
Team Calendar 10.7.18 10.7.36.2013
Time Tracking and Management 1.6.46 10.6.88.2013
Tree View 10.7.83 10.8.23.2013
User Account Setup 40.0.107 40.0.148.2013
User Directory 10.7.53 10.7.81.2013
User Manager for Sites 10.3.46 10.3.62.2013
User Profile Plus 10.4.39 10.4078.2013
User Profile Sync 1.6.10 20.0.20.2013
User Redirect 10.5.16 10.5.27.2013
User Registration Accelerator 10.3.24 10.3.35.2013
Validator Column 10.3.20 10.3.35.2013
Video Library 20.0.87 20.0.106.2013
Virtual Map View 10.9.46 10.9.42.2013
Visual Indicator Column 10.3.59 10.3.79.2013
Wiki Publisher 10.0.65 10.0.85.2013
Workflow Conductor 30.0.0 30.0.1.2013
World Clock and Weather 20.4.47 20.4.52.2013

Bamboo product releases that are supported for migration from SharePoint 2007 to SharePoint 2010

Bamboo product releases that are supported for migration from SharePoint 2007 to SharePoint 2010

The table below shows the minimum required Bamboo product release required when migrating Bamboo products from SharePoint 2007 to SharePoint 2010. If you have an earlier release installed than the one listed, please upgrade that product before migrating to SharePoint 2010.

For additional information:

  • How to find the version/release number of a Bamboo Web Part
  • Before you Migrate from SharePoint 2007 to SharePoint 2010 Read This
Product minimum SP2007 release minimum SP2010 release
Alert Plus 3.0.62 30.0.59
Alerts Administrator 1.4.12 10.4.30
Calendar Plus 4.0.96 40.0.36
Chart Plus 2.5.43 20.5.25
Column Level Security 1.3.4 10.3.7
Cross List 1.5.5 10.5.6
Custom Identifier Column 1.0.35 10.0.35
Data-Viewer 3.3.59 30.3.67
DWG Parser N/A N/A
Filters Collection 1.3.5 10.3.13
File Share Library
Grants Management TBD TBD
Group Email 1.7.4 10.7.11
Group Redirect 2.3.11 20.3.14
Hello TBD TBD
In/Out Schedule Board
Knowledge Base

2.0.71

NOTE: Releases earlier than 1.2 are no longer supported for upgrade or migration.

20.0.56
KPI Column 1.2.40 10.3.33
List Bulk Export N/A N/A
List Bulk Import N/A N/A
List Consolidator 1.0.87 10.0.62
List Print 1.4.5 10.4.18
List Rollup Classic: 5.0.55
Schema: 5.0.77
Classic: 40.5.13
Schema: 50.0.85
List Rotator 2.5.24 20.5.44
List Search Advanced 1.8.51 10.8.48
List Search Simple 1.8.64 10.8.60
Lookup Selector Column 1.3.24 20.3.15
Mini-Calendar 2.7.8 20.7.11
My Alerts Organizer 1.4.13 10.4.40
Navigators 1.3.11 10.3.12
Password Change 3.5.8 30.5.14
Password Expiration 1.5.11 10.5.19
Password Reset 2.4.11 20.4.31
Project Management Central 2.1.21 20.1.12
Rich Text Column 1.3.9 10.3.14
Site Creation Plus 1.4.31 10.4.18
SQL View 1.6.17 10.6.23
Task Master 2.0.150 20.0.34
Team Calendar 1.5.4 10.5.11
Tree View 1.7.29 10.7.27
User Account Setup 3.4.8 30.4.31
User Directory 1.7.1 10.7.2
User Manager for Sites 1.3.1 10.3.19
User Profile Plus 1.4.7 10.4.35
User Profile Sync N/A N/A
User Redirect 1.5.3 10.5.14
Validator Column 1.3.1 10.3.12
Virtual Map View 1.9.25 10.9.9
Visual Indicator Column 1.3.7 10.3.19
Wiki Publisher 1.0.26 10.0.25
Workflow Conductor 1.5.1 1.5.1
World Clock and Weather 2.3.15 20.3.15

Activating Your Bamboo Product License

Activating Your Bamboo Product License

Overview of Licensing and and Product Activation

Licenses for Bamboo products that are installed on SharePoint servers are activated in SharePoint Central Administration using the Bamboo Web License Manager. Follow these instructions to activate a Bamboo product license.

NOTE: Licenses for desktop/server applications such as List Bulk Import, User Profile Sync, and List Bulk Export are activated using a standalone version of the licensing application, called Bamboo License Manager. See Activating a Bamboo Desktop Product Using the License Manager for more information.

Before performing the steps listed below, be sure you have installed the Bamboo Web License Manager on your SharePoint farm. See Installing the Bamboo Web License Manager for more information.

Step Action
1.

From SharePoint Central Administration, click Manage My License Keys under Bamboo Solutions.

NOTE: If you don’t see this option listed, see Why isn’t Manage My License Keys displayed in SharePoint Central Administration?

2.

You may see two groupings on the page, Suites and Packs or Individual Products. When activating a Web Part or Application, expand the Individual Products section.

Locate the product you need to activate. Hover over a product name to see a drop-down menu associated with the product. Select Activate/Deactivate from the menu.

CA-WLM2010 but generic.jpg

3.

On the displayed page, the available servers in your SharePoint farm will be listed. You will need an individual License Key for each Web Front End server.

Certain products, such as Alert Plus and List Rollup include features that can be run on application servers as well. In these cases, separate licenses may also be required for one or more application servers.

NOTE: If some of the servers listed do not receive web traffic, or if there are application servers that do not need a license, you can remove them from the list. Please see Choosing which farm servers to license for more information.

To activate a license for a server, type or copy and paste the License Key into the field provided and click Activate.

activatelicimg3.jpg

NOTE: If your SharePoint server does not have Internet access, you may get an error when you click Activate. If you experience this, see Activating My Bamboo Product License Offline for more information.

4. Your Bamboo product is now Active and is ready for use, as shown by the Status column.

SP2010ActSuccess.jpg
If you ever need to check which license key you used to activate each server, the license key used is shown on this status page.

Activating Your Bamboo Product License Offline

Activating Your Bamboo Product License Offline

Overview of Licensing and and Product Activation

Licenses for Bamboo products that are installed on SharePoint servers are activated in SharePoint Central Administration using the Bamboo Web License Manager. Licenses are normally activated online, but sometimes SharePoint servers do not have access to the Internet. If this is the case with your servers, follow these instructions to activate a Bamboo product license offline.

NOTE: Before performing the steps listed below, be sure you have installed the Bamboo Web License Manager on your SharePoint farm. See Installing the Bamboo Web License Manager for more information.

Step Action
1.

From SharePoint Central Administration, click Manage My License Keys under Bamboo Solutions.

NOTE: If you don’t see this option listed, see The Bamboo Web License Manager does not show up in Central Administration. How do I fix that

2.

You may see two groupings on the Manage My License Keys page, Suites and Packs and Individual Products depending on what Bamboo products you’ve installed on the farm. When activating a Web Part or Application, expand the Individual Products section.

Locate the product you need to activate. Hover over a product name to see a drop-down menu associated with the product. Select Activate/Deactivate from the menu.

WLMIndividual Products.jpg

3.

All servers in your SharePoint farm that are running the Microsoft SharePoint Foundation Web Application service will be listed. The license status for each will be Not Active or Trial. You will need an individual License Key for each server.

If some of the servers listed do not receive web traffic, you can remove them from the list. Please see Choosing which farm servers to license for more information.

To activate a license for a server, type or copy and paste the License Key into the field provided, check the Activate Offline box, and then click Activate.

activatelicimg3.jpg

4.

On the page displayed, a Machine Key will be displayed with the License Key and a space to enter the Activation Key.

NOTE: Eight spaces are shown if you are running WSSv3/MOSS. If you are running SharePoint 2010 or 2013, there is just one space.

ket in activatoin key2.jpg
Copy the License Key and the Machine Key to an email and send it to Bamboo’s Support Team at Support@bamboosolutions.com. They will reply via Email with the Activation Key. If you have several servers in your farm, you can send the License Key-Machine Key combinations for all of them in one Email message to the Support Team.

Alternatively, you can generate the Activation Key yourself via the My Bamboo area of the Bamboo Solutions website. See Generating Activation Keys using My Bamboo for more information.

Once you have the Activation Key, enter it in the space provided and click Activate.

NOTE: The Machine Key, as you may have guessed, is tied to the HW profile of the server. As such, the Activation Key is also tied to the HW profile. If the HW profile of a server changes, the License will fail and need to be deactivated and then re-activated, similar to what is required when you move your farm to new servers. See Migrate your Bamboo Product License Key From one SharePoint version to another for more information on what to do when this happens.

5. After the license is activated, it’s status will be displayed on the page.

SP2010ActSuccess.jpg

How to activate a Bamboo Site Collection Feature

How to activate a Bamboo Site Collection Feature

Product feature activations can be done automatically at the site collection level when the product is installed using the Bamboo Installation/Setup program. However, there are a few reasons why you may need to manually activate (or deactivate) Bamboo product features:

  • You are using the updated installation process for Bamboo components.
  • You opted out of automatic feature activation during installation using the older Setup program.
  • You added a new site collection and want to add Bamboo features to it.
  • You want to remove Bamboo product features from an existing site collection.

To manually activate (or deactivate) Bamboo product features, follow the instructions below.

Icon-WarningIMPORTANT: Perform these steps using an account that is a Site Collection Administrator.

Step Action
1.

From a page on the top level site of a site collection, click Site Actions and then Site Settings. In the Site Collection Administration section of the page displayed, click Site collection features.

Icon-Tip If you don’t see this section, you may not be a Site Collection Administrator. If you don’t see the link, you may not be on the top level site of the collection.

A list of available features will be listed.
SCA-Active SCFeatures.png

2.

Find the appropriate feature. The status column indicates if the feature is currently active. If it hasn’t yet been activated, click the Activate button. If it’s activated and you need to Deactivate, click Deactivate.

For information about which feature to activate for a particular product, please see this article.

About the Installation Files

About the Installation Files

Options for Installing

image showing install files for Tree View web partWhen you extract the product EXE to a location on your SharePoint server, several folders are created that contain installation files and Setup program configuration files. The root level of the extracted file system includes the file Setup.bat, which launches the Setup program. The list below shows the installation files for the Tree View Web Part, as an example.

For manual installation, you will access the following folders that contain installation files:

  • Component.wsp: There may be several folders with names ending in .wsp, depending on your product. Each WSP folder contains the installation files for a specific SharePoint Solution. One or more SharePoint Solutions may be installed for each product component.
  • docs: Contains the Installation and Licensing Quick Start Guide.
  • misc: The MISC folder includes miscellaneous files, including PowerShell scripts for manually installing or uninstalling the product.
  • msi: If a MSI folder exists for your product, it could contain multiple files ending in .msi. Each is an installation executable. Some MSI installers in the msi installation folder have both a 32-bit and a 64-bit version. The 64-bit version will include .x64 in the file name. Run the version of the MSI that is appropriate for your operating system. Do not install both.
  • res: Contains files required by the Setup program but not necessarily needed during a manual install.

A license error occurs after successful license activation

A license error occurs after successful license activation

SYMPTOM

You followed the directions in Activating Your Bamboo Product License successfully activated your license. However, when you go to a page where the web part is used you see a license error:

license error on web part page.png

CAUSE

If this happens immediately after successful activation, the error is typically that one or more WFE servers on the farm do not have an activated license. If you are sure all servers have been successfully activated, another cause could be that a trial extension file (.lic) remains on one of the WFE servers in the farm and is causing a conflict.

If the license error happens after you have been using your activated product for some time, the cause for the issue could be that the hardware profile of one of your WFE servers has changed. Bamboo product licenses are tied to the hardware profile. If that profile changes (i.e., you add a new hard drive), the license needs to be re-activated. See How to move your Bamboo Product License to a new server for resolution information.

RESOLUTION

Confirm that there are no Bamboo trial extension files (Bamboo.lic) on the any of the WFE servers. Follow these steps:

Step Action
1. From the SharePoint server, use Windows Explorer to drill down the inetpub folder structure to locate and access the appropriate virtual directory for the web application where the license error appears.
1. Locate the ‘bin’ folder where the Bamboo product’s DLL should be found.
1.

Search for files that start with “Bamboo” and have a .lic extension. If one exists for the product with the license issue, delete it.

NOTE: Be sure to check all WFE servers for the .lic file.

About Bamboo product Release Numbers

About Bamboo product Release Numbers

Overview

Bamboo products have several releases throughout the year. To understand more about the type of releases available, see the Bamboo Solutions Upgrade Policy.

Its important to know what release you have installed on your farm because:

  • You can better follow the Release Notes for the product, which tell you about new features and known limitations for each version/release.
  • If you are planning to migrate to a new version of SharePoint, you need to make sure you have a certain minimum version/release installed.
  • If you need to report an issue to our Support Team, they will need to know what version/release you are using.

Where to find Release Notes

ReleaseNotes.pngAs you look at each product’s documentation page, you will see there is a link to the Release Notes for that product at the top of the page.

Bamboo produces different version numbers of our products for the different SharePoint platforms.

SharePoint 2007 (WSSv3/MOSS) Release Numbers

If you are running SharePoint 2007, the version/release number consists of 4 parts, such as:

R1.2.3.0
  • The first digit indicates the Major Release. In the case above, this is “1”.
  • The second digit indicates the Minor Release (2 in the example above).
  • The third number indicates the build number.
  • The fourth number will always be 0 unless you are using SharePoint 2013 (see explanation below).

SharePoint 2010 Release Numbers

If you are running SharePoint 2010 (SharePoint Foundation 2010 or SharePoint Server 2010), the Major Release digit of the installed product’s file version includes a zero (0) in the digit such as:

10.2.3.0

To match your current installed product with the release notes, remove the first zero (0). The end result is version 1.2.3.0.

SharePoint 2013 Release Numbers

If you are running SharePoint 2013 (SharePoint Foundation 2013 or SharePoint Server 2013), the Major Release digit of the installed product’s file version includes a zero (0) and the fourth digit is “2013” such as:

10.2.3.2013

To match your current installed product with the release notes, remove the first zero (0) and the 2013. The end result is version 1.2.3.0.

Posts pagination

Previous 1 2
Getting Started
The Bamboo Way
About Our Documentation
About the Installation Files
Glossary of Bamboo and SharePoint Terms
TechLib Subscription
References
BambooSolutions.com
Bamboo Nation
Webinars and Events
Bamboo Solutions Support on YouTube
My Bamboo
Contact
FAQ
About Product Release Numbers
Activating Your License
A Bamboo Feature Needs to be Activated
Resetting Your Password
Retired Bamboo Products
Bamboo Configuration Tool panes
How to Enter and Manage Support Requests
See All Products
Administration Toolkit
Product Page
Installing
Activating License
Release Notes
Alerts Administrator
Product Page
Installing
Release Notes
All Topics
Alert Plus
Product Page
Installing
Configure
Release Notes
All Topics
Bamboo Premier
Product Page
Installing
Activating License
Release Notes
Bamboo Select
Product Page
Installing
Activating License
Release Notes
Calendar Plus
Product Page
Installing
Configure
Release Notes
All Topics
Calendar Plus App
Product Page
Installing
Configure
Release Notes
Chart Plus
Product Page
Installing
Configure
Release Notes
All Topics
Column Level Security
Product Page
Installing
Configure
Release Notes
All Topics
Community Central
Product Page
Installing
Configure
Release Notes
All Topics
Community Management Suite
Product Page
Installing
Activating License
Release Notes
All Topics
Cross Site Display
Product Page
Installing
Configure
Release Notes
All Topics
Cross List
Product Page
Installing
Configure
Release Notes
All Topics
Custom Identifier Column
Product Page
Installing
Configure
Release Notes
All Topics
Data Viewer
Product Page
Installing
Configure
Release Notes
All Topics
Discussion Board Plus
Product Page
Installing
Configure
Release Notes
All Topics
DWG Parser
Product Page
Installing
Configure
Release Notes
All Topics
Essentials Plus Suite
Product Page
Installing
Activating License
Release Notes
Essentials Suite
Product Page
Installing
Activating License
Release Notes
File Share Library
Product Page
Installing
Configure
Release Notes
All Topics
Grants Management
Product Page
Installing
Configure
Release Notes
All Topics
Group Email
Product Page
Installing
Configure
Release Notes
All Topics
Group Redirect
Product Page
Installing
Configure
Release Notes
All Topics
In/Out Schedule Board
Product Page
Installing
Configure
Release Notes
All Topics
Knowledge Base
Product Page
Installing
Configure
Release Notes
All Topics
Knowledge Management Suite
Product Page
Installing
Activating License
Release Notes
All Topics
KPI Column
Product Page
Installing
Configure
Release Notes
All Topics
List Bulk Export
Product Page
Installing
Configure
Release Notes
All Topics
List Bulk Import
Product Page
Installing
Configure
Release Notes
All Topics
List Consolidator
Product Page
Installing
Configure
Release Notes
All Topics
List and Forms Extensions Toolkit
Product Page
Installing
Activating License
Release Notes
All Topics
List Print
Product Page
Installing
Release Notes
All Topics
List Rotator
Product Page
Installing
Configure
Release Notes
All Topics
List Rollup
Product Page
Installing
Configure
Release Notes
All Topics
List Search Advanced
Product Page
Installing
Configure
Release Notes
All Topics
List Search Simple
Product Page
Installing
Configure
Release Notes
All Topics
Lookup Selector Column
Product Page
Installing
Configure
Release Notes
All Topics
Mini Calendar
Product Page
Installing
Configure
Release Notes
All Topics
My Alerts Organizer
Product Page
Installing
Release Notes
All Topics
Navigators
Product Page
Installing
Configure
Release Notes
All Topics
Password Change
Product Page
Installing
Configure
Release Notes
All Topics
Password Expiration
Product Page
Installing
Configure
Release Notes
All Topics
Password Reset
Product Page
Installing
Configure
Release Notes
All Topics
Password Management Toolkit
Product Page
Installing
Activating License
Release Notes
All Topics
Project Management Central
Product Page
Installing
Configure
Release Notes
All Topics
PM Central Mobile
Product Page
Installing
Configure
Release Notes
All Topics
Project Management Suite
Product Page
Installing
Activating License
Release Notes
All Topics
Poll
Product Page
Installing
Configure
Release Notes
All Topics
Project Portfolio Dashboard
Product Page
Installing
Configure
Release Notes
All Topics
Quick Add
Product Page
Installing
Configure
Release Notes
All Topics
Quick Add App
Product Page
Installing
Configure
Release Notes
Rating Column
Product Page
Installing
Configure
Release Notes
All Topics
Rich Text
Product Page
Installing
Configure
Release Notes
All Topics
Send Message
Product Page
Installing
Configure
Release Notes
All Topics
Site Creation Plus
Product Page
Installing
Configure
Release Notes
All Topics
SQL View
Product Page
Installing
Configure
Release Notes
All Topics
Task Master
Product Page
Installing
Configure
Release Notes
All Topics
Team Calendar
Product Page
Installing
Configure
Release Notes
All Topics
Time Tracking & Management
Product Page
Installing
Configure
Release Notes
All Topics
Tree View
Product Page
Installing
Configure
Release Notes
All Topics
User Account Setup
Product Page
Installing
Configure
Release Notes
All Topics
User Directory
Product Page
Installing
Configure
Release Notes
All Topics
User Manager for Sites
Product Page
Installing
Configure
Release Notes
All Topics
User Profile Plus
Product Page
Installing
Configure
Release Notes
All Topics
User Profile Sync
Product Page
Installing
Configure
Release Notes
All Topics
User Redirect
Product Page
Installing
Configure
Release Notes
All Topics
User Registration Accelerator
Product Page
Installing
Configure
Release Notes
All Topics
Validator
Product Page
Installing
Configure
Release Notes
All Topics
Video Library
Product Page
Installing
Configure
Release Notes
All Topics
Virtual Map View
Product Page
Installing
Configure
Release Notes
All Topics
Visual Indicator
Product Page
Installing
Configure
Release Notes
All Topics
Wiki Publisher
Product Page
Installing
Configure
Release Notes
All Topics
Workflow Conductor
Product Page
Installing
Configure
Release Notes
All Topics
World Clock & Weather App
Product Page
Installing
Configure
Release Notes

CORPORATE HEADQUARTERS

Bamboo Solutions
12110 Sunset Hills Rd. Suite 600
Reston, Virginia 20190 USA

Toll Free: +1 .877.226.2662

Tel: +1 703.964.2002

CONNECT WITH US

SALES INQUIRES

Toll Free: +1 .877.226.2662
Email: Bamboo Solutions Sales

TECHINCAL SUPPORT

Visit our support site
Talk to our Bamboo Nation community
Bamboo Solutions and its related brands is the copyright of SharePointXperts, LLC. ©2002-2025Theme by Puro
  • Privacy Policy
  • Terms of Use