Definitive Segment Routing course description This Segment Routing (SR) training course is a comprehensive program designed to equip network professionals with the knowledge and skills needed to implement and manage SR in modern networking environments. Segment Routing is a cutting-edge network architecture that enhances network flexibility, scalability, and efficiency. This course offers in-depth coverage of SR principles, protocols, and practical implementation techniques. Hands on sessions are used to reinforce the theory rather than teach specific manufacturer equipment. What will you learn Explain packet paths when implementing SLB. Explain how Segment Routing works. Explain the relationship between SR and MPLS. Use SR for Traffic Engineering. Troubleshoot Segment Routing. Implement TI-LFA using Segment Routing Definitive Segment Routing course details Who will benefit: This course is ideal for network engineers, architects, and administrators who want to stay up-to-date with the latest networking technologies and enhance their expertise in Segment Routing. Prerequisites: Concise MPLS for engineers Duration 3 days Definitive Segment Routing course contents Introduction to Segment Routing (SR) What is SR? Source based routing, SPRING, history, segments, why SR? SR benefits.SR usage: Traffic Engineering, Shortest path, local protection. Relationship between SR and MPLS, SRv6. Hands on Investigating the base network. Segment Routing architecture SR domains, SR paths, SR segments. Segment types. Segment IDs, combining segments, IGP extensions, control plane components. Hands on Configuring SR, exploring how SR works, Segment Routing protocols SR-MPLS. MPLS label stack operations. Segment Routing Global Block (SRGB). SRLB. IS-IS and OSPF extensions for SR. Prefix segments, adjacency segments. SRGB/IGP interactions. Multidomain SR policies. SPF, Strict SPF. Hands on Analysing IGP SR extension operation. Investigating the SRGB. Segment Routing Traffic Engineering RSVP-TE versus SR-TE. SR policies. Anycast and binding SIDs. SR flexible algorithm flex-algo, Performance measurement delay. Hands on Optimising network paths for various applications. SR integration with 'older' technologies MPLS and LDP integration with SR. Hands on Integration. Topology Independent Loop Free Alternative Classic LFA and IP/MPLS protection mechanisms. TI-LFA protection options. Hands on TI-LFA operation with SR and LDP traffic. Scenarios SDN. Managing SR with SR controllers. Analyse, optimise, automate. Network slicing. BGP peering segments Path Computation Elements, BGP Link State. BGP prefix segments, BGP peer segments. Egress peer engineering. SR enabled VPNs. Hands onBGP segment routing. Troubleshooting Segment Routing IP toolkit: ping and traceroute. MPLS toolkit: MPLS ping, MPLS echo request/reply, MPLS ping, MPLS traceroute and path discovery. Router show commands. Hands on Used throughout the course during exercises. SRv6 Note this is an optional extra day. See our one day SRv6 course for details. IPv6 headers review, routing headers, IPv6 segment, SRv6 segment Identifiers. IPv6 Segment Routing Header. SRH procedures. Hands on Configuring SRv6, Analysing SRv6 operation.
DNS training course description This three-day hands on DNS training course studies both the UNIX BIND and the Microsoft (MS DNS) implementations. The course starts with the big picture of how DNS works, then client configuration. Primary and secondary servers are then configured, progressing to DDNS, subdomains and security issues. Hands on sessions follow all sections ensuring that troubleshooting techniques are used throughout the course. Students choose whether to use Windows or UNIX for the hands on sessions. What will you learn Describe the architecture of DNS. Explain how DNS works. Install, configure, maintain and troubleshoot DNS DNS training course details Who will benefit: Technical staff wanting to learn DNS including: Network personnel System administrators. Prerequisites: UNIX Fundamentals (or Windows knowledge). TCP/IP foundation for engineers. Duration 3 days DNS training course contents What is DNS? Hostnames, Name resolution, host files, host file problems, What is DNS? The DNS namespace, TLDs, gTLDs, registering domains, Nameservers, how DNS works. Hands on Testing DNS servers on the Internet. DNS clients Ways to use DNS, dynamic and static configuration, multiple nameservers, domain name, searchlist, resolution issues, testing the configuration. Hands on Client configuration. DNS server software Implementations, Microsoft, BIND, daemons and services, installation, starting and stopping servers. Hands on Setting up a DNS server. DNS zone files What is a zone, Zone file overview, Forward zones, Reverse zones, Resource records, A records, PTR, CNAME, Root hints, local zone file. BIND and Microsoft configuration. Hands on Server configuration files. NS and applications MX records, Mail server load balancing, SPF, SRV records, VoIP and SRV, Microsoft and SRV, NAPTR. Hands on Testing records with dig and nslookup. DNS slaves and other servers DNS server types, Server resilience, Slaves, Zone transfers, SOA records, Serial numbers, recommendations, polling based zone transfers, NOTIFY, AD integration, DNS caching, Negative caching, TTL, Caching only servers. Hands on Masters, slaves and zone transfers. The DNS protocol The DNS stack, DNS port numbers, DNS queries, The DNS header, header section format, question format, other section format. Hands on Troubleshooting DNS with Wireshark. Dynamic DNS DHCP, DDNS, IXFR, WINS integration. Hands on Dynamic DNS. Subdomains Root servers, root server selection, Authority, delegation, NS records, subdomain with and without delegation, reverse delegation. Hands on Delegation, setting up a subdomain server. DNS security Restricting queries, DNS and firewalls, Split DNS, forwarders, internal root servers, the use of proxy servers, DNSSEC, TSIG. Hands on Hardening a DNS server. DNS and IPv6 What is IPv6, IPv6 addressing, IPv6 DNS issues, AAAA, IPv6 reverse delegation. Troubleshooting DNS Problem solving, DNS troubleshooting, Zone file checking, Some common errors, Log files, tools, nslookup, dig, host, DNS design, performance, load balancing. Hands on Putting it all together. Summary Useful books, Internet sites, RFCs. Appendix: ENUM What is ENUM, How ENUM works, NAPTR.
MySQL Performance & Tuning training course description This MySQL Performance & Tuning course is designed for Database Administrators, Application Developers and Technical Consultants who need to monitor and tune the performance of MySQL servers and databases. The course provides practical experience in monitoring and tuning MySQL servers and databases. Note: This MySQL Performance & Tuning course does not cover clustering (other than at overview level), replication or non-standard storage engines such as Falcon and PBXT. What will you learn Develop a monitoring and tuning plan Use server configuration and status variables. Identify and improve problem queries. Make efficient use of indexes. Monitor and size memory caches and locks. Tune the MyISAM and InnoDB storage engine. Evaluate the use of partitioning for performance. MySQL Performance & Tuning training course details Who will benefit: Anyone who wishes to monitor and tune MySQL performance. Prerequisites: Delegates must have a working knowledge of MySQL Database Administration Duration 3 days MySQL Performance & Tuning training course contents Introduction to performance tuning Tuning overview, Resolving performance issues, Recommended approach to tuning, Items to evaluate, Where to look, Planning a monitoring routine, Building a new database for performance, Tuning an existing database, Setting suitable goals. MySQL performance tuning tools Administration tools, the information schema, performance-related SHOW commands, benchmarking tools, the MySQL performance schema, MonYog. Hands on Obtaining performance information. Schema design Normalisation, de-normalisation, naming conventions, load generation, stress testing and benchmarking tools, selecting data types, data types, character sets, choosing storage engines. Hands on effects of design on performance. Statement tuning Overview of statement tuning, identifying problem queries, the optimizer, explain, explain extended. Hands on identifying problem queries and using explain. Indexes Index overview, Types of index, Index tuning, Indexes and joins. Hands on Indexes and performance. Server configuration and monitoring Server configuration variables, server status variables, table cache, multi-threading, connection issues, query cache. Hands on setting and interpreting server variables and caching. Locking Types of locking, locking and storage engines, effects of locking on performance. Hands on locking and performance. The InnoDB engine Transactions, crash recovery, locking, monitoring InnoDB, caches and buffers, configuring data files, configuring the log files. Hands on InnoDB configuration and performance. Other storage engines MyISAM engine, merge engine, archive engine, memory engine, blackhole engine, CSV engine, the Spider engine, the ColumnStore engine, the MyRocks engine, mixing sorage engines. Hands on storage engine performance. Overview of clustering and performance Advantages of performance, advantages of clustering, performance issues and clustering, the NDBCluster engine, the Galera cluster, the Percona XtraDB cluster, MySQL InnoDB cluster, the federated engine, the federatedX engine, overview of other high availability techniques. NOSQL and Mencached overview. Dumping and loading data SQL statements versus delimited data, parameters affecting dump performance, parameters affecting load performance. Hands on dump and load performance. Partitioned tables Partitioned tables concepts, range partitioning, hash partitioning, key partitioning, list partitioning, composite partitioning or subpartitioning, partition pruning. Hands on partitioned table performance.
Are you ready to take your HR skills to the next level? The HR Audit Certificate course is designed to provide you with the knowledge and tools necessary to conduct thorough and effective HR audits. Whether you're an HR professional looking to enhance your expertise or an organization aiming to optimize your HR processes, this course is your gateway to excellence. Key Features: CPD Certified Developed by Specialist Lifetime Access This HR Audit Certificate course teaches learners the essentials of HR auditing. You'll start with an understanding of what an HR audit is and why it's important. The course then guides you through the steps of conducting an HR audit, from planning and procedures to execution. You'll learn how to assess recruitment and selection processes to ensure they are effective and fair. Additionally, the course covers how to evaluate employee training and development programs to see if they meet organizational needs. Practical skills in conducting HR audit interviews are included, helping you gather accurate information. You'll also learn how to report your findings clearly and professionally. Finally, the course introduces you to the UK internal audit standards, ensuring your audits meet high-quality benchmarks. This comprehensive course equips you with the knowledge and skills to perform thorough and effective HR audits in any organization. Course Curriculum Module 01: Introduction to HR Audit Module 02: HR Audit Procedures Module 03: Employee Recruitment and Selection Procedure Module 04: Employee Training and Development Process Module 05: HR Audit Interviews Module 06: Reporting HR Audit Outcome Module 07: UK Internal Audit Standards Learning Outcomes Understand key concepts and principles of HR audit procedures. Master techniques for evaluating employee recruitment and selection processes. Analyse the effectiveness of employee training and development programmes. Conduct comprehensive HR audit interviews with stakeholders. Report HR audit outcomes with clarity and precision. Adhere to UK internal audit standards and best practices. CPD 10 CPD hours / points Accredited by CPD Quality Standards Who is this course for? HR professionals aiming to enhance audit skills. Internal auditors seeking HR audit knowledge. Managers overseeing HR processes and compliance. Consultants specialising in HR and internal audits. Students pursuing careers in HR or internal auditing. Career path HR Auditor Internal Auditor Recruitment and Selection Auditor Training and Development Analyst HR Compliance Officer HR Consultant Certificates Digital certificate Digital certificate - Included Will be downloadable when all lectures have been completed.
Begin your career as an HR manager by enrolling in Course Cave's HR Management course. This course will help you pursue your goals and develop your knowledge, competence, and skill, whether you are a novice or a seasoned professional. It covers a wide range of topics to assist you in developing your HR management knowledge and skills. It provides step-by-step directions for hiring and selecting employees, improving employee relationships at work, and motivating and rewarding staff for better productivity. This HR manager course also provides in-depth knowledge of the various HR processes and functions. After completing this course, learners will be able to build the necessary HR skills and knowledge and manage an organization's HR functions. Upon registration, you will receive full course access and will be able to access the course materials from anywhere in the world, at any time, and on any internet-enabled device. Learning Outcomes You will be able to do the following at the end of the course: Examine the importance of human resources and their management in businesses. Describe HRM Models. Implement new employee recruitment and selection procedures in your business. Recognise the significance of a positive employee partnership. Create and execute a successful workplace training program. Inspire and empower your staff. Promote equality and manage diversity in your organisation Examine current health and safety legislation and regulations and workplace health and safety management and risk assessment. Talk about common employee complaints, disciplinary issues, and professional dismissal procedures. Improve your communication abilities. Prevent abuse and discrimination in the workplace. Taking easy anti-Covid-19 precautions that will help protect your employees and your business. ***Courses are included in this Bundle Course Course 01: HR Management Course Course 02: Level 7 Diploma in Leadership & Management Course 03: Level 5 Diploma in Risk Management Course [ Note: Free PDF certificate as soon as completing the HR course ] Course Curriculum *** HR : HR *** Module 1: Introduction Module 2: Recruitment and Selection Module 3: Employee Relationship Module 4: Performance Management Module 5: The Necessity of Training & Development in the Workplace Module 6: Motivating and Rewarding Employees Module 7: Equality and Diversity Module 8: Health and Safety of Employees Module 9: Talent Management Module 10: Succession Planning Module 11: Absence Management and Attendance Module 12: Handling Grievance, Discipline, Termination and Dismissal Module 13: Communication Techniques for the Workplace Module 14: Preventing Workplace Violence and Harassment Module 15: Conflict Resolution Module 16: Occupational Health Safety, Hygiene and Workplace Wellbeing of Employees Module17: COVID-19 and the Workplace Assessment Method After completing each module of the HR Management Course, you will find automated MCQ quizzes. To unlock the next module, you need to complete the quiz task and get at least 60% marks. Certification After completing the MCQ/Assignment assessment for this HR Management course, you will be entitled to a Certificate of Completion from Training Tale. The certificate is in PDF format, which is completely free to download. A printed version is also available upon request. It will also be sent to you through a courier for £13.99. Who is this course for? HR course is highly recommended for anyone considering a career in human resources. This is something that existing HR workers who are desperate for promotion should think about. Thiscourse is open to business management students and anybody looking to improve their resume and career opportunities. Requirements There are no specific requirements for this course because it does not require any advanced knowledge or skills. Students who intend to enrol in this course must meet the following requirements: Good command of the English language Must be vivacious and self-driven Basic computer knowledge A minimum of 16 years of age is required Career path After completing this HR course, you will be capable of applying for a variety of positions. After completing this course, you can continue your education with our updated version of Human Resources Management if you want to keep up with your colleagues and peers or advance in your profession. Certificates Certificate of completion Digital certificate - Included
Begin your career as an HR manager by enrolling in Course Cave's HR Management course. This course will help you pursue your goals and develop your knowledge, competence, and skill, whether you are a novice or a seasoned professional. It covers a wide range of topics to assist you in developing your HR management knowledge and skills. It provides step-by-step directions for hiring and selecting employees, improving employee relationships at work, and motivating and rewarding staff for better productivity. This HR manager course also provides in-depth knowledge of the various HR processes and functions. After completing this course, learners will be able to build the necessary HR skills and knowledge and manage an organization's HR functions. Upon registration, you will receive full course access and will be able to access the course materials from anywhere in the world, at any time, and on any internet-enabled device. Learning Outcomes You will be able to do the following at the end of the course: Examine the importance of human resources and their management in businesses. Describe HRM Models. Implement new employee recruitment and selection procedures in your business. Recognise the significance of a positive employee partnership. Create and execute a successful workplace training program. Inspire and empower your staff. Promote equality and manage diversity in your organisation Examine current health and safety legislation and regulations and workplace health and safety management and risk assessment. Talk about common employee complaints, disciplinary issues, and professional dismissal procedures. Improve your communication abilities. Prevent abuse and discrimination in the workplace. Taking easy anti-Covid-19 precautions that will help protect your employees and your business. Why Choose HR Management Course from Us Self-paced course, access available from anywhere. Easy to understand, high-quality study materials. Course developed by industry experts. MCQ quiz after each module to assess your learning. Automated and instant assessment results. 24/7 support via live chat, phone call or email. Free PDF certificate as soon as completing the course. 5 COURSES BUNDLE INFO Main Course: HR Management Course *** Additional Courses*** Course 01: Level 7 Diploma in Leadership & Management Course 02: Level 5 Diploma in Risk Management Course Course 03: Property Management Course 04: Level 5 Health and Safety at Work Course Curriculum *** HR Management Course *** Module 1: Introduction Module 2: Recruitment and Selection Module 3: Employee Relationship Module 4: Performance Management Module 5: The Necessity of Training & Development in the Workplace Module 6: Motivating and Rewarding Employees Module 7: Equality and Diversity Module 8: Health and Safety of Employees Module 9: Talent Management Module 10: Succession Planning Module 11: Absence Management and Attendance Module 12: Handling Grievance, Discipline, Termination and Dismissal Module 13: Communication Techniques for the Workplace Module 14: Preventing Workplace Violence and Harassment Module 15: Conflict Resolution Module 16: Occupational Health Safety, Hygiene and Workplace Wellbeing of Employees Module17: COVID-19 and the Workplace Assessment Method After completing each module of the HR Management Course, you will find automated MCQ quizzes. To unlock the next module, you need to complete the quiz task and get at least 60% marks. Certification After completing the MCQ/Assignment assessment for this HR Management course, you will be entitled to a Certificate of Completion from Training Tale. The certificate is in PDF format, which is completely free to download. A printed version is also available upon request. It will also be sent to you through a courier for £13.99. Who is this course for? HR Management course is highly recommended for anyone considering a career in human resources. This is something that existing HR workers who are desperate for promotion should think about. This course is open to business management students and anybody looking to improve their resume and career opportunities. Requirements There are no specific requirements for HR Management course because it does not require any advanced knowledge or skills. Students who intend to enrol in this course must meet the following requirements: Good command of the English language Must be vivacious and self-driven Basic computer knowledge A minimum of 16 years of age is required Career path After completing this HR Management course, you will be capable of applying for a variety of positions. After completing this course, you can continue your education with our updated version of HR Management if you want to keep up with your colleagues and peers or advance in your profession. Certificates Certificate of completion Digital certificate - Included
HR management: HR management Course Online If you want to learn about HR management: HR management Course and become an expert in the field, you have arrived at the right place. Industry experts designed this HR management: HR management Course to enable you to learn quickly and efficiently and at your own pace and convenience. Begin your career as an HR manager by enrolling in Training Tale's HR management: HR management Course. This HR management: HR management Course will help you pursue your goals and develop your knowledge, competence, and skill, whether you are a novice or a seasoned professional. HR Management Program covers a wide range of topics to assist you in developing your HR management knowledge and skills. HR Management provides step-by-step directions for hiring and selecting employees, improving employee relationships at work, and motivating and rewarding staff for better productivity. Enroll HR management: HR management Course today and take the next step towards your personal and professional goals. Main Course: Level 5 HR Management Course Courses are included in this HR management: HR Management Bundle Course Course 01: Level 7 Business Management Course Course 02: Level 5 Diploma in Risk Management Course Other Benefits this Course Free 3 PDF Certificate Access to Content - Lifetime Exam Fee - Totally Free Free Retake Exam [ Note: Free PDF certificate will provide as soon as completing the HR management: HR Management Course] HR management: HR management Course Online Industry Experts Designed this HR Management: HR Management course into 17 detailed modules. Course Curriculum of HR management: HR management Course Module 01: Introduction Module 02: Recruitment and Selection Module 03: Employee Relationship Module 04: Performance Management Module 05: The Necessity of Training & Development in the Workplace Module 06: Motivating and Rewarding Employees Module 07: Equality and Diversity Module 08: Health and Safety of Employees Module 09: Talent Management Module 10: Succession Planning Module 11: Absence Management and Attendance Module 12: Handling Grievance, Discipline, Termination and Dismissal Module 13: Communication Techniques for the Workplace Module 14: Preventing Workplace Violence and Harassment Module 15: Conflict Resolution Module 16: Occupational Health Safety, Hygiene and Workplace Wellbeing of Employees Module17: COVID-19 and the Workplace Assessment Method of HR Management Course After completing each module of the HR management: HR management Course, you will find automated MCQ quizzes. To unlock the next module, you need to complete the quiz task and get at least 60% marks. Certification of HR management Course After completing the MCQ/Assignment assessment for this HR management: HR management course, you will be entitled to a Certificate of Completion from Training Tale. Who is this course for? HR management: HR management Online This HR Management: HR Management course is highly recommended for anyone considering a career in human resources. Requirements HR management: HR management Online Students who intend to enrol in this HR Management: HR Management course must meet the following requirements: HR Management: Good command of the English language HR Management: Must be vivacious and self-driven HR Management: Basic computer knowledge HR Management: A minimum of 16 years of age is required Career path HR management: HR management Online After completing this HR Management: HR Management course, you will be capable of applying for a variety of positions. Certificates Certificate of completion Digital certificate - Included
Duration 4 Days 24 CPD hours This course is intended for Collaboration Communications Systems Engineers are responsible for planning, deploying, configuring, maintaining, and troubleshooting Microsoft Teams Phone, meetings, and personal and shared space devices, including Microsoft Teams Rooms and Surface Hub. Collaboration Communications Systems Engineers have a fundamental understanding ofÿnetworking, telecommunications, audio/visual and meeting room technologies, identity and access management. They are proficient in managing and monitoring Teams Phone, meetings, and certified devices using the Microsoft Teams admin center, PowerShell, the Microsoft Teams Rooms Pro Portal, and the Call Quality Dashboard. They deploy and configure Microsoft Teams Phone with PSTN connectivity through Microsoft Calling Plans, Operator Connect, Teams Phone Mobile, and Direct Routing. Collaboration Communications Systems Engineers work with Teams Administrators, Microsoft Identity and Access Administrators, and Microsoft 365ÿAdministrators. In addition, they may work with owners of other workloads, including facilitiesÿmanagers, network engineers, security engineers, device manufacturers, telephony providers, and Microsoft Certified solutions providers. This training course is designed to give participants the knowledge and skills to become a Collaboration Communications Systems Engineer. Participants should understand the fundamentals of networking, telecommunications, audio/visual and meeting room technologies, identity and access management, and Microsoft Teams. They will gain hands-on experience configuring and deploying Microsoft Teams Phone, meetings and certified devices including Microsoft Teams Rooms and Surface Hub. The course will also cover how to manage and monitor Teams Phone, meetings, and certified devices using the Microsoft Teams admin center, PowerShell, the Microsoft Teams Rooms Pro Portal, and the Call Quality Dashboard. In addition, the course will cover configuring and deploying Microsoft Teams Phone with PSTN connectivity through Microsoft Calling Plans, Operator Connect, Teams Phone Mobile, and Direct Routing. Prerequisites Microsoft 365 and Microsoft Teams Networking, telecommunications, and audio/visual basics Identity and access management basics 1 - Introduction to Teams meetings and calling Overview of Teams meetings and events Overview of Teams Phone Overview of auto attendants and call queues Overview of Teams devices 2 - Plan for Teams Phone Plan to deploy Teams Phone Plan for Teams Phone PSTN connectivity Determine license requirements Plan for Teams Phone devices Plan and design Teams Phone features Plan for voicemail 3 - Plan for Microsoft Teams Rooms and Surface Hub Determine license requirements for Microsoft Teams Rooms and shared devices Understand differences between Microsoft Teams Rooms on Android and Windows Understand Microsoft Teams Rooms on Surface Hub 2S Understand and plan Teams Room accessories, components, and peripherals Understand Teams Rooms management options 4 - Plan and optimize network performance for Teams media Understand Teams network requirements Design network for media optimization Design and implement QoS 5 - Configure and deploy Teams Phone Configure emergency calling for Teams Calling Plans Manage and configure Microsoft PSTN numbers Configure Operator Connect and Teams Phone Mobile Configure Teams Phone policies Create and manage Teams policies Configure Audio Conferencing 6 - Configure and deploy Teams Phone with Direct Routing Design Direct Routing call flows Implement SIP trunking with Direct Routing Configure Emergency Calling for Direct Routing Extend Teams Direct Routing infrastructure Deploy and maintain a survivable branch appliance 7 - Extend Teams Phone with additional services Understand how Teams interacts with additional services Configure compliance recording in Teams Configure and integrate a certified contact center in Teams Design and deploy voice bots in Teams 8 - Manage meetings and events experiences Explore meetings and events in Microsoft Teams Configure meeting settings Create and manage meeting policies Configure audio conferencing Create and manage meeting templates and template policies Create and manage meetings customization policies Configure live events settings Create and manage live events policies Examine live events across Microsoft 365 9 - Guided project - Create and assign Teams policies to meet business requirements in Microsoft Teams Prepare 10 - Configure and manage voice users Enable users for Teams Phone Enable users for Direct Routing with Teams Phone Enable additional calling features for Teams Phone Enable users for Teams Phone Mobile 11 - Configure auto attendants and call queues Design call flows for auto attendants and call queues Configure auto attendants and call queues Deploy a channel-based call queue Configure resource accounts Configure Microsoft 365 groups for voicemail Interpret call queue conference modes Interpret call queue routing methods Configure holidays for auto attendants and call queues Configure custom music on hold 12 - Configure, deploy, and manage Teams devices Manage Microsoft Teams Phones Manage Microsoft Teams Room Systems Microsoft Teams Rooms management options Manage Surface Hub 2S devices Configure Microsoft Teams SIP gateway Manage Microsoft Teams displays Remote provisioning and sign in for Teams Phones Update Microsoft Teams devices remotely Manage Microsoft Teams device tags 13 - Guided project - Prepare meeting room experiences Prepare 14 - Monitor and troubleshoot Teams collaboration communications systems Diagnose and troubleshoot phone number assignment Diagnose and troubleshoot Teams client issues Diagnose and troubleshoot call failure and call quality issues Report on and troubleshoot Teams calls with Call Quality Dashboard Diagnose and troubleshoot Direct Routing issues Troubleshoot and monitor Teams devices Troubleshoot Teams meetings and calling Troubleshoot Teams Rooms devices
About this Training Course Materials Management is an essential link in the Supply Chain process. It takes an even bigger significance in the Upstream industry when the cost of a rupture in equipment or stock can be tremendous, without even considering the cost of the equipment itself. The downside may result in the accumulation of out-of-commission materials which leads to business inefficiency. What does it take to maintain efficient Materials Management? This 3 full-day course will explain more in detail. This course can also be offered through Virtual Instructor Led Training (VILT) format. Training Objectives At the end of this course, participants will be able to: Understand the importance of an efficient Materials Management in the Supply Chain process Examine the control and validation of Stock processes Understand the role of the Duet and work within the Stock Duet in materials management Learn about the key factors in Stock optimisation Target Audience This course will benefit all personnel involved in Supply Chain including Stock Controllers, Cost Controllers, Buyers, Logisticians and those from the technical department such as Technical Administrators and members of the duet. Course Level Basic or Foundation Trainer Your expert course leader has 25 years of experience in management positions in Contracting, Procurement and Logistics, mainly in the Oil & Gas Industry. He was a Lecturer for IFP Training for 5 years. During his Oil & Gas industry experience, he has worked on major Oil and Gas development projects like the Yadana project in Myanmar, Akpo project in Nigeria and YLNG in Yemen. His international experience allows him to adapt very easily and integrate the multicultural specificities of the Oil & Gas industry in his teaching. POST TRAINING COACHING SUPPORT (OPTIONAL) To further optimise your learning experience from our courses, we also offer individualized 'One to One' coaching support for 2 hours post training. We can help improve your competence in your chosen area of interest, based on your learning needs and available hours. This is a great opportunity to improve your capability and confidence in a particular area of expertise. It will be delivered over a secure video conference call by one of our senior trainers. They will work with you to create a tailor-made coaching program that will help you achieve your goals faster. Request for further information post training support and fees applicable Accreditions And Affliations