Duration 5 Days 30 CPD hours This course is intended for System administrators System engineers Overview By the end of the course, you should be able to meet the following objectives: Install and configure ESXi hosts Deploy and configure vCenter Use the vSphere Client to create the vCenter inventory and assign roles to vCenter users Configure vCenter High Availability Create and configure virtual networks using vSphere standard switches and distributed switches Create and configure datastores using storage technologies supported by vSphere Use the vSphere Client to create virtual machines, templates, clones, and snapshots Configure and manage a VMware Tools Repository Create content libraries for managing templates and deploying virtual machines Manage virtual machine resource use Migrate virtual machines with vSphere vMotion and vSphere Storage vMotion Create and configure a vSphere cluster that is enabled with vSphere High Availability and vSphere Distributed Resource Scheduler Manage the life cycle of vSphere to keep vCenter, ESXi hosts, and virtual machines up to date Configure and manage vSphere networking and storage for a large and sophisticated enterprise Use host profiles to manage VMware ESXi host compliance Monitor the vCenter, ESXi, and VMs performance in the vSphere client This five-day, extended hour course takes you from introductory to advanced VMware vSphere© 8 management skills. Building on the installation and configuration content from our best-selling course, you will also develop advanced skills needed to manage and maintain a highly available and scalable virtual infrastructure. Through a mix of lecture and hands-on labs, you will install, configure, and manage vSphere 7. You will explore the features that build a foundation for a truly scalable infrastructure and discuss when and where these features have the greatest effect. This course prepares you to administer a vSphere infrastructure for an organization of any size using vSphere 8, which includes VMware ESXi? 8 and VMware vCenter Server© 8. Course Introduction Introductions and course logistics Course objectives vSphere and Virtualization Overview Explain basic virtualization concepts Describe how vSphere fits in the software-defined data center and the cloud infrastructure Recognize the user interfaces for accessing vSphere Explain how vSphere interacts with CPUs, memory, networks, storage, and GPUs Install an ESXi host vCenter Management Recognize ESXi hosts communication with vCenter Deploy vCenter Server Appliance Configure vCenter settings Use the vSphere Client to add and manage license keys Create and organize vCenter inventory objects Recognize the rules for applying vCenter permissions View vSphere tasks and events Create a vCenter backup schedule Recognize the importance of vCenter High Availability Explain how vCenter High Availability works Deploying Virtual Machines Create and provision VMs Explain the importance of VMware Tools Identify the files that make up a VM Recognize the components of a VM Navigate the vSphere Client and examine VM settings and options Modify VMs by dynamically increasing resources Create VM templates and deploy VMs from them Clone VMs Create customization specifications for guest operating systems Create local, published, and subscribed content libraries Deploy VMs from content libraries Manage multiple versions of VM templates in content libraries Configure and Manage vSphere Networking Configure and view standard switch configurations Configure and view distributed switch configurations Recognize the difference between standard switches and distributed switches Explain how to set networking policies on standard and distributed switches Configure and Manage vSphere Storage Recognize vSphere storage technologies Identify types of vSphere datastores Describe Fibre Channel components and addressing Describe iSCSI components and addressing Configure iSCSI storage on ESXi Create and manage VMFS datastores Configure and manage NFS datastores Discuss vSphere support for NVMe and iSER technologies Managing Virtual Machines Recognize the types of VM migrations that you can perform within a vCenter instance and across vCenter instances Migrate VMs using vSphere vMotion Describe the role of Enhanced vMotion Compatibility in migrations Migrate VMs using vSphere Storage vMotion Take a snapshot of a VM Manage, consolidate, and delete snapshots Describe CPU and memory concepts in relation to a virtualized environment Describe how VMs compete for resources Define CPU and memory shares, reservations, and limits Recognize the role of a VMware Tools Repository Configure a VMware Tools Repository Recognize the backup and restore solution for VMs vSphere Monitoring Monitor the key factors that can affect a virtual machine's performance Describe the factors that influence vCenter performance Use vCenter tools to monitor resource use Create custom alarms in vCenter Describe the benefits and capabilities of VMware Skyline Recognize uses for Skyline Advisor Pro Deploying and Configuring vSphere Cluster Use Cluster Quickstart to enable vSphere cluster services and configure the cluster View information about a vSphere cluster Explain how vSphere DRS determines VM placement on hosts in the cluster Recognize use cases for vSphere DRS settings Monitor a vSphere DRS cluster Describe how vSphere HA responds to different types of failures Identify options for configuring network redundancy in a vSphere HA cluster Recognize the use cases for various vSphere HA settings Configure a cluster enabled for vSphere DRS and vSphere HA Recognize when to use vSphere Fault Tolerance Describe the function of the vCLS Recognize operations that might disrupt the healthy functioning of vCLS VMs ESXi Operations Use host profiles to manage ESXi configuration compliance Recognize the benefits of using configuration profiles Managing the vSphere Lifecycle Generate vCenter interoperability reports Recognize features of vSphere Lifecycle Manager Describe ESXi images and image depots Enable vSphere Lifecycle Manager in a vSphere cluster Validate ESXi host compliance against a cluster image and remediate ESXi hosts using vSphere Lifecycle Manager Describe vSphere Lifecycle Manager automatic recommendations Use vSphere Lifecycle Manager to upgrade VMware Tools and VM hardware Network Operations Configure and manage vSphere distributed switches Describe how VMware vSphere Network I/O Control enhances performance Define vSphere Distributed Services Engine Describe the use cases and benefits of vSphere Distributed Services Engine Storage Operations Describe the architecture and requirements of vSAN configuration Describe storage policy-based management Recognize components in the vSphere Virtual Volumes architecture Configure Storage I/O Control
Duration 3 Days 18 CPD hours This course is intended for Developers who have some familiarity with serverless and experience with development in the AWS Cloud Overview In this course, you will learn to: Apply event-driven best practices to a serverless application design using appropriate AWS services Identify the challenges and trade-offs of transitioning to serverless development, and make recommendations that suit your development organization and environment Build serverless applications using patterns that connect AWS managed services together, and account for service characteristics, including service quotas, available integrations, invocation model, error handling, and event source payload Compare and contrast available options for writing infrastructure as code, including AWS CloudFormation, AWS Amplify, AWS Serverless Application Model (AWS SAM), and AWS Cloud Development Kit (AWS CDK) Apply best practices to writing Lambda functions inclusive of error handling, logging, environment re-use, using layers, statelessness, idempotency, and configuring concurrency and memory Apply best practices for building observability and monitoring into your serverless application Apply security best practices to serverless applications Identify key scaling considerations in a serverless application, and match each consideration to the methods, tools, or best practices to manage it Use AWS SAM, AWS CDK, and AWS developer tools to configure a CI/CD workflow, and automate deployment of a serverless application Create and actively maintain a list of serverless resources that will assist in your ongoing serverless development and engagement with the serverless community This course gives developers exposure to and practice with best practices for building serverless applications using AWS Lambda and other services in the AWS serverless platform. You will use AWS frameworks to deploy a serverless application in hands-on labs that progress from simpler to more complex topics. You will use AWS documentation throughout the course to develop authentic methods for learning and problem-solving beyond the classroom. Introduction Introduction to the application you will build Access to course resources (Student Guide, Lab Guide, and Online Course Supplement) Thinking Serverless Best practices for building modern serverless applications Event-driven design AWS services that support event-driven serverless applications API-Driven Development and Synchronous Event Sources Characteristics of standard request/response API-based web applications How Amazon API Gateway fits into serverless applications Try-it-out exercise: Set up an HTTP API endpoint integrated with a Lambda function High-level comparison of API types (REST/HTTP, WebSocket, GraphQL) Introduction to Authentication, Authorization, and Access Control Authentication vs. Authorization Options for authenticating to APIs using API Gateway Amazon Cognito in serverless applications Amazon Cognito user pools vs. federated identities Serverless Deployment Frameworks Overview of imperative vs. declarative programming for infrastructure as code Comparison of CloudFormation, AWS CDK, Amplify, and AWS SAM frameworks Features of AWS SAM and the AWS SAM CLI for local emulation and testing Using Amazon EventBridge and Amazon SNS to Decouple Components Development considerations when using asynchronous event sources Features and use cases of Amazon EventBridge Try-it-out exercise: Build a custom EventBridge bus and rule Comparison of use cases for Amazon Simple Notification Service (Amazon SNS) vs. EventBridge Try-it-out exercise: Configure an Amazon SNS topic with filtering Event-Driven Development Using Queues and Streams Development considerations when using polling event sources to trigger Lambda functions Distinctions between queues and streams as event sources for Lambda Selecting appropriate configurations when using Amazon Simple Queue Service (Amazon SQS) or Amazon Kinesis Data Streams as an event source for Lambda Try-it-out exercise: Configure an Amazon SQS queue with a dead-letter queue as a Lambda event source Writing Good Lambda Functions How the Lambda lifecycle influences your function code Best practices for your Lambda functions Configuring a function Function code, versions and aliases Try-it-out exercise: Configure and test a Lambda function Lambda error handling Handling partial failures with queues and streams Step Functions for Orchestration AWS Step Functions in serverless architectures Try-it-out exercise: Step Functions states The callback pattern Standard vs. Express Workflows Step Functions direct integrations Try-it-out exercise: Troubleshooting a Standard Step Functions workflow Observability and Monitoring The three pillars of observability Amazon CloudWatch Logs and Logs Insights Writing effective log files Try-it-out exercise: Interpreting logs Using AWS X-Ray for observability Try-it-out exercise: Enable X-Ray and interpret X-Ray traces CloudWatch metrics and embedded metrics format Try-it-out exercise: Metrics and alarms Try-it-out exercise: ServiceLens Serverless Application Security Security best practices for serverless applications Applying security at all layers API Gateway and application security Lambda and application security Protecting data in your serverless data stores Auditing and traceability Handling Scale in Serverless Applications Scaling considerations for serverless applications Using API Gateway to manage scale Lambda concurrency scaling How different event sources scale with Lambda Automating the Deployment Pipeline The importance of CI/CD in serverless applications Tools in a serverless pipeline AWS SAM features for serverless deployments Best practices for automation Course wrap-up Additional course details: Nexus Humans AWS Developing Serverless Solutions on AWS training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward. This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts. Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success. While we feel this is the best course for the AWS Developing Serverless Solutions on AWS course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you. Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.
Get 20 Courses with 20 Free PDF & Hardcopy Certificates -- Save Instant £180 NOW __________________________________ Construction never sleeps – and neither does the demand for sharp minds behind the build. Whether you're sizing up blueprints, calculating costs down to the last bolt, or surveying land like it’s a chessboard, this course wraps the essentials of Construction Management, Building Surveying, Quantity Surveying, and Land Surveying into one solid package. The world’s skyline changes fast, and the need for smart planning and sharper calculations is rising just as quickly. If you’re curious about what goes into making buildings stand tall – from contracts and costs to corners and coordinates – you’re in the right place. This course is designed with simplicity and sharpness in mind. It blends theory with industry-relevant knowledge, shaped for learners who want clarity without fluff. Whether you lean towards site supervision, property inspection, cost analysis or land plotting, this course provides a strong foundation for each. With the UK construction sector expected to grow by over 3.2% annually, there’s a constant call for those who can measure, manage and map – not just in the city but in every corner of the built environment. Learn the language of construction from your own space, with flexibility that fits your schedule and knowledge that fits the future. _________________________________ This Construction Building Surveying bundle includes the following courses: Course 01: Building Surveyor Training Course 02: Quantity Surveying & Cost Estimation Course 03: Land Surveying and Cost Estimation Course 04: Construction Management Course 05: Construction Safety Course 06: Property Law, Taxation & VAT Course 07: CDM Construction Design Management Course 08: Land Management Course 09: Landscape Architecture Course 10: Health and Safety at Workplace Course 11: Working at Height Training Course 12: Working in Confined Spaces Training Course 13: Estate Agent Course 14: Contract Management Course 15: LOLER Training Course 16: RIDDOR Training Course 17: Financial Analysis Course 18: Health and Safety in Construction Environment- Route to CSCS Green Card Course 19: Town Planning Course 20: Project Management Key Features CPD-Accredited Construction Building Surveying course Instant Construction Building Surveying e-certificate Fully online, interactive Construction Building Surveying course with audio voiceover Self-paced learning and laptop, tablet, smartphone-friendly 24/7 Learning Assistance Discounts on bulk purchases Enrol now in this Construction Building Surveying course to excel! The Construction Building Surveying course gives you a theoretical understanding of various topics pertinent to the construction and building surveying field. It will provide you with clear insights into the fundamentals of building information modelling, building procurement and contract information, building pathology and adaptation and the legal aspects of building surveying. Learning Outcomes Discover the key principles of Construction Building Surveying Strengthen your skills in quantity surveying & cost estimation Learn about property law, taxation & VAT Understand the concepts of project management and land management Apply land surveying techniques to assess and estimate construction-related expenses. Develop accurate project cost estimates and manage construction expenses efficiently. Certification Once you've successfully completed the Construction Building Surveying Course, you will immediately be sent a digital certificate. Also, you can have your printed certificate delivered by post (shipping cost £3.99). CPD Accreditation All of our courses, including this Construction Building Surveying Course are fully accredited. CPD 60 CPD hours / points Accredited by CPD Quality Standards Who is this course for? This Construction Building Surveying course can be taken by anyone who wants to understand more about the topic. With the aid of this course, you will be able to grasp the fundamental knowledge and ideas. Additionally, this Construction Building Surveying course is ideal for: Aspiring Construction Building Surveying, quantity surveyors, and construction project managers. Professionals seeking expertise in construction safety, risk management, and cost estimation. Individuals interested in land and property management, landscape architecture, and town planning. Those looking to enhance their skills in health and safety at the workplace. Individuals pursuing careers in estate agency, contract management, and financial analysis. Requirements Learners do not require any prior qualifications to enrol on this Construction Building Surveying course. You just need to have an interest in Construction Building Surveying. Career path After completing this Construction Building Surveying Course you will have a variety of careers to choose from. The following job sectors of Construction Building Surveying are: Building Surveyor Quantity Surveyor Construction Manager Project Manager Estate Agent Town Planner Certificates Digital certificate Digital certificate - Included Once you've successfully completed your course, you will immediately be sent a FREE digital certificate. Hard copy certificate Hard copy certificate - Included Also, you can have your FREE printed certificate delivered by post (shipping cost £3.99 in the UK). For all international addresses outside of the United Kingdom, the delivery fee for a hardcopy certificate will be only £10. Our certifications have no expiry dates, although we do recommend that you renew them every 12 months.
Discover how to conquer your assignment deadlines with ease. Packed with valuable tips and strategies, this article explores the importance of effective deadline management for busy students. Learn how to prioritise tasks, plan your schedule wisely, and utilise assignment help services to achieve academic success.
Accelerate your career in business finance with the VAT for Businesses bundle. This comprehensive training equips you with the tax, compliance, and management skills that businesses rely on to thrive, especially during financial uncertainty. Become the hireable candidate who can handle VAT complexities and support business growth. Description Businesses of all sizes require professionals who grasp VAT intricacies alongside essential financial management and reporting skills. This 20-course bundle delivers that, blending technical expertise in VAT and tax with communication, compliance, and software proficiency. Ideal for roles in business finance, accounting, and tax compliance, this training helps you meet the demands of employers who prize versatile, detail-oriented professionals. You’ll also sharpen problem-solving and organisational abilities that employers seek in fast-moving environments. Offering tremendous value and flexible online study, this bundle is your pathway to a rewarding finance career. Don’t miss your chance to develop skills that set you apart from the crowd. FAQ Who should consider this bundle? Finance officers, accountants, business managers, and tax compliance professionals. Which industries does this serve? Corporate finance, SMEs, accounting practices, retail, and manufacturing. Is previous finance knowledge needed? No, designed for all skill levels. Do certificates come with this bundle? Yes, upon completion of each course. Can I study while working? Yes, flexible online learning fits any schedule. Why act now? Businesses increasingly need VAT-savvy professionals—stand out with verified skills.
Take your culinary career to the next level with the Chef De Partie 20-in-1 bundle, designed for professionals aiming to lead sections in kitchens or broaden their expertise for supervisory roles. This bundle delivers the comprehensive knowledge and skills demanded by mid-level kitchen roles in hospitality, catering, and hotel industries. Description As a Chef De Partie, you need more than cooking skills—you need leadership, time management, and food science know-how to run a section smoothly. This bundle aligns with those needs, combining international cuisine courses with core operational skills. From confectionery to communication and from HACCP to problem-solving, this package ensures you’re ready to meet the expectations of demanding kitchens and diverse culinary environments. The bundle is a cost-effective way to gain a broad, relevant skillset recognized by employers across the hospitality sector. Limited enrolment means you should act fast to secure your place. FAQ Who benefits from this bundle? Current cooks, junior chefs, culinary students, and hospitality professionals aiming for promotion. Where can I apply these skills? Hotels, restaurants, event catering, resorts, and cruise lines. Do I get official certification? Yes, certificates for each course to enhance your CV. Is prior chef experience required? Not mandatory, but the bundle suits those with some kitchen background. How long will this offer last? This is a special deal available for a limited time only. Can I learn at my own pace? Absolutely. Flexible online learning fits around your schedule.
Prepare yourself for a fast-growing career in finance with this all-inclusive KYC Compliance bundle. Designed to meet the needs of today’s financial institutions and compliance teams, this package makes you hireable across banking, insurance, and regulatory sectors. Boost your career potential with in-demand compliance and communication skills that employers urgently seek. Description The financial sector is evolving rapidly, with regulatory compliance and customer verification more important than ever. This 20-course bundle delivers the comprehensive skill set that companies rely on to stay secure and compliant. From financial institutions to fintech startups and insurance firms, organisations need professionals who understand KYC rules and can navigate complex communication and marketing landscapes. This bundle’s mix of compliance, negotiation, and digital marketing skills puts you ahead. With value-packed training and flexible access, you get industry-relevant knowledge plus soft skills like stress management and team leadership — all essential for thriving in demanding financial environments. Positions in compliance and customer identity management are highly sought after, but those with credible, broad training are rare. This is your chance to claim that edge before others catch up. FAQ Who is this bundle for? Professionals entering or advancing in financial compliance, banking, insurance, or fintech. Which industries does it serve? Banking, insurance, investment, fintech, and regulatory compliance agencies. Is prior finance experience necessary? No, suitable for beginners and career switchers alike. Are certificates included? Yes, certificates for all completed courses help demonstrate your qualifications. Can I learn at my own pace? Yes, fully flexible online learning fits around your schedule. Why invest in this now? Regulatory scrutiny is intensifying — trained compliance professionals are in growing demand.
Ready to become the transcriptionist that employers can’t ignore? This 20-in-1 Audio Typing bundle equips you for admin, transcription, and virtual support roles with a high-value mix of communication, accuracy, and tech-savvy courses. If you're aiming to break into flexible, home-based, or office-based roles—this is your window of opportunity. Description The demand for transcriptionists, VAs, and admin assistants who can type fast, communicate clearly, and stay organised is only growing. This premium bundle helps you stand out in competitive roles that require sharp listening, attention to detail, and digital fluency. From document formatting to public speaking and problem-solving, each course strengthens your position as a reliable, ready-to-work hire. Whether you’re applying to transcription agencies, legal firms, media offices, or healthcare admin roles, this bundle shows you’re not just competent—you’re committed. Don’t settle for basic typing courses. Get 20 in-demand topics bundled into one affordable, career-boosting package—before it’s gone. FAQ What roles does this bundle suit? Transcriptionist, audio typist, virtual assistant, secretary, and administrative assistant. Is this bundle relevant for remote roles? Yes! It’s ideal for home-based and freelance admin work. Are there certifications? Yes. Each course comes with a certificate to support your job applications. Is this offer time-sensitive? Yes. It’s part of a limited promotion and will not be repeated at this price. Is prior experience required? No. Whether you're starting fresh or refreshing your skills, this bundle fits all levels. What industries might hire me with this skillset? Legal, healthcare, education, media, transcription firms, and business support services.
Step confidently into a vital healthcare role with this comprehensive Midwifery Care for Women During Pregnancy bundle. Tailored for aspiring midwives and maternal care professionals, this collection equips you with the versatile skills today’s healthcare providers demand. From hospitals to community health services, this bundle makes you job-ready for a meaningful and growing sector. Description The healthcare industry urgently needs dedicated professionals who understand both the clinical and emotional needs of women during pregnancy. This 20-course bundle is designed to prepare you for exactly that, blending essential care expertise with crucial communication and emergency response skills. Whether your goal is hospital maternity wards, community outreach, or neonatal support, this training ensures you stand out in a competitive job market. Beyond clinical skills, it sharpens your problem-solving, self-organisation, and stress management — attributes highly prized by employers. With flexible online access and certificates for each course, you gain not just knowledge but credible proof of your readiness. The cost savings and broad skill coverage make this bundle a smart, career-boosting investment. Don’t miss your chance to enter a rewarding healthcare path where demand is high and opportunities are growing. FAQ Who is this bundle ideal for? Aspiring midwives, maternal health assistants, neonatal care support, and community health workers. Which workplaces can I target? Hospitals, maternity clinics, community health services, and neonatal units. Do I need prior medical experience? No, suitable for beginners and those enhancing existing skills. Will I earn certificates? Yes, each course completed grants a certificate to enhance your CV. Can I study while working? Absolutely. Flexible, self-paced online learning fits any schedule. Why choose this bundle now? Maternal healthcare demand is increasing worldwide — get ahead with comprehensive training.
If you're just starting out with Excel but want to look ready for the job market—this is your fast track. This 20-in-1 Online Excel Course for Beginners isn’t just about learning software—it’s about signalling to employers that you’re trained, capable, and ready to contribute. Don’t wait for “experience” to get noticed—build proof with certification instead. 🔍 Description Excel is everywhere—from payroll processing to sales tracking to project reports. But it's the candidates who pair Excel skills with financial literacy, attention to detail, and compliance awareness who make it past the shortlists. This bundle takes that into account. With a carefully selected mix of 20 work-relevant topics, it equips you with the confidence and credentials to apply for roles in finance, admin, customer support, and data services—without the overwhelm of a one-size-fits-all course. What you’re getting here isn’t just training—it’s career leverage. And the certificate you earn? That’s your new calling card. ❓ FAQ Q: Is this suitable for complete beginners? A: Yes, it’s designed specifically for new learners or those returning to work. Q: What kinds of roles will this help with? A: Entry-level admin, payroll, finance assistant, office coordinator, or any role requiring Excel fluency. Q: Can I use these certificates to strengthen my CV? A: Absolutely—they provide evidence of technical and workplace skills employers ask for. Q: Is this bundle relevant for remote roles too? A: Yes—Excel and admin skills are vital in both on-site and remote working environments. Q: How long will it take to complete all courses? A: You can study at your own pace—there’s no deadline or expiry.