From 5fcc7874793ad5b7633d657f6d53346d547ccc50 Mon Sep 17 00:00:00 2001 From: Daniel LaForce Date: Sun, 27 Apr 2025 17:46:42 -0600 Subject: [PATCH] fix: Correct Header/Footer import paths in projects/tech-stack --- casestudy.html | 135 ---------------------------- src/pages/projects/tech-stack.astro | 4 +- 2 files changed, 2 insertions(+), 137 deletions(-) delete mode 100644 casestudy.html diff --git a/casestudy.html b/casestudy.html deleted file mode 100644 index 926ea36..0000000 --- a/casestudy.html +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - Case Study: SharePoint & M365 Migrations | Daniel LaForce - - - - - - -
-
-
- - - - -
-
-

Case Study: SharePoint & M365 Migrations

-

Modernizing enterprise collaboration and storage through Microsoft 365

-
-
- -
-
-
-
-

Client Overview

-

- A mid-sized professional services firm relied on Dropbox, Egnyte, Google Workspace, and on-prem file servers to manage daily operations. The IT environment was fragmented, increasing operational complexity and impeding secure collaboration. They needed a scalable solution to unify infrastructure, reduce support load, and enhance productivity. -

- -

Objectives

-
    -
  • Consolidate file and email services under Microsoft 365
  • -
  • Minimize business disruption during migration
  • -
  • Strengthen compliance, backup, and access control
  • -
  • Enable centralized collaboration with Microsoft Teams
  • -
-
-

Solution Strategy

-
    -
  • Provisioned a temporary VM to act as a synchronized landing zone for Egnyte and local file server data
  • -
  • Used Egnyte’s API and command-line tools to batch-export permissions and files to the sync VM
  • -
  • Ran Microsoft’s SharePoint Migration Tool (SPMT) with JSON-based mapping to import content into SharePoint document libraries
  • -
  • Automated pre/post migration checks and permissions auditing via PowerShell and Graph API
  • -
  • Staged migration of mail and calendar data using MigrationWiz with coexistence enabled between Google Workspace and Exchange Online
  • -
  • Provided Teams onboarding with channel templates and cross-platform training
  • -
-
-

Results

-
    -
  • 12.4 TB of content migrated across four platforms in under 90 days
  • -
  • Zero data loss or permission mismatches confirmed via script-based audits
  • -
  • Helpdesk load cut by 40% within the first month post-migration
  • -
  • Fully adopted Microsoft Teams structure with defined department-based channels and integrated file repositories
  • -
  • End-user training boosted post-migration satisfaction to 97%
  • -
- -
- SharePoint Online - OneDrive - Teams - Exchange Online - PowerShell - Migration Tools - Egnyte API - SPMT -
- - -
-
-
-
- - - - - diff --git a/src/pages/projects/tech-stack.astro b/src/pages/projects/tech-stack.astro index fa660fc..e6c9bd1 100644 --- a/src/pages/projects/tech-stack.astro +++ b/src/pages/projects/tech-stack.astro @@ -1,8 +1,8 @@ --- // src/pages/projects/tech-stack.astro import BaseLayout from '../../layouts/BaseLayout.astro'; // Corrected path -import Header from '../components/Header.astro'; -import Footer from '../components/Footer.astro'; +import Header from '../../components/Header.astro'; // Corrected path +import Footer from '../../components/Footer.astro'; // Corrected path const title = "Tech Stack | ArgoBox"; const description = "Explore the technology stack that powers ArgoBox projects, infrastructure, and home lab environment.";