Case Study

Delivering Innovation, Efficiency, and Security in Higher Education.

Computing Cloud Excellence Award Winners Perform Partners and The University of Sheffield
Change SquadsMigration and ModernisationCloud Platforms and Engineering

The Challenge

The Higher Education customer asked Perform Partners to transform its legacy IT infrastructure, addressing the challenges posed by undocumented and outdated systems that were leading to uncontrollable downtime, long lead times for adding capability, and increasing exposure and vulnerability to external attacks.

The old systems obstructed operations, regular maintenance, and upgrades while lacking flexibility for meeting increasing demand. As the heart of the university ecosystem, their central IT capability played a crucial role in supporting all core business processes and hosting important student data. The legacy technology was a roadblock to future IT transformation and represented a major risk.

The Perform Way

The complexity of the outdated technology required a solution that would meet the requirements of improving security, system scalability, resiliency and enhancing performance. Public Cloud adoption was the most effective way to support the strategic intent within the given timeframes.

The direction was to transition directly to the Cloud and benefit from its speed, flexibility, capacity, resilience, and automation. The strategic approach:

  • Conducted a comprehensive health check and technology audit to understand the existing landscape (As-Is state).
  • Defined and agreed on clear objectives and responsibilities for all stakeholders involved.
  • Developed a tailored and flexible migration strategy and project plan, considering the unique needs of each group.
  • Facilitated change management efforts and led the transformation process.
  • Addressed concerns and resistance to change, taking into account the cultural needs of the university community.
  • Provided extensive training and upskilling programs to empower in-house teams and embed new ways of working.

Stakeholders

Our target audience for this transformation included students and senior faculty stakeholders. Here’s how we led key audience groups through the journey:

Leadership: We provided a comprehensive understanding of benefits, risks, and implications, enabling informed decisions and effective resource allocation.

Staff: We nurtured and empowered impacted people, ensuring they understood the strategy and benefits, and received the necessary training and support.

Students: Effective communication with students addressed concerns and disruptions, emphasising the transformation’s positive impact on their experience.

AWS and Perform Partners Delivery Migration for The University of Sheffield

“The UK’s University of Sheffield worked with Perform Partners in migrating to AWS with a goal of gaining a more modern, faster-performing system for managing student needs.”

AWS

01
02
03
04
05

Let's partner for your migration...

// Function to create HubSpot form with custom styles and scrolling fix function createCustomForm() { // Create the HubSpot form hbspt.forms.create({ region: "na1", portalId: "6882211", formId: "c08eb813-4605-441b-b923-dbfe6422f092", onFormReady: function ($form) { // Define custom styles var customStyles = ` /* Adjusting height and padding for form fields */ .hs-form input[type="text"], .hs-form textarea, .hs-form input[type="email"] { height: 80px; padding-right: 20px; background-color: rgba(32, 48, 49, .05); /* Set background color */ border: none; /* Remove border */ }/* Adjusting height and padding for the "How can we help" textarea */ .hs-form textarea.hs-input { min-height: 257px; padding: 32px 20px; background-color: rgba(32, 48, 49, .05); /* Set background color */ border: none; /* Remove border */ }/* Making the submit button span the full width */ .hs-form .actions input[type="submit"] { width: 100%; background-color: #203031; /* Charleston Green */ color: white; border: none; /* Remove border */ padding: 20px; border-radius: 40px; /* Set border radius */ cursor: pointer; position: relative; /* Set position to relative to position the arrow */ z-index: 1; /* Ensure the button sits above the arrow */ }/* Apply sticky positioning */ .hs-form.sticky { position: sticky; top: 0; z-index: 9999; }/* Placeholder for fixed form position */ .form-placeholder { display: none; } `;// Create a style element var styleElement = document.createElement('style'); styleElement.innerHTML = customStyles;// Insert the style element $form.prepend(styleElement);// Create a placeholder element var placeholder = $('
').css({ height: $form.outerHeight() }); $form.before(placeholder);// Function to handle scrolling function handleScroll() { var formOffset = $form.offset().top; var scrollPos = $(window).scrollTop(); if (scrollPos > formOffset) { $form.addClass('sticky'); placeholder.show(); } else { $form.removeClass('sticky'); placeholder.hide(); } }// Call handleScroll on page load handleScroll();// Add scroll event listener to fix scrolling glitch $(window).on('scroll', handleScroll); } }); }// Call function to create custom form createCustomForm();