Microsoft are retiring many of their certifications


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Microsoft are retiring many of their certifications
# 1  
Old 03-03-2020
Microsoft are retiring many of their certifications

One of my colleagues has just posted on LinkedIn that Microsoft are retiring many of their certifications.

https://www.zdnet.com/article/micros...-in-june-2020/

This is one of many web pages on the subject.

How times are a changing!!!
This User Gave Thanks to hicksd8 For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

Are certifications worth it?

I have just been on RedHat SA 3 training course (4 days) and sat exams EX200 (RHCSA) and EX300 (RHCE) The daft thing was that politics meant I wasn't allowed to take courses SA 1 or 2. So I learnt about stuff I would never use (SELinux; iSCSI; NFS Kerberos encrypted with user specific access... (22 Replies)
Discussion started by: rbatte1
22 Replies

2. What is on Your Mind?

Certifications in Linux

Hi , I am working in Perl/Shell Script for past 3 years.I am planning to learn and switch my Career as Linux Admin.So Please suggest some certifications to learn about it.Do we have separate sub categories/area of specifications in Linux Admin ? Like Virtualization ,Vmware,storage. ... (0 Replies)
Discussion started by: Ajaytts123
0 Replies

3. HP-UX

HP-UX Certifications

Hi, I am planning to get certified on HP-UX. I googled about HPUX Certifications. I understand that I need to pass on exam HP0-A01 but I find many references to HP0-095. I bought this book: HP-UX: HP Certification Systems Administrator, Exam HP0-A01 - Training Guide and Administrator's... (16 Replies)
Discussion started by: psicopunk
16 Replies

4. Shell Programming and Scripting

UNIX Certifications

Hi All, Can anybody let me know if there is any Unix certification course which will provide basically programming in Unix. (4 Replies)
Discussion started by: darshakraut
4 Replies

5. UNIX for Dummies Questions & Answers

Information regarding unix certifications

Hi, Currently I have started working on unix and now I want to go for some certification. But I have no idea about any certification or their market values. My main stream is PL/SQL and I have done OCA in developer stream. So I just want this unix certification for basic knowledge of unix... (1 Reply)
Discussion started by: alok1301
1 Replies

6. AIX

Aix Certifications

Hi , I want to know aix certifications,How to perepare for that ?How many number of papers are there? (12 Replies)
Discussion started by: manoj.solaris
12 Replies

7. Shell Programming and Scripting

Certifications in Unix?

Guys, I just want information abt certifications available for unix. If they exist can anyone give some info them. Making clear I am pointing to developer level exams, not admin side. Thanks, Sharif.S (0 Replies)
Discussion started by: sharifhere
0 Replies

8. UNIX for Dummies Questions & Answers

What Certifications to be done in UNIX

Hello I am a newbie i learnt Shell programming and Unix Internals.Well plz advice me what certifications i shud do as i have free time and want to utilize my time :) (1 Reply)
Discussion started by: strawberry
1 Replies

9. What is on Your Mind?

Unix certifications

Hi all, I'm new to this forum also to unix, but eager to learn unix. Can any one gimme the certifications/exams available to validate our unix strengths. (7 Replies)
Discussion started by: sarang
7 Replies

10. UNIX for Dummies Questions & Answers

UNIX certifications

Are there any nationally recognized UNIX certifications, similar to A+., for basic unix and system admin skills? thanks (1 Reply)
Discussion started by: pacsman
1 Replies
Login or Register to Ask a Question
MKEOT(1)							   EOT UTILITIES							  MKEOT(1)

NAME
mkeot - generate Embedded OpenType SYNOPSIS
mkeot font-file [ URL [ URL ... ] ] > EOT-file DESCRIPTION
The mkeot command writes an EOT (Embedded OpenType) file on standard output that contains the given font file (OpenType or TrueType) and the given URLs. mkeot handles TrueType files, OpenType files with TrueType outlines, and OpenType files with Postscript outlines. (Technically: all files with the "sfnt" format.) However, Microsoft's Web browser Internet Explorer (version 8) cannot handle Postscript outlines. To use EOT files with that browser, OpenType files with Postscript outlines must be converted to TrueType files first. Several prgrams are able to do that, including the free fontforge. The URLs that are added to the EOT file list the Web pages on which the EOT font may be used. They act as prefixes, which means that, e.g., a URL such as http://example.org/foo enables a font not only for that precise page, but also for http://example.org/foo2 or http://exam- ple.org/foo/bar or any other pages whose URL starts with the prefix. The EOT specification allows EOT files without any URLs, but is not clear on the meaning of such a file. In practice, at least in Micro- soft's Internet Explorer (version 8), an empty list of URLs means the font applies to no Web page at all. EOT font are typically used for Web pages. To that end, a link (URL) to the EOT file must appear in the Web page's style sheet. A typical rule in CSS looks like this: @font-face { font-family: My Fancy Font; font-style: normal; font-weight: normal; src: url(http://example.org/fonts/fancy-roman.eot); } body { font-family: My Fancy Font, serif; } This downloads the EOT file from the given URL and declares it to be a font of normal weight and roman style with the family name "My Fancy Font." That font can then be used in style rules, such as, in this example, to set the font of body text. See the "CSS Fonts Module level 3" for details on CSS. TrueType files typically have the extension .ttf, OpenType files typically have the extension .otf and EOT files typically end in .eot. SEE ALSO
eotinfo(1), fontforge(1), WEFT (http://www.microsoft.com/typography/web/embedding/weft3/default.htm), EOT (http://www.w3.org/Submis- sion/2008/01/) CSS Fonts Module level 3 (see http://www.w3.org/TR/css3-fonts/) BUGS
mkeot does not apply the optional MicroType Express compression. mkeot may fail with fonts that have non-ASCII characters in their names. mkeot cannot handle fonts that use (only) language tags instead of traditional Microsoft/Apple language numbers in their names table. (Luckily, this feature of OpenType version 1.6 appears to be little used.) mkeot does not subset the font, unlike Microsoft's graphical WEFT tool. To make a EOT file with a reduced set of glyphs, you must first create a subsetted TrueType font with a font editor. 1.x 25 Jan 2010 MKEOT(1)