How to use SharePoint Powershell

How to use SharePoint Powershell

PowerShell Power Up: Mastering SharePoint Online Management Shell

The PowerShell SharePoint Online Management Shell (SPO Management Shell) is an indispensable tool for administrators seeking to harness the full potential of SharePoint Online. Unlike the standard user interface, the PowerShell SPO Management Shell offers advanced users granular control over their SharePoint environments. Whether you’re managing a complex network of sites or automating routine tasks, PowerShell within the SPO Management Shell provides the flexibility and power to streamline your operations efficiently.

The primary benefit of using the SPO Management Shell lies in its ability to execute complex tasks with precision and efficiency. Advanced users, in particular, can leverage its capabilities to automate repetitive processes, enforce security policies consistently, and manage large-scale deployments with ease. This level of control can significantly enhance productivity and ensure that your SharePoint Online environment runs smoothly and securely.

Topic Key Points
Introduction SPO Management Shell offers granular control and automation capabilities for SharePoint Online.
Getting Started Detailed steps to install and connect to the SPO Management Shell.
Basic Navigation Commands Examples of commands to navigate and manage SharePoint Online sites and lists.
Common Use Cases Practical examples of creating sites, managing permissions, and automating tasks with PowerShell.
Learning Resources Official documentation, online communities, training courses, and blogs for further learning.
Conclusion Emphasizes the power and flexibility of the SPO Management Shell and encourages further exploration.

Getting Started with SharePoint Powershell

To begin your journey with the SharePoint Online Management Shell, you’ll first need to install and connect it to your SharePoint Online environment. Here’s a step-by-step guide to get you started:

Step 1: Install the SharePoint Online Management Shell

  1. Download the SharePoint Online Management Shell: Visit the Microsoft Download Center and download the latest version of the SPO Management Shell.
  2. Run the Installer: Execute the downloaded file and follow the on-screen instructions to install the SPO Management Shell on your computer.
  3. Verify the Installation: Open PowerShell and run the following command to ensure the SPO Management Shell is installed correctly:

Get-Module -ListAvailable -Name Microsoft.Online.SharePoint.PowerShell

Mastering SharePoint Online

Please fill out the form below to get our free Ebook "Mastering SharePoint Online" emailed to you

FREE DOWNLOAD

Send download link to:

I confirm that I have read and agree to the End User License Agreement.

Step 2: Connect to SharePoint Online

  1. Open the SharePoint Online Management Shell: Launch the SPO Management Shell from your Start menu or by running powershell and importing the module manually.
  2. Connect to Your SharePoint Online Admin Center: Use the following command to connect to your SharePoint Online Admin Center:
    Connect-SPOService -Url https://<your-admin-center-url>
  3. Replace <your-admin-center-url> with the URL of your SharePoint Online Admin Center (e.g., https://contoso-admin.sharepoint.com).
  4. Authenticate: When prompted, enter your SharePoint Online admin credentials.

Step 3: Basic Commands for Navigating SharePoint Online

Once connected, you can start using basic commands to navigate and manage your SharePoint Online environment. Here are a few essential commands to get you started:

  • Get a list of all site collections:
    Get-SPOSite
  • Retrieve details of a specific site collection:
    Get-SPOSite -Identity https://contoso.sharepoint.com/sites/HR 
  • List all SharePoint Online users:
    Get-SPOUser -Site https://contoso.sharepoint.com/sites/HR

    These commands provide a solid foundation for navigating your SharePoint Online environment. As you become more comfortable with the SPO Management Shell, you can start exploring more advanced commands and scripts to automate tasks and streamline your workflows.

SharePoint Storage Explorer

Gain insights in to your SharePoint Online Storage Consumption


Download our completely FREE TOOL

FREE DOWNLOAD

Send download link to:

I confirm that I have read and agree to the End User License Agreement.

Common Use Cases

The true power of the SharePoint Online Management Shell shines when you start using it to perform common administrative tasks. Here are a few practical examples with code snippets:

Create and Manage SharePoint Sites and Lists

Creating and managing sites and lists is a frequent task for SharePoint administrators. With the SPO Management Shell, you can easily create new site collections and lists:

  • Create a new site collection:
    New-SPOSite -Url https://contoso.sharepoint.com/sites/NewSite -Owner admin@contoso.com -StorageQuota 1000 -Title “New Site Collection”
  • Create a new list within a site:

    Connect-PnPOnline -Url https://contoso.sharepoint.com/sites/NewSite -UseWebLogin
    New-PnPList -Title “New List” -Template GenericList

Set User Permissions and Security Settings

Managing user permissions is crucial for maintaining the security and integrity of your SharePoint Online environment. With the SPO Management Shell, you can efficiently manage user access:

  • Add a user to a site collection:
    Add-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName user@contoso.com -Role “Site Owner”
  • Remove a user from a site collection:
    Remove-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName user@contoso.com

Automate Tasks with Scripting

Automation is one of the most powerful features of the SPO Management Shell. By scripting common tasks, you can save time and reduce the potential for errors:

  • Bulk user provisioning:
    $users = Import-Csv -Path “C:\Users\NewUsers.csv”
    foreach ($user in $users) {
    Add-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName $user.Email -Role “Member”
    }

SharePoint Storage Explorer

Gain insights in to your SharePoint Online Storage Consumption


Download our completely FREE TOOL

FREE DOWNLOAD

Send download link to:

I confirm that I have read and agree to the End User License Agreement.

Learning Resources

To master the SharePoint Online Management Shell, it’s essential to tap into a variety of learning resources. These resources can provide you with the latest updates, best practices, and troubleshooting tips to enhance your knowledge and efficiency.

Official Microsoft Documentation

The first stop for any SharePoint Online Management Shell user should be the official Microsoft documentation. This comprehensive resource offers detailed explanations, syntax for commands, and examples to help you get the most out of the SPO Management Shell.

  • SharePoint Online Management Shell Documentation: Visit the official Microsoft documentation for detailed information on connecting to and using the SharePoint Online Management Shell. This resource is regularly updated with new features and best practices.

Online Communities and Forums

Engaging with online communities can provide invaluable insights and support from fellow SharePoint administrators and PowerShell enthusiasts. These communities are great places to ask questions, share experiences, and learn from others’ challenges and solutions.

  • Microsoft Tech Community: The Microsoft Tech Community is a vibrant forum where you can discuss SharePoint Online and PowerShell topics. It’s a great place to find answers to specific questions and to stay updated on the latest developments.
  • Reddit SharePoint Community: The Reddit SharePoint Community is another excellent resource for troubleshooting and discussion. With a wide range of topics and active participants, you can gain diverse perspectives on managing SharePoint Online with PowerShell.

Training Courses and Tutorials

Structured training courses and video tutorials can offer step-by-step guidance and hands-on experience with the SharePoint Online Management Shell. These resources are particularly useful for visual learners and those who prefer a more guided learning experience.

  • Pluralsight: Pluralsight offers comprehensive courses on SharePoint Online and PowerShell. These courses cover everything from basic commands to advanced scripting techniques, helping you build a solid foundation.
  • YouTube Tutorials: Numerous YouTube channels provide free tutorials on SharePoint Online and PowerShell. Channels like SharePoint Maven offer practical tips and demonstrations that can help you understand and apply various commands.

Conclusion

The SharePoint Online Management Shell is a powerful tool that offers unmatched flexibility and control for managing your SharePoint Online environment. By leveraging the resources mentioned above, you can deepen your understanding, enhance your skills, and unlock the full potential of the SPO Management Shell.

Whether you’re looking to automate routine tasks, enforce security policies, or manage complex deployments, the SharePoint Online Management Shell provides the tools you need to succeed. Embrace the power and flexibility it offers, and continue exploring its capabilities to become a SharePoint Online PowerShell expert.

SharePoint PowerShell Commands

Command Description
Get-Module -ListAvailable -Name Microsoft.Online.SharePoint.PowerShell Verify the installation of the SPO Management Shell.
Connect-SPOService -Url https://<your-admin-center-url> Connect to the SharePoint Online Admin Center.
Get-SPOSite Get a list of all site collections.
Get-SPOSite -Identity https://contoso.sharepoint.com/sites/HR Retrieve details of a specific site collection.
Get-SPOUser -Site https://contoso.sharepoint.com/sites/HR List all SharePoint Online users within a specific site.
New-SPOSite -Url https://contoso.sharepoint.com/sites/NewSite -Owner admin@contoso.com -StorageQuota 1000 -Title "New Site Collection" Create a new site collection.
Connect-PnPOnline -Url https://contoso.sharepoint.com/sites/NewSite -UseWebLogin Connect to a specific SharePoint Online site using PnP PowerShell.
New-PnPList -Title "New List" -Template GenericList Create a new list within a site using PnP PowerShell.
Add-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName user@contoso.com -Role "Site Owner" Add a user to a site collection.
Remove-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName user@contoso.com Remove a user from a site collection.
powershell<br>$users = Import-Csv -Path "C:\Users\NewUsers.csv"<br>foreach ($user in $users) {<br>Add-SPOUser -Site https://contoso.sharepoint.com/sites/NewSite -LoginName $user.Email -Role "Member"<br>} Script to bulk provision users from a CSV

Squirrel: Effortless SharePoint Archiving

Streamline your SharePoint archiving with Squirrel! Automate document archiving to Azure Blob Storage and ensure easy access and security. Make SharePoint management simple and efficient with Squirrel.

Squirrel for SharePoint Site Size Reporting

Save costs with Squirrel. Automate SharePoint archiving to Azure Blob Storage, reducing expenses while ensuring secure and accessible data. Efficient and budget-friendly.

Ready To Reduce SharePoint Online Costs?

Mastering SharePoint Document Archiving

Mastering SharePoint Document Archiving

Conquer the Clutter – SharePoint Archiving

In today’s digital age, businesses and organizations increasingly rely on SharePoint to manage their vast amounts of data and documents. However, this reliance often leads to an inevitable challenge: the overflow of document libraries, and how do you implement SharePoint Archiving. When left unchecked, these libraries can become overwhelming, cluttered, and inefficient, hampering productivity and making it difficult to locate crucial information.

Key Point Description
Challenges of Document Overload Overflowing SharePoint document libraries can hinder productivity and make information retrieval difficult.
Importance of Archiving Document archiving is essential for organization, efficiency, and compliance in SharePoint.
Native SharePoint Features Version control, archive libraries, and retention policies help manage document lifecycle effectively.
Custom Solutions Metadata and filtering, along with automation tools like Power Automate, enhance archiving processes.
Best Practices Establish clear archiving policies, organize documents logically, and set appropriate permissions.
Introduction to Squirrel Squirrel is an advanced SaaS solution for automated document archiving in SharePoint Online.
Squirrel’s Key Features Automated archiving, seamless SharePoint integration, advanced reporting, and robust security.
Benefits of Using Squirrel Cost savings, improved performance, enhanced organization, and compliance assurance.
Conclusion Effective archiving strategies and tools like Squirrel ensure a well-managed SharePoint environment.
Archiving documents in SharePoint is not just a housekeeping task; it’s a critical strategy for maintaining organization and efficiency. Proper archiving ensures that your active working environment remains uncluttered, which speeds up document retrieval and enhances user experience. Moreover, it optimizes storage usage and helps in compliance with legal and regulatory requirements by systematically managing the lifecycle of documents. In essence, mastering document archiving in SharePoint is about creating a sustainable and scalable approach to document management that supports your business objectives.

Understanding the importance of document archiving goes beyond just managing space. It’s about ensuring that your organization can quickly adapt to changes, recover from disruptions, and continue operations seamlessly. By implementing effective archiving strategies, you can protect vital information from accidental deletion, streamline workflows by removing outdated documents from active use, and enhance overall data governance.

As we delve deeper into this topic, we’ll explore both native SharePoint features and custom solutions for document archiving. From utilizing version control and creating archive libraries to setting up retention policies and employing metadata for efficient categorization, these strategies will help you conquer the clutter and maintain a well-organized, efficient SharePoint environment. By the end of this guide, you’ll be equipped with the knowledge to implement best practices for document archiving, ensuring that your SharePoint sites remain functional, accessible, and compliant with your organization’s needs.

SharePoint Storage Explorer

Gain insights in to your SharePoint Online Storage Consumption


Download our completely FREE TOOL

FREE DOWNLOAD

Send download link to:

I confirm that I have read and agree to the End User License Agreement.

Archiving Strategies

Native SharePoint Features

Version Control: One of the most powerful, yet often overlooked, features of SharePoint is version control. This feature maintains a version history for each document, automatically creating a new version each time a document is edited. This built-in archive allows users to track changes, revert to previous versions, and maintain a clear record of document evolution. Version history is especially useful in collaborative environments where multiple users may be editing documents, as it helps prevent data loss and ensures that all changes are documented. By leveraging version control, you can reduce clutter in your main document library while still retaining access to older document versions as needed.

Archive Libraries: Creating dedicated archive libraries for inactive documents is another effective strategy for managing SharePoint document libraries. Archive libraries serve as separate storage spaces where you can move documents that are no longer actively used but still need to be retained for reference or compliance purposes. This not only declutters your main document libraries but also makes it easier to organize and retrieve archived documents. To set up an archive library, simply create a new document library in SharePoint, label it appropriately (e.g., “Archive – Q1 2024”), and move inactive documents into this library. You can further organize these libraries by year, department, or project to maintain a logical structure.

Retention Policies: Retention policies in SharePoint allow you to automate the archiving process based on predefined rules. These policies can be set to move documents to an archive library or delete them after a certain period, ensuring that your document libraries are regularly cleaned up without manual intervention. For example, you can create a retention policy that archives documents that haven’t been modified in the last year or that deletes draft versions after six months. By automating the archiving process, retention policies help maintain a clean and efficient document library while ensuring compliance with your organization’s data management policies.

Custom Solutions

Metadata and Filtering: Utilizing custom metadata columns can significantly enhance the efficiency of your document archiving process. By adding metadata fields to your documents, such as document type, department, or project name, you can categorize and filter archived documents more effectively. This allows for more precise searches and better organization within your archive libraries. For instance, adding a “Retention Date” metadata column can help you identify which documents are due for archiving or deletion based on your retention policy. Metadata-driven archiving not only improves document retrieval but also supports better data governance and compliance tracking.

Content Organizer (On-premises only): The Content Organizer is a legacy feature in SharePoint on-premises environments that can help automate the routing of documents to appropriate libraries or folders based on metadata rules. While this feature is not available in SharePoint Online, it is worth mentioning for organizations still using on-premises versions. The Content Organizer can streamline the archiving process by automatically moving documents to the correct archive library or folder based on predefined criteria. However, it’s important to note its limitations and consider alternative solutions for SharePoint Online, such as Power Automate, which can achieve similar results with more flexibility and integration capabilities.

Best Practices

To ensure a successful document archiving strategy in SharePoint, consider the following best practices:

Define a Clear Archiving Policy: Establish clear guidelines for document archiving, including retention periods, criteria for archiving, and processes for reviewing and updating archived documents. This policy should be communicated to all users to ensure consistency and compliance.

Organize Archived Documents Logically: Create a logical structure for your archived documents, such as organizing by year, department, or project. This makes it easier to locate and retrieve archived documents when needed.

Set Appropriate Permissions: Ensure that archived documents are accessible only to authorized users by setting appropriate permissions. This helps protect sensitive information and maintains data security.

Mastering SharePoint Online

Please fill out the form below to get our free Ebook "Mastering SharePoint Online" emailed to you

FREE DOWNLOAD

Send download link to:

I confirm that I have read and agree to the End User License Agreement.

Squirrel: Advanced Archiving Solutions for SharePoint

As organizations continue to generate vast amounts of data, the need for efficient and automated archiving solutions becomes increasingly critical. While SharePoint offers robust native features for document management and archiving, there are scenarios where more advanced tools can provide additional benefits. Enter Squirrel, an innovative SaaS product designed to optimize and automate the document archiving process for SharePoint Online.

What is Squirrel?

Squirrel is an automated document archiving solution specifically developed for SharePoint Online. It streamlines the process of moving documents to more cost-effective storage solutions while ensuring that they remain easily accessible and secure. Squirrel is designed to handle the entire lifecycle of SharePoint documents, from initial creation and active use to archiving and eventual deletion, based on customizable lifecycle policies.

Key Features of Squirrel

Automated Archiving: One of the standout features of Squirrel is its ability to automate the archiving process. Based on predefined lifecycle policies, Squirrel identifies documents that are no longer actively used and moves them to Azure Blob Storage. This automation not only reduces the manual effort required to manage document libraries but also ensures that archiving happens consistently and efficiently.

Seamless Integration with SharePoint: Squirrel seamlessly integrates with SharePoint Online, providing a smooth user experience. When a document is archived, Squirrel leaves a stub file in SharePoint using the same file name as the original, but with an HTML extension. This stub file acts as a placeholder, allowing users to locate and access archived documents easily. When users need to retrieve an archived document, they can simply click the stub file, and Squirrel will automatically rehydrate the document, restoring it to its original format.

Advanced Reporting: Understanding the status and history of your documents is crucial for effective data management. Squirrel includes comprehensive reporting capabilities that provide insights into your document libraries. Users can generate reports on archived documents, view document lifecycle stages, and track storage savings. These reports help organizations make informed decisions about their data management strategies and ensure compliance with internal and external regulations.

Security and Compliance: Data security is a top priority for any organization, and Squirrel ensures that all archived documents are encrypted and protected. The solution employs robust encryption protocols to safeguard data both in transit and at rest. Additionally, Squirrel supports compliance with various regulatory requirements by providing detailed audit trails and maintaining the integrity of archived documents.

Customization and Flexibility: Every organization has unique document management needs, and Squirrel offers the flexibility to customize archiving policies to fit specific requirements. Squirrel allows you to set up tailored policies that align with your organizational goals. This customization ensures that your archiving process is both effective and adaptable to changing business needs.

Benefits of Using Squirrel

Cost Savings: By moving inactive documents to Azure Blob Storage, Squirrel helps organizations reduce their SharePoint storage costs significantly. Azure Blob Storage offers a more economical solution for storing large volumes of data, allowing organizations to optimize their storage expenses without compromising on accessibility.

Improved Performance: Archiving inactive documents helps declutter active document libraries, enhancing their performance. With fewer documents to manage, SharePoint operates more efficiently, leading to faster document retrieval times and a better overall user experience.

Enhanced Organization: Squirrel’s automated archiving and reporting capabilities help maintain a well-organized document management system. By keeping active and archived documents separate yet easily accessible, Squirrel supports a more structured and efficient approach to data management.

Compliance Assurance: Squirrel’s robust security features and detailed audit trails ensure that organizations can meet regulatory compliance requirements. By providing a clear record of document lifecycle actions, Squirrel helps organizations demonstrate compliance and maintain data governance standards.

Conclusion

Squirrel is a powerful tool for any organization looking to enhance its SharePoint document archiving strategy. By automating the archiving process, providing seamless integration with SharePoint, and offering advanced reporting and security features, Squirrel helps organizations manage their document lifecycle more effectively. With Squirrel, you can achieve cost savings, improve performance, maintain better organization, and ensure compliance, all while simplifying your document management process.

For organizations seeking to conquer the clutter and master document archiving, Squirrel offers an advanced, automated solution that makes managing SharePoint documents easier and more efficient than ever before. Embrace the power of Squirrel and transform your approach to document archiving today.

Simplify Document Management with Squirrel

Automate your SharePoint archiving with Squirrel. Save time, reduce costs, and stay organized effortlessly. Keep your data secure and compliant. Transform your document management today!

Squirrel for SharePoint Site Size Reporting

WANT TO SEE SQUIRREL IN ACTION?

Archiving and Compliance in SharePoint

Archiving and Compliance in SharePoint

Modernizing Document Archiving

In the rapidly evolving digital landscape, managing extensive document volumes in SharePoint Online is a challenging task for any organization. As businesses expand, there is an increasing demand for efficient, cost-effective storage solutions that provide space savings, ensure compliance, and offer easy access. Squirrel is a cutting-edge SaaS solution designed to automate the archiving process by moving documents from SharePoint Online to Azure Blob Storage. This innovative tool seamlessly integrates efficiency and security, addressing modern document management needs.

Squirrel for SharePoint File Type Reporting

SharePoint Archiving & Compliance

Manage your SharePoint Online data smarter. Squirrel automates document archiving to Azure Blob Storage, reduces costs, and ensures you stay compliant.

Squirrel SharePoint File Type Reporting

Why Archiving Matters

  • Performance: Improve SharePoint speed by archiving inactive files to Azure.
  • Cost Savings: Free up primary storage and move cold data to cheaper blob tiers.
  • Compliance: Stay audit-ready and aligned with GDPR, HIPAA, and ISO mandates.

Why Archiving is Essential for Compliance

Modern compliance standards require more than simply storing data — they require organizations to prove that data is retained correctly, securely, and for the right duration. In SharePoint Online, users can freely delete or modify content unless governed by strict policies. Without proper archiving, there is no reliable way to ensure regulatory requirements are being met.

Regulations like GDPR, HIPAA, ISO 27001, and others demand that organizations enforce retention policies, enable data recovery, and maintain access logs. Manual processes are time-consuming and error-prone, leaving organizations vulnerable to audits, fines, and data loss. Archiving helps you enforce structure, keep data tamper-proof, and ensure retention rules are applied automatically.

Key Archiving Capabilities

Retention Policies

Define archive rules by file age, activity, or metadata.

eDiscovery & Holds

Support legal compliance without disrupting access.

Audit Trails

Track activity and prove compliance with detailed logs.

How Squirrel Enhances SharePoint

Squirrel works alongside SharePoint Online to archive files based on your policies, retain metadata and structure, and automate clean-up. This reduces manual effort, saves costs, and ensures you remain compliant.

Future-Proof Compliance

  • AI Tagging: Classify and archive content intelligently.
  • Privacy Tools: Support data subject access and deletion requests.
  • Secure Storage: Encrypt and control archived files in Azure.

Get Started with Squirrel

Let us help you streamline SharePoint archiving. Automate retention, stay compliant, and reduce Microsoft 365 storage costs.

Request a Demo of Squirrel

Managing Your SharePoint Costs Doesn’t Have to Be Hard.

Request more information or a demo of Squirrel to see how much it can save you with your SharePoint Online costs.

Squirrel for SharePoint Dashboard

Ready To Get Started?

Master SharePoint Online Storage Consumption

Master SharePoint Online Storage Consumption

Master SharePoint Online Storage Consumption with SmiKar’s Free SharePoint Storage Explorer

Understanding SharePoint Online Storage Consumption

SharePoint Online has become an essential tool for businesses, offering robust document management and collaboration capabilities. However, with its widespread adoption comes the challenge of managing storage effectively. SharePoint Online storage consumption can quickly escalate, leading to increased costs and potential performance issues. Therefore, understanding and managing this consumption is crucial for maintaining an efficient and cost-effective SharePoint environment.

Storage in SharePoint Online is a finite resource, and exceeding allocated limits can incur additional costs. Moreover, poor storage management can result in cluttered libraries, making it difficult for users to find and access important documents. Therefore, it’s vital to have a clear view of how storage is being utilized and to implement strategies to optimize this usage.

SharePoint Storage Explorer Charts

Common Challenges in Managing SharePoint Online Storage

One of the most significant challenges in managing SharePoint Online storage is identifying large and unused files. These files can occupy a substantial amount of storage space and contribute little to everyday operations. Traditional methods of manually sorting through files are not only time-consuming but also inefficient.

Another challenge is tracking storage consumption over time. Without the right tools, it can be difficult to monitor how storage usage trends and identify periods of high consumption. This lack of insight can hinder effective storage planning and lead to unexpected costs.

Managing storage quotas and avoiding overage fees is another common issue. Many organizations struggle to keep their storage usage within the limits provided by their SharePoint Online plans. Exceeding these limits can result in additional charges, which can accumulate over time and strain budgets.

Additionally, gaining insights into storage usage patterns is often a complex task. Understanding which sites, libraries, and files are consuming the most storage requires detailed analysis and reporting capabilities that are not readily available in SharePoint Online’s native tools.

SharePoint Storage Explorer Doc Library Total View

How SmiKar’s SharePoint Storage Explorer Can Help

SmiKar’s SharePoint Storage Explorer offers a comprehensive solution to these challenges. This free tool provides detailed insights into SharePoint Online storage consumption, enabling organizations to manage their storage more effectively and efficiently.

One of the key features of SharePoint Storage Explorer is its document library view, which offers a detailed breakdown of storage usage at the document library level. This feature helps identify large and rarely accessed files, allowing administrators to make informed decisions about which files to archive or delete.

The site view provides a high-level perspective on storage consumption across different SharePoint sites. This overview helps identify sites that are consuming disproportionate amounts of storage and require attention.

The document library file browser simplifies the process of managing files within libraries. It allows administrators to easily browse through files, identify those that are taking up significant storage, and take appropriate action.

Another valuable feature is the top 100 files report, which highlights the largest files in the SharePoint environment. This report helps prioritize which files to address first when looking to free up storage space.

The overview tab offers a comprehensive storage breakdown by file type, providing insights into which types of files are consuming the most storage. This information can be used to develop strategies for managing different types of content more effectively.

Charts and analytics are also included, offering visual representations of storage data. These visual tools make it easier to understand storage trends and patterns, aiding in more effective storage planning and management.

Finally, SharePoint Storage Explorer provides detailed, user-friendly reports that can be used to communicate storage usage and trends to stakeholders. These reports can be customized to meet the specific needs of different audiences, ensuring that everyone has the information they need to make informed decisions.

SharePoint Storage Explorer Reports

Benefits of Using SharePoint Storage Explorer

Using SmiKar’s SharePoint Storage Explorer offers numerous benefits. One of the most significant is cost savings. By identifying and addressing large and unused files, organizations can reduce their storage usage and avoid additional charges. This efficient management can lead to substantial cost savings over time.

Improved performance is another key benefit. By keeping storage usage within optimal limits, SharePoint Online can operate more efficiently, providing faster access to documents and better overall performance.

Strategic planning is also enhanced with the detailed insights provided by SharePoint Storage Explorer. Organizations can better plan for future storage needs, ensuring they have the necessary resources in place to support their operations.

Compliance and policy adherence are further supported by the tool’s detailed reports and analytics. These features help ensure that storage usage aligns with organizational policies and regulatory requirements.

SharePoint Storage Explorer Scanning

Real-World Use Cases and Testimonials

Many businesses have benefited from using SmiKar’s SharePoint Storage Explorer. For example, a mid-sized consulting firm was struggling with excessive storage costs due to large volumes of unused files. By using SharePoint Storage Explorer, they were able to identify and archive these files, reducing their storage costs by 37%.

Another success story comes from a global manufacturing company that needed to improve their storage management practices to comply with industry regulations. SharePoint Storage Explorer provided the detailed insights and reports they needed to ensure compliance, helping them avoid costly fines and penalties.

FAQs about SharePoint Storage Usage

1. How do I check how much storage my SharePoint environment is using?
You can view overall storage usage from the Microsoft 365 admin center or SharePoint admin center. For detailed insights, including per-site or per-library usage, our FREE tool, SharePoint Storage Explorer are much more effective.


2. What contributes most to SharePoint storage consumption?
Large files (like videos, PowerPoint decks, and CAD drawings), version history, and recycle bin contents are common culprits. Storage can also balloon due to inactive or duplicated content left unmanaged.


3. Does versioning increase storage usage?
Yes. Each saved version of a file takes up additional space. If not limited, versioning can cause storage to grow rapidly—especially in active libraries. Set version limits to avoid bloat.


4. How can I find which files or libraries are taking up the most space?
Use the built-in “Storage Metrics” page in SharePoint (under Library Settings > Site Collection Administration), or tools like SharePoint Storage Explorer for a clearer, sortable view of top space consumers.


5. Can I get alerts when storage is nearing its limit?
Microsoft doesn’t provide automatic alerts, but with tools or scripts, you can schedule reports or warnings. This helps proactively manage storage instead of reacting to overage charges.


6. What’s the best way to manage storage across multiple site collections?
Centralized reporting is key. Manually checking each site is time-consuming—solutions like Storage Explorer aggregate this data and provide a unified dashboard to see usage across all sites.


7. Does the Recycle Bin impact storage quotas?
Yes. Items in both the first-stage and second-stage Recycle Bins count towards your site’s storage until they are permanently deleted (after up to 93 days by default).


8. Are there tools to automate cleanup of large or inactive files?
Yes. Solutions like Squirrel Archiving can automatically archive or move inactive files off SharePoint, reducing storage use while keeping content accessible via stubs or restore buttons.


9. How often should I review storage usage?
Ideally, perform a review monthly if you have a large or growing tenant. At minimum, quarterly reviews are recommended to prevent surprises and ensure storage is used efficiently.


10. How can I educate users to help manage storage better?
Provide guidelines on uploading only necessary files, compressing large media, managing version history, and using OneDrive or Azure for bulk storage. User behavior plays a major role in storage control.

FREE FOREVER. DOWNLOAD NOW

Ready to take control of your SharePoint Online storage? Visit the SharePoint Storage Explorer product page to learn more and download for FREE.

For additional support and inquiries, feel free to contact us through our contact us page.

Check the Size of SharePoint Storage

Check the Size of SharePoint Storage

The Future of Document Archiving

In today’s fast-paced digital environment, managing large volumes of documents in SharePoint Online can be a daunting task for any organization. As businesses grow, so does the need for efficient, cost-effective storage solutions that not only save space but also ensure compliance and ease of access. Enter Squirrel, an innovative SaaS product designed to automate the archiving of documents from SharePoint Online to Azure Blob Storage, providing a seamless blend of efficiency and security.

Squirrel for SharePoint Dashboard
Topic Key Points
Introduction Importance of monitoring SharePoint storage for performance, cost, and compliance.
Understanding Storage Types of data (documents, list items, site content, recycle bin) and storage limits in SharePoint.
SharePoint Admin Center User-friendly interface for managing storage; steps to check storage metrics.
PowerShell Advanced method for managing storage with scripts; how to connect and retrieve storage information.
Third-Party Tools Benefits of using tools like SharePoint Storage Explorer for detailed reports and easier management.
Monitoring Storage Usage Setting up alerts, reviewing reports, and understanding storage trends.
Managing Storage Optimising usage, implementing retention policies, and using third-party tools for better management.
Troubleshooting Issues Common problems and solutions related to checking storage size.
Conclusion Regular monitoring and management are key to maintaining efficient SharePoint storage.
FAQs Answers to common questions about accessing admin tools, setting quotas, and reducing storage usage.

SharePoint Archiving Introduction

SharePoint has become an integral part of many organisations, serving as a powerful tool for collaboration, document management, and information sharing. As the volume of data grows, it becomes crucial to monitor and manage SharePoint storage effectively. Proper storage management ensures optimal performance, cost efficiency, and compliance with organisational policies. This article will guide you through the process of checking the size of your SharePoint storage, ensuring you stay within storage limits and maintain a well-organised environment.

Managing SharePoint storage is essential for several reasons. First, it helps in maintaining the overall health and performance of your SharePoint sites. Overloaded storage can lead to slow performance, making it difficult for users to access documents and collaborate efficiently. Second, effective storage management ensures compliance with organisational policies and industry regulations, which is crucial for data governance. Finally, keeping an eye on storage usage helps in cost management, as exceeding storage limits in SharePoint Online can result in additional charges.

By understanding how to check and manage SharePoint storage, you can avoid these pitfalls and ensure your SharePoint environment remains efficient and cost-effective. This guide will provide step-by-step instructions on various methods to check SharePoint storage size, including using the SharePoint Admin Center, PowerShell, and third-party tools like SmiKar’s SharePoint Storage Explorer.

Understanding SharePoint Storage

Before diving into the methods of checking SharePoint storage size, it’s important to understand the structure and components of SharePoint storage. This foundational knowledge will help you interpret storage metrics and make informed decisions about storage management.

SharePoint Storage Structure

SharePoint stores various types of data, each contributing to overall storage usage. Here are the main components:

  • Documents: Files uploaded to document libraries are a major part of SharePoint storage. These can include Word documents, Excel spreadsheets, PowerPoint presentations, PDFs, images, videos, and other file types. Document libraries are commonly used for team collaboration and project management, making them a significant contributor to storage usage.
  • List Items: SharePoint lists are used to manage data in a structured format, similar to tables in a database. Each item in a list occupies storage space. Lists can contain data such as tasks, contacts, calendars, issue tracking, and custom lists tailored to specific business needs.
  • Site Content: This includes everything else within a SharePoint site, such as site pages, templates, workflows, site assets, and custom solutions. While these elements might not be as large as document libraries, they collectively contribute to the overall storage usage.
  • Recycle Bin: Deleted items are temporarily retained in the recycle bin before permanent deletion. This feature allows users to recover accidentally deleted items, but it also consumes storage space until the items are permanently removed.

Storage Limits and Quotas

Understanding storage limits and quotas is crucial for effective SharePoint management.

  • SharePoint Online: Storage limits in SharePoint Online are defined by the plan you choose. Each site collection has a storage limit, and the total storage available is pooled across all site collections within your tenant. For example:
    • Base Storage: Microsoft 365 plans typically include a base amount of storage per user. For example, each user might get 1 TB of OneDrive storage plus an additional pooled storage amount for SharePoint Online.
    • Additional Storage: If your organisation needs more storage, additional storage can be purchased on a per-gigabyte basis. This flexibility allows you to scale storage based on your needs.
  • SharePoint Server: On-premises versions of SharePoint, such as SharePoint 2016 and SharePoint 2019, allow more granular management of storage with site quotas and database storage management. Administrators can set storage limits at the site collection level, helping to control storage allocation and usage. For instance, you can set a quota of 100 GB for a particular site collection, ensuring it doesn’t exceed the allocated space.

Understanding these components and limits helps in better managing and optimising storage. Regular monitoring and proactive management are key to preventing storage-related issues and ensuring a smooth SharePoint experience.

Methods to Check SharePoint Storage Size

There are several methods available to check the size of your SharePoint storage. Below are the most common and effective ways:

Using the SharePoint Admin Center

The SharePoint Admin Center provides a user-friendly interface for administrators to manage various aspects of SharePoint, including storage. It is an essential tool for monitoring and managing your SharePoint environment, especially for administrators who prefer a graphical user interface over command-line tools.

  •  Accessing the SharePoint Admin Center:

    • Log in to the Microsoft 365 Admin Center: To access the SharePoint Admin Center, you need to log in to the Microsoft 365 Admin Center with your admin credentials. Navigate to https://admin.microsoft.com and sign in using your administrative account.
    • Navigate to SharePoint Admin Center: In the left-hand navigation pane, select “Admin centers” and then “SharePoint”. This will redirect you to the SharePoint Admin Center where you can manage your SharePoint environment.
  • Navigating to the Storage Metrics Section:
    • Sites Tab: In the SharePoint Admin Center, click on the “Sites” tab. This tab provides an overview of all the site collections within your SharePoint environment.
    • Active Sites: Select “Active sites” to view a list of your SharePoint sites. This list displays all the active site collections along with their URLs and administrators.
    • Select a Site: Click on the specific site you want to check. This will open the site details page where you can view and manage various settings for the selected site.
    • Storage Metrics: In the site settings, select “Storage” under the “Site Usage” section. This section provides a detailed view of the storage metrics for the selected site.
  • Interpreting Storage Usage Information:

    • Total Storage Used: The storage metrics section displays the total storage used by the selected site. This includes all documents, list items, site content, and items in the recycle bin.
    • Available Storage: This indicates the remaining storage available for the site. It helps you understand how much space is left before reaching the site’s storage limit.
    • Storage Breakdown: The section also provides a breakdown of storage usage by site components (e.g., documents, list items, etc.). This breakdown helps you identify which areas are consuming the most storage and where you might need to take action to free up space.
    • Insights and Trends: The storage metrics can provide insights into usage trends over time. For example, if you notice a sudden spike in storage usage, it could indicate the upload of large files or an increase in site activity.

By following these steps, you can easily monitor and manage the storage usage of your SharePoint sites through the SharePoint Admin Center. Regularly checking these metrics helps in maintaining optimal site performance and avoiding unexpected storage issues.

Using PowerShell

For more advanced users, PowerShell offers a powerful way to manage SharePoint storage through scripting. PowerShell provides more flexibility and automation capabilities compared to the SharePoint Admin Center, making it ideal for large-scale environments or complex administrative tasks.

  1. Installing the SharePoint Online Management Shell:
    • Download and Install: Download and install the SharePoint Online Management Shell from the Microsoft website. This tool allows you to manage your SharePoint Online environment using PowerShell commands. You can find the download link on the Microsoft documentation page for SharePoint Online Management Shell.
    • System Requirements: Ensure your system meets the requirements for installing the management shell. Typically, it requires Windows operating system and PowerShell version 3.0 or later.
  2. Connecting to SharePoint Online:
    • Open the Management Shell: Open the SharePoint Online Management Shell on your computer. You can find it in your Start menu or by searching for “SharePoint Online Management Shell”.
    • Connect to Your SharePoint Online Service: Use the following command to connect to your SharePoint Online service:

      powershell

      Connect-SPOService -Url https://your-domain-admin.sharepoint.com

      Replace https://your-domain-admin.sharepoint.com with the URL of your SharePoint Online admin center. You will be prompted to enter your admin credentials.

  3. Example Script to Retrieve Storage Information:
    • Retrieve Storage Usage: Run the following script to retrieve storage information for all site collections:

      powershell

      Get-SPOSite -Limit All | Select-Object Title, Url, StorageUsageCurrent

      This script lists all site collections along with their respective storage usage in megabytes. The Get-SPOSite cmdlet retrieves all site collections, and the Select-Object cmdlet filters the output to show the title, URL, and current storage usage.

  4. Interpreting the Results:
    • Storage Usage by Site Collection: After running the script, you will see a list of your SharePoint site collections along with their storage usage. This information helps you identify which sites are consuming the most storage.
    • Identifying Large Sites: Use this data to pinpoint large sites that may need attention. For example, if a site is approaching its storage limit, you might need to archive old data, increase storage quotas, or review the site’s content management practices.
    • Automating Reports: PowerShell scripts can be automated to run at regular intervals, providing you with up-to-date storage reports. You can schedule these scripts using Windows Task Scheduler or other automation tools, ensuring you always have the latest storage information.

Using PowerShell for managing SharePoint storage provides a high level of control and automation, making it a valuable tool for SharePoint administrators.

Using Third-Party Tools

In addition to the built-in tools and PowerShell, there are third-party solutions available to help you manage SharePoint storage more efficiently. These tools often provide enhanced features and a more user-friendly interface, making storage management easier and more effective.

  • SmiKar SharePoint Storage Explorer:
    • Introduction: One such tool is SmiKar’s SharePoint Storage Explorer. This tool is designed to provide a comprehensive and easy-to-use interface for monitoring and managing SharePoint storage.
    • Features of SharePoint Storage Explorer:
      • Detailed Storage Reports: SharePoint Storage Explorer offers detailed storage reports that highlight large files and areas consuming the most storage. These reports help you understand where your storage is being used and identify opportunities for optimisation.
      • User-Friendly Interface: SharePoint Storage Explorer provides an intuitive and user-friendly interface, making it easy for administrators to navigate and use the tool. Even if you are not a technical expert, you can still manage SharePoint storage efficiently with this tool.
      • Free to Use: One of the most appealing features of SharePoint Storage Explorer is that it is free for anyone to use. This makes it an excellent addition to your SharePoint management toolkit, offering valuable features without additional costs.
    • How to Use SharePoint Storage Explorer:
      • Download and Install: Visit the SharePoint Storage Explorer page and download SharePoint Storage Explorer. Follow the installation instructions provided on the website.
      • Connect to Your SharePoint Environment: Once installed, open the tool and connect it to your SharePoint environment by following the on-screen instructions. You will need to provide your SharePoint admin credentials to establish the connection.
      • View and Manage Storage: Use the intuitive interface to view and manage your SharePoint storage. Generate detailed reports, and optimise storage usage with ease. The tool provides real-time insights into your storage usage, helping you make informed decisions.
  • Squirrel: Automated SharePoint Archiving
    While SharePoint Storage Explorer offers real-time insights, Squirrel complements it by automatically archiving SharePoint documents to Azure Blob Storage, reducing costs and ensuring compliance. Squirrel also allows you to set custom lifecycle policies, ensuring your SharePoint environment stays optimized without manual intervention.

By utilising SharePoint Storage Explorer, you can gain deeper insights into your SharePoint storage and manage it more efficiently. The tool’s comprehensive features and user-friendly interface make it an invaluable resource for SharePoint administrators.

Conclusion

Properly managing SharePoint storage is essential for maintaining optimal performance, ensuring cost efficiency, and staying compliant with organisational policies. By regularly monitoring storage usage, setting appropriate quotas, and leveraging tools like the SharePoint Admin Center, PowerShell, and SmiKar SharePoint Storage Explorer, you can keep your SharePoint environment running smoothly. Effective storage management not only helps in avoiding unexpected costs but also improves the overall user experience by ensuring that the system remains responsive and efficient.

SharePoint Online Archiving FAQs

How do I access the SharePoint Admin Center?

You can access the SharePoint Admin Center by logging into the Microsoft 365 Admin Center and selecting “SharePoint” under “Admin centers”.

What is the SharePoint Online storage limit?

The storage limit depends on your Microsoft 365 plan. Each user typically gets 1 TB of OneDrive storage, plus pooled storage for SharePoint Online that can be expanded by purchasing additional storage.

How can I check storage usage using PowerShell?

Install the SharePoint Online Management Shell, connect to your SharePoint Online service, and use the Get-SPOSite cmdlet to retrieve storage usage information.

What types of data consume SharePoint storage?

SharePoint storage is consumed by documents, list items, site content, and items in the recycle bin.

How can I set storage quotas in SharePoint Online?

You can set storage quotas for site collections through the SharePoint Admin Center by navigating to the “Storage” section under site settings.

What happens when a site exceeds its storage quota?

When a site exceeds its storage quota, users may be unable to upload new files or create new items until storage is freed up or the quota is increased.

Can I automate storage reports in SharePoint?

Yes, you can automate storage reports using PowerShell scripts and scheduling them with tools like Windows Task Scheduler.

Is SharePoint Storage Explorer really free to use?

Yes, SmiKar’s SharePoint Storage Explorer is free for anyone to use.

What are the benefits of using third-party tools for storage management?

Third-party tools often provide enhanced features, detailed reports, and a more user-friendly interface, making storage management easier and more effective.

How can I reduce storage usage in SharePoint?

Implement retention policies, using Automated SharePoint Online archiving solutions like Squirrel to archive old data, regularly clean the recycle bin, and optimise document libraries by removing duplicate and outdated files.

Managing Your SharePoint Costs Doesn’t Have to Be Hard.

Request more information or a demo of Squirrel to see how much it can save you with your SharePoint Online costs.

Squirrel for SharePoint Archive

Ready To Get Started?