Skip to content

Latest commit

 

History

History
93 lines (64 loc) · 2.48 KB

2023-11-01-intuneSuite-EPM.md

File metadata and controls

93 lines (64 loc) · 2.48 KB
layout title date author subtitle gh-repo gh-badge tags comments
post
Intune Suite – Endpoint Privilege Management (EPM)
2023-11-01
Jonathan Proctor
Lets get rid of local admin rights and secondary admin account!
systemcenterblog/systemcenterblog.github.io
star
fork
follow
Intune
true

{: .box-success} This is a post about my experiences with Endpoint Priviledge Management. I strongly encourage you to take 5 minutes to read Sandy Zeng take on EPM - This post will provide my own how to guide.

Here is some bold text

Here is a secondary heading

This is a link to a different site and this is a link to a section inside this page.

Here's a table:

Number Next number Previous number
Five Six Four
Ten Eleven Nine
Seven Eight Six
Two Three One

How about a yummy crepe?

Crepe

It can also be centered!

Crepe{: .mx-auto.d-block :}

Here's a code chunk:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code with syntax highlighting:

var foo = function(x) {
  return(x + 5);
}
foo(3)

And here is the same code yet again but with line numbers:

{% highlight javascript linenos %} var foo = function(x) { return(x + 5); } foo(3) {% endhighlight %}

Boxes

You can add notification, warning and error boxes like this:

Notification

{: .box-note} Note: This is a notification box.

Warning

{: .box-warning} Warning: This is a warning box.

Error

{: .box-error} Error: This is an error box.

Local URLs in project sites {#local-urls}

When hosting a project site on GitHub Pages (for example, https://USERNAME.github.io/MyProject), URLs that begin with / and refer to local files may not work correctly due to how the root URL (/) is interpreted by GitHub Pages. You can read more about it in the FAQ. To demonstrate the issue, the following local image will be broken if your site is a project site:

Crepe

If the above image is broken, then you'll need to follow the instructions in the FAQ. Here is proof that it can be fixed:

![Crepe]({{ '/assets/img/crepe.jpg' | relative_url }})