> ## Documentation Index
> Fetch the complete documentation index at: https://docs.box.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting Started: Box Admin Basics

export const CarouselItem = ({children}) => {
  return <>{children}</>;
};

export const CarouselCard = ({img, video, title, link}) => {
  const [isPlaying, setIsPlaying] = useState(false);
  const Wrapper = link && !video ? "a" : "div";
  const wrapperProps = link && !video ? {
    href: link,
    rel: "noreferrer",
    target: "_blank"
  } : {};
  const autoplayVideo = (() => {
    if (!video) {
      return "";
    }
    try {
      const url = new URL(video);
      url.searchParams.set("autoplay", "true");
      return url.href;
    } catch {
      return video;
    }
  })();
  return <Wrapper className="carousel-card-link block group no-underline !text-inherit" {...wrapperProps}>
      <div className="bg-white dark:bg-[#0b0b0b] rounded-2xl overflow-hidden border border-gray-200 dark:border-gray-800 shadow-sm transition-shadow hover:shadow-md h-[280px] flex flex-col">
        <div className="h-[160px] w-full bg-gray-100 dark:bg-gray-800 relative overflow-hidden rounded-t-2xl rounded-b-none">
          {video && (isPlaying || !img) ? <iframe src={isPlaying ? autoplayVideo : video} title={title} className="w-full h-full" allowFullScreen allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" /> : img ? video ? <button type="button" aria-label={`Play ${title}`} className="carousel-card-playgroup relative h-full w-full cursor-pointer" onClick={() => setIsPlaying(true)}>
                <img src={img} alt={title} className="w-full h-full object-cover" />
                <span className="absolute inset-0 bg-black/20 transition-colors group-hover:bg-black/30" aria-hidden="true" />
                <span className="absolute inset-0 flex items-center justify-center" aria-hidden="true">
                  <span className="flex h-14 w-14 items-center justify-center rounded-full bg-white/95 text-[#0061D5] text-xl shadow-lg">
                    ▶
                  </span>
                </span>
              </button> : <img src={img} alt={title} style={{
    pointerEvents: "none"
  }} className="w-full h-full object-cover" /> : null}
        </div>
        <div className="flex flex-col flex-1">
          <h3 className="px-6 pt-3 text-lg text-[20px] font-bold text-gray-900 dark:text-white line-clamp-3">{title}</h3>
        </div>
      </div>
    </Wrapper>;
};

export const Carousel = ({children, title = "Education", columns = 3}) => {
  const items = Array.isArray(children) ? children : [children];
  const tabs = items.map(child => ({
    title: child.props.title,
    icon: child.props.icon,
    content: child.props.children,
    allHref: child.props.allHref,
    allText: child.props.allText || "See all courses"
  }));
  const gridClassName = columns <= 1 ? "grid grid-cols-1 gap-x-5 gap-y-8" : columns === 2 ? "grid grid-cols-1 sm:grid-cols-2 gap-x-5 gap-y-8" : "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-x-5 gap-y-8";
  const [activeTab, setActiveTab] = useState(0);
  const tabsRef = useRef([]);
  const [indicatorStyle, setIndicatorStyle] = useState({
    left: 0,
    width: 0
  });
  useEffect(() => {
    const activeButton = tabsRef.current[activeTab];
    if (activeButton) {
      const parent = activeButton.parentElement;
      const parentRect = parent.getBoundingClientRect();
      const btnRect = activeButton.getBoundingClientRect();
      setIndicatorStyle({
        left: btnRect.left - parentRect.left,
        width: btnRect.width
      });
    }
  }, [activeTab]);
  const activeContent = Array.isArray(tabs[activeTab].content) ? tabs[activeTab].content : [tabs[activeTab].content];
  return <div className="w-full py-8 md:py-12 flex flex-col items-center">
      {}
      {title && <h1 className="mb-[32px] text-2xl md:text-[36px] font-semibold text-gray-900 dark:text-white text-center">
          {title}
        </h1>}

      {}
      {tabs.length > 1 && <div className="relative flex p-1 bg-[#F6F7F9] dark:bg-black border border-[#E2E5E8] dark:border-gray-700 rounded-full mb-[48px] md:mb-12 mx-4 h-[54px] items-center gap-2">
          {}
          <div className="absolute top-1 bottom-1 rounded-full bg-white dark:bg-gray-700 shadow-sm transition-all duration-300 ease-in-out" style={{
    left: indicatorStyle.left,
    width: indicatorStyle.width
  }} />
          {tabs.map((tab, idx) => <button key={idx} ref={el => tabsRef.current[idx] = el} onClick={() => setActiveTab(idx)} className={`relative z-10 flex items-center gap-2 px-4 md:px-6 py-2 rounded-full text-xs md:text-sm font-medium transition-colors duration-300 ${activeTab === idx ? "text-gray-900 dark:text-white" : "text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-200"}`}>
              {tab.icon && <Icon icon={tab.icon} size={16} color={activeTab === idx ? "#2563eb" : "#9ca1ab"} />}
              {tab.title}
            </button>)}
        </div>}

      {}
      <div className="w-full max-w-[940px] mx-auto px-4">
        <div className={gridClassName}>
          {activeContent.map((card, idx) => <div key={idx}>{card}</div>)}
        </div>
      </div>

      {}
      {tabs[activeTab].allHref && <>
          <style dangerouslySetInnerHTML={{
    __html: `
.carousel-see-all {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 209px !important;
  height: 48px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #F0F1F2 !important;
  border-radius: 9999px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  gap: 8px !important;
  text-decoration: none !important;
  color: #0061D5 !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  margin-top: 2rem !important;
}
.carousel-see-all:hover {
  border-color: #E5E7EB !important;
  box-shadow: none !important;
}
.carousel-see-all::after {
  content: "";
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background-color: #0061D5;
  -webkit-mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  mask-image: url("https://d3gk2c5xim1je2.cloudfront.net/v7.1.0/light/circle-arrow-right.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
          `
  }} />
          <a href={tabs[activeTab].allHref} className="carousel-see-all">
            {tabs[activeTab].allText}
          </a>
        </>}
    </div>;
};

<div className="article_labels_list" style={{display: 'none'}} dangerouslySetInnerHTML={{__html: "New , Product Utilization , Instruction , CX & Engagement"}} />

Welcome to Box! Want to get your Box enterprise up and running fast? Follow the steps below to get Box deployed at your organization:

1. [Log in to Box and access the Admin Console](#log-in-to-box-and-access-the-admin-console)
2. [Design your folder structure](#design-your-folder-structure)
3. [Configure 2-factor authentication and/or single sign-on](#configure-2-factor-authentication-andor-single-sign-on)
4. [Define your organization settings](#define-your-organization-settings)
5. [Integrate Box with the rest of your toolkit](#integrate-box-with-the-rest-of-your-toolkit)
6. [Provision Box to your end users](#provision-box-to-your-end-users)
7. [Enable your end users](#enable-your-end-users)

Already have Box deployed, and want to learn how to manage Box as an new Admin or Co-Admin? View more courses [here](https://training.box.com/collections/3dea3016-5410-11ea-9271-063e41907789).

<h2 id="log-in-to-box-and-access-the-admin-console">
  Log in to Box and access the Admin Console
</h2>

1\. Go to **app.box.com/login**

2\. Enter your email/username

3\. Enter your password

4\. Click **Log In**

If your company has enabled or required SSO for your organization, you can use your company credentials to log in to Box.

### Accessing the Admin Console

The **Admin Consol**e is available in all Box plans Business Starter and above.

Admins and Co-admins in organizations will have an Admin Console link at the bottom left of the Box navigation bar. Select **Admin Console** in the bottom-left to get access to your organization's administrative functions.

The functions you see depend on several factors:

* Some functions, such as Shield, Governance, and GxP require either a specific plan/tariff or additional paid add-ons.
* [Co-Admin permissions](/en/box-admin-tools/managing-box-users-and-admins/managed-users/granting-and-modifying-co-admin-permissions) can determine which functions that Co-admins have access to.
* Access your settings and other functions via links in the lefthand navigation of the Admin Console. In most cases, clicking one of these links displays a page with many settings and options arranged logically under a series of tabs that display across the top of the Admin Console screen.

<h2 id="design-your-folder-structure">
  Design your folder structure
</h2>

The needs of your organization will likely affect the way you manage your Box account and how you set up the folder taxonomy that is deployed to your team. Box folders are the foundation from which your users work. Defining a folder taxonomy that is intuitive and easy to navigate will greatly increase user adoption and maximize productivity. As you transition into Box, it is important to ensure that poor practices and inefficient workflows from previous content management systems are not repeated.

#### Questions to consider before designing your Box folder structure:

* Who moves, owns, and maintains the content?
* What root level folders make sense for your org? This is typically based on the departments, regions, or groups using Box.
* Does your organization prefer to give users the ability to create and manage their own top-level folders? Or does your organization prefer to own (and control) all root level folders?
* Do your Admins and Co-Admins need full access to users' content?
* Are different levels of access needed for users, or are groups appropriate?
* Are there any particular security needs around any of your content?

#### Open vs Closed Folder Taxonomy

There are two basic Box folder structures to choose from: open folder taxonomy and closed folder taxonomy. The taxonomy you choose is largely based on your internal security protocols and workflows.

|                                                                   | Open Folder Taxonomy                                                                                                                                                                                                                                                                                                                                     | Closed Folder Taxonomy                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| ----------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| <strong>What is it?</strong>                                      | Users can create their own root level folders on the <strong>Files</strong> page.<br /><br />The open folder structure is enabled by default unless you've restricted the option in your Admin Console.                                                                                                                                                  | Admins will create and own all root level folders on the <strong>Files</strong> page. Admins will also restrict users from being able to create root level folders or private folders, and users will need to be invited into folders by Admins.<br /><br />To create a Closed Folder Taxonomy, you need to navigate to Admin Console > Enterprise Settings > Content & Sharing tab, and then scroll down to the Content Creation section and check Restrict Content Creation.                                                                                                                                                             |
| <strong>Does this option make sense for my organization?</strong> | This option requires less involvement from your administrators.<br /><br />Ideal for users who need to create and manage individual work spaces on demand. Users have the option to create a private folder for their own use.<br /><br />Often deployed by organizations that don’t require strict IT oversight or handle highly-sensitive information. | This option requires more planning and involvement from the administrative team, but also greatly reduces folder sprawl and adds structure to your content.<br /><br />Choosing a closed folder structure indicates that the administrative team needs more control of the users and their content.<br /><br />This specific use case will make the administrative team responsible for building out the folder structure, new user creation, and assignment of groups and/or users to folders.<br /><br />This is a common folder structure for larger, enterprise accounts, or where Box is replacing another content management system. |

#### Folder Structure Best Practices

Understanding Box’s folder permissions and collaboration features will help you configure your folder structure so your team can get the most out of Box. See the [Folder and Subfolder Permissions article](/en/box-fundamentals/for-users/collaborating/collaborating-by-inviting-others/understanding-folder-permissions) to learn more about Box's waterfall permissions.

**1. More restricted content should live at a higher folder level.**

You will invite other collaborators and external users further down the folder structure. Because of waterfall permissions, a user's access only flows down to subfolders. Thus, your sensitive, confidential content should be in a folder towards the top of your structure that will remain more private.

**2. Ensure naming conventions of folder and files are extremely clear.**

Users will be invited in at different folder levels, and that level will appear as their "root folder." Clear, consistent naming conventions will help the user stay oriented in the folder structure and will help with searching for content. For example, being invited to a folder titled "Sales - Corporate Team" is more explanative than the title "Corporate"

**3. Keep the structure as flat as possible.**

A quick rule of thumb is to not design more than six levels of folders within your structure. A flat folder structure will be more efficient for organizing your content, and less frustrating for your users to navigate through.

**4. Every user's** ***Files*** **page will look different depending on the folders they've created and/or the folders they've been invited into.**

Reduce the number of folders on the **Files** page by inviting users into department or team folders. Or, make your users aware of Collections so your users can organize the folders they most often work within in collections to easily navigate to those folders.

**5. Create separate folders for external collaboration.**

These can be subfolders under a client folder, or they can be separate root level folders depending on the needs of your organization. Be sure to label all public/external folders appropriately so your users understand that content in those folders will be viewed by third parties.

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508b39a30d8e64c45f36a07/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="configure-2-factor-authentication-andor-single-sign-on">
  Configure 2-factor authentication and/or single sign-on
</h2>

Box 2-step login verification, also known as two-factor authentication (2FA), enables you to increase your content security and better protect your enterprise's content from unauthorized external access.

You can **enable** or **disable** 2-step login verification for:

* All of your organization's managed users.

* All of your organization's external collaborators, or just for specific external collaborators based on their domains or their email addresses.

To configure 2-factor login verification for your managed users:

1\. Go to **Admin Console** > **Enterprise Settings** > **Security**.

2\. In the 2-Step Login Verification section, check **Require all managed uses to have additional verification for unrecognized logins**.

3\. At the top of the page, click **Save**.

To configure 2-step login verification for external users or learn more, click [here](/en/box-admin-tools/box-security/configuring-multi-factor-authentication).

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508b3deae9532e05a6c4df9/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

#### Single Sign-On

Single sign-on (SSO) is a method for authenticating users where a single set of credentials can be used to log into several different applications.

With SSO, you use one password to access all of your applications, which reduces password fatigue and tickets to your help desk. This is especially useful in a corporate setting, when you want your employees to be able to access a variety of applications using their company credentials.

Administrators and co-admins also have the option of setting up single sign-on on their own. Box can also assist in setting up SSO. For more information, click [here](/en/box-admin-tools/box-security/setting-up-single-sign-on-sso-for-your-organization).

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_6508b5096b9b46588d54f586/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="define-your-organization-settings">
  Define your organization settings
</h2>

Content & Sharing settings allow you to enable or disable various permission types that are available to managed user when collaborating and sharing files. To enable or disable these settings, visit the Enterprise Settings tab in the Admin Console.

Below is a list of key Enterprise Settings that can have a significant impact on end user functionality. To view all available settings, click the link [here](/en/box-admin-tools/box-admin-reference).

| <strong>Enterprise Category</strong>       | <strong>Enterprise Setting</strong>       | <strong>Description</strong>                                                                                                                   |
| ------------------------------------------ | ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| <strong>Shared Links</strong>              | <em>Allow shared links for</em>           | Adjust your shared link permissions to define the content type you allow to be shared                                                          |
| <strong>Collaborating on Content</strong>  | <em>Restrict invites</em>                 | Restricts collaborator invitations to admins, folder owners, and co-owners                                                                     |
| <strong>Collaborating on Content</strong>  | <em>External collaboration</em>           | Option to disable/customize who can be invited as external collaborators                                                                       |
| <strong>Content Creation</strong>          | <em>Restrict Content Creation</em>        | Allows only admins to create and delete first-level folder, files, and bookmarks                                                               |
| <strong>Auto-Expiration</strong>           | <em>Shared links expiration settings</em> | Option to automatically disable shared links after set expiration timeframe                                                                    |
| <strong>New User Default Settings</strong> | <em>Enable Box Sync</em>                  | Enables users to automatically update files on Box whenever a user makes a change on their Desktop                                             |
| <strong>Official Box Applications</strong> | <em>Applications Enabled/Disabled\*</em>  | Enables/Disables Box Applications                                                                                                              |
| <strong>Device Trust Settings</strong>     | <em>Device Trust</em>                     | Enables you to meet your enterprise's compliance or security standards by setting a minimum set of requirements for devices used to access Box |

<h2 id="integrate-box-with-the-rest-of-your-toolkit">
  Integrate Box with the rest of your toolkit
</h2>

Box integrates with all of your key applications. Common actions include:

* [Enabling coauthoring in Box for Microsoft Office](https://support.box.com/hc/en-us/articles/17956056014995)
* [Integrating Box and Salesforce](https://support.box.com/hc/en-us/articles/360044195693)
* [Deploying the Box app for Zoom in your enterprise](https://support.box.com/hc/en-us/articles/4405398478355)

Click [here](https://support.box.com/hc/en-us/categories/21356608331155-Integrations) to see all of Box's integration support documentation.

For a full list of Box integrations, visit the [Box Integrations](https://cloud.app.box.com/integrations).

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_65034c15ae95325a786c2226/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

<h2 id="provision-box-to-your-end-users">
  Provision Box to your end users
</h2>

#### Adding managed users

A "managed user" is a Box account that you directly control through your Admin Console.

As an admin, you can add managed users; edit, delete, and enforce their security settings; and run activity reports on these users. Any files these users upload into folders they own will count against your total storage allocation.

When you add a managed user, you also configure their access to Box. You can add a single managed user or multiple managed users, up to 1,000 at once.

**To add one or more managed users manually:**

1\. Go to **Admin Console** > **Users and Groups**.

2\. Click the **Managed Users** tab.

3\. Click **Add Users** and then click **Add Users Manually**.

4\. Enter the managed user's name and email address.

*Optionally* select **Groups** for the user to be a member of and **Folders** for the user to have access to.

*Optionally* hover over a user row and click the **Gear icon** to configure other user settings for that new user or click and then click **Select User Settings** for All Rows to configure other user settings for all new users. See the **Managed Users Tab** section of **Users & Groups Settings** for details.

*Optionally* click **Add User** to add a row to the table. Then repeat steps 4 through 6 for each user.

5\. Click **Save**.

To bulk-add users via a .csv file, click [here](/en/box-admin-tools/managing-box-users-and-admins/managed-users/adding-managed-users) to learn more. Once you create the user, you can additionally [configure the user account](/en/box-admin-tools/managing-box-users-and-admins/managed-users/configuring-and-editing-users).

<Frame>
  <iframe className="w-full aspect-video rounded-xl" src="https://players.brightcove.net/6291496955001/experience_65f1c55367acf1fdea5bd062/index.html" title="Video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen />
</Frame>

#### Adding external users

Adding business partners, customers, or consultants to your Box account does not require taking action in the Admin Console. You can simply add them as collaborators to a folder.

Box recognizes that these individuals are not among your managed users, and adds them to the external user list for you to track in the Admin Console. Additionally, Box displays a small globe icon next to the name of each external user.

#### Organizing users into groups

In Business Plus and all Enterprise plans, Groups enable you to add multiple users to your folders and decide what permissions they’ll have in those folders.

See [Creating and Managing Groups](/en/box-admin-tools/managing-box-users-and-admins/groups/creating-and-managing-groups) for details.

<h2 id="enable-your-end-users">
  Enable your end users
</h2>

After you create your users, configure your folders, and customize your account's Admin Console settings, it's time to go live!

Here are communication options you can use to form your message to your new users. To help you answer questions from any of your people, and also to help them make the most of their Box accounts, we encourage you and anyone who uses Box to use these education links:

* [**CLICK HERE**](https://training.box.com/trainings) to sign up for **online Box University classes** or **share quick videos** with your users.
* [**CLICK HERE**](/en/box-fundamentals/for-users/getting-started/box-user-basics) to explore these **Getting Started articles** for people new to Box
* [**CLICK HERE**](https://support.box.com/hc/en-us/community/topics/360001934573-Support-Forum) to search our **support forum** for customer insights

## Ready to keep learning?

<Carousel title="Quick videos" columns={2}>
  <CarouselItem title="Quick videos">
    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-7.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=717e727bee91c0d1311c70c8a8439f60" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323986441112" title="Monitoring your enterprise with reports" width="1280" height="720" data-path="images/box-fundamentals/image-7.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-8.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=57cf101bed17629df1b0c0d91d393e3d" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983772112" title="Managing shared links in your enterprise" width="1280" height="720" data-path="images/box-fundamentals/image-8.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-9.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=6f65dd93ce4e113dce29650055ad73bb" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323984875112" title="Managing collaborator settings for Admins" width="1280" height="720" data-path="images/box-fundamentals/image-9.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-10.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=dea2e6618d40cd8d67aaf390708e0d29" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6323983392112" title="Managing custom applications" width="1280" height="720" data-path="images/box-fundamentals/image-10.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-11.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=1a0cb54fa7b00e86e99177002b739649" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6332247465112" title="Using Box as the Custom Files Store in Slack" width="1280" height="720" data-path="images/box-fundamentals/image-11.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-12.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=b9ae76cad08dd0ba664cebd26f1f3b6d" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6332316138112" title="Stay compliant with retention policies" width="1280" height="720" data-path="images/box-fundamentals/image-12.jpg" />

    <CarouselCard img="https://mintcdn.com/product-docs/GS2O48pS2WaD6nkd/images/box-fundamentals/image-13.jpg?fit=max&auto=format&n=GS2O48pS2WaD6nkd&q=85&s=c6ab33138ec1e4e75defa95e63481aa3" video="https://players.brightcove.net/6291496955001/default_default/index.html?videoId=6332316717112" title="Protecting IP and PII using Box Shield" width="1280" height="720" data-path="images/box-fundamentals/image-13.jpg" />
  </CarouselItem>
</Carousel>

View more Box user courses [here](https://training.box.com/collections/3dea3016-5410-11ea-9271-063e41907789).

View more courses for Box admins and Co-Admins [here](https://training.box.com/collections/46851ae4-5ee2-11ed-b8db-06c0361096e5).
