Install Microsoft Endpoint Configuration Manager

这篇具有很好参考价值的文章主要介绍了Install Microsoft Endpoint Configuration Manager。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Overview

In my last article about Attack Surface Reduction, I didn’t care enough to go through all the documentation and went for a long detour to install Microsoft Endpoint Configuration Manager for Attack Surface Reduction configurations. It turned out that, all I need is Group Policy.

So, this article, I moved the part of installing Microsoft Endpoint Configuration Manager here as a stand-alone for later reference.

Install Microsoft Endpoint Configuration Manager

The process is dauting, if you would kindly be patient and follow along.

Test is performed on Windows Server 2019 VM machine in Active Directory environment with SQL server installed (required by Configuration Manager).

Download and install according to official document. For test purposes, we can ignore step 5 through 17, and make sure you have MSSQL Server standard or enterprise edition installed, others won’t work (though I found that DEV edition will work, follow along).

Some steps are explained next.

Pre-Installation

SQL Server Instance

In order to successfully install Configuration Manager, we have to have a SQL server instance running, and we have to add an database for the admin site (on how to install and configure SQL server, refer to my other article, section “安装 SQL Server 2019 Express”).

NOTE: Make sure to join a domain first, then install SQL Server as Administrator user, also refer to my other article, section “添加 Windows Server 到域”. And, the SQL Server used in that article is SQL Express, which is not supported by Configuration Manager. You should go to this official site, and download the Developer edition.


Install Microsoft Endpoint Configuration Manager

And other steps are just the same.

After installing SQL Server Developer Edition and SQL Server Management Studio. Open SQL Server Management Studio 18.

Click Connect.


Install Microsoft Endpoint Configuration Manager


Right click on Databases and select New Database….

Install Microsoft Endpoint Configuration Manager


Use CM_MEM (default Configuration Manager database name) as database name and click OK.


Install Microsoft Endpoint Configuration Manager


Then, right click on the instance and select New Query.

Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager


And run the following query.

USE master;

CREATE ENDPOINT BrokerEndpoint
    STATE = STARTED
    AS TCP ( LISTENER_PORT = 4022 )
    FOR SERVICE_BROKER ( AUTHENTICATION = WINDOWS ) ;

Install Microsoft Endpoint Configuration Manager

Check that the port is listening.

Install Microsoft Endpoint Configuration Manager

Then, open SQL Server Configuration Manager. Right click on SQL Server instance, select Properties. We are going to change the user who’s running SQL server as Configuration Manager won’t allow local service account to run SQL instance.


Install Microsoft Endpoint Configuration Manager

Click Built-in account and select Local System.

Install Microsoft Endpoint Configuration Manager


Click Apply and Yes.


Install Microsoft Endpoint Configuration Manager

Check services, make sure that SQL Server is running as Local System.

Install Microsoft Endpoint Configuration Manager

Install RDC Library

Go to Server Manager -> Add Roles and Features.

Install Microsoft Endpoint Configuration Manager

Next all the way till you reach Features, and check Remote Differential Compression.


Install Microsoft Endpoint Configuration Manager

Click Next and Install.


Install Microsoft Endpoint Configuration Manager

Wait for the process to finish.


Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager

Install Windows ADK

Click on this link to download Windows ADK for Windows Build 1809 (my Windows Server 2019 is of Build 1809 too, so compatible).

Install Microsoft Endpoint Configuration Manager

Double click to install.


Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager

Next All the way to finish installation.


SQL Server Instance Static TCP Port

Open SQL Server Configuration Manager. Under SQL Server Network Configuration -> Protocols for MSSQLSERVER, TCP/IP is Enabled.

Install Microsoft Endpoint Configuration Manager


Then, right click on TCP/IP, select Properties.

Install Microsoft Endpoint Configuration Manager


Under, IP Addresses tab, make sure all TCP Dynamic Ports are blank, and TCP Port are all configured to 1433.

Install Microsoft Endpoint Configuration Manager

Click Apply and restart SQL server instance.

Install WIndows-PE (Windows Pre-Installation Environment)

Go to this link to download Windows Preinstallation Environment. Double click to install.


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Next all the way to install.


Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager

As all pre-requisites are done, we can proceed to installing Microsoft Endpoint Configuration Manager.

Go to Microsoft official site to download the latest Microsoft Endpoint Configuration Manager for ASR configuration.


Install Microsoft Endpoint Configuration Manager


Fill in your information.


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Extract to whichever location you want.


Install Microsoft Endpoint Configuration Manager

Run the installer.

C:\MEM_Configmgr_2203\SMSSETUP\BIN\X64\Setup.exe

If you encounter this .NET package error.


Install Microsoft Endpoint Configuration Manager


Issue the following command in Admin command prompt.

DISM /Online /Enable-Feature /FeatureName:NetFx3 /All

Run the installer again.

C:\MEM_Configmgr_2203\SMSSETUP\BIN\X64\Setup.exe

Use most of the default settings as the following.


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager

Use Downloads folder for downloaded files.


Install Microsoft Endpoint Configuration Manager


Then Next to install. The whole process may take an hour or so.


Install Microsoft Endpoint Configuration Manager

Select server language.


Install Microsoft Endpoint Configuration Manager

Choose client language.


Install Microsoft Endpoint Configuration Manager
Specify some names.

Install Microsoft Endpoint Configuration Manager


In this case, we are going to install the site as a stand-alone site.


Install Microsoft Endpoint Configuration Manager

Back to installation guide.

Put some more configurations there.


Install Microsoft Endpoint Configuration Manager


Hit Next to continue.


Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager


Let the installer run the check.

Install Microsoft Endpoint Configuration Manager


Warning is fine, Failed entries mean you have something missing, refer to pre-installation section if you saw one.

Click Begin Install to start the installation process.

Install Microsoft Endpoint Configuration Manager


Install Microsoft Endpoint Configuration Manager


After about 20 minutes, the installation finished.

Install Microsoft Endpoint Configuration Manager

Some warnings are proved to be OK.

Let’s open Microsoft Endpoint Configuration Manager and start exploring ASR.

Implementation of Attack Surface Reduction

Go to Assets and Compliance -> Exdpoint Protection -> Windows Defender Exploit Guard.


Install Microsoft Endpoint Configuration Manager


Right click anywhere on the blank space and select Create Exploit Guard Policy.

Install Microsoft Endpoint Configuration Manager


Give the rules whatever name you want, leave the options as default

Install Microsoft Endpoint Configuration Manager


Click Next and we can see what threats we want to block.

Install Microsoft Endpoint Configuration Manager


For test purposes, we are going to block Office applications from creating child processes, and block Office macros from calling Win32 APIs, which will limit the success of phishing attacks.

Install Microsoft Endpoint Configuration Manager


Plus, we are going to turn on lsass protection to prevent credential stealing.

Install Microsoft Endpoint Configuration Manager


Click Next.

Now, we have to create an exploit protection XML.

Open Windows Security Center, select App & browser control.

Install Microsoft Endpoint Configuration Manager


Then, select **Exploit protection settings**.

Install Microsoft Endpoint Configuration Manager


Choose **Export settings** at the bottom.

Install Microsoft Endpoint Configuration Manager


Save the file to a location.

Install Microsoft Endpoint Configuration Manager


Import the XML file.

Install Microsoft Endpoint Configuration Manager


Choose the XML file.

Install Microsoft Endpoint Configuration Manager


Then click **Next**.

Install Microsoft Endpoint Configuration Manager


**Next** all the way to complete the implementation.

Install Microsoft Endpoint Configuration Manager


Now, we have created our protection rules, but not deployed yet.

Right click on the entry, and select Deploy.

Install Microsoft Endpoint Configuration Manager

Install Microsoft Endpoint Configuration Manager


And you can always change the settings in the **Attack Surface Reduction** tab by right click and choose **Properties**.

Install Microsoft Endpoint Configuration Manager

Summary

This article provides step by step guide on how to install Microsoft Endpoint Configuration Manager and use it to setup Attack Surface Reduction Rules.

References

  • https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/attack-surface-reduction?view=o365-worldwide
  • https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/attack-surface-reduction?view=o365-worldwide
  • https://learn.microsoft.com/en-us/microsoft-365/security/defender-endpoint/enable-attack-surface-reduction?view=o365-worldwide
  • https://www.microsoft.com/en-us/evalcenter/evaluate-microsoft-endpoint-configuration-manager
  • https://learn.microsoft.com/en-us/windows/deployment/windows-10-poc-sc-config-mgr#install-microsoft-configuration-manager
  • https://support.solarwinds.com/SuccessCenter/s/article/Install-NET-3-5-on-Windows-Server-2019?language=en_US
  • https://learn.microsoft.com/en-us/mem/configmgr/protect/deploy-use/use-device-guard-with-configuration-manager
  • https://social.technet.microsoft.com/wiki/contents/articles/36617.sccm-2016-troubleshooting-resolve-sql-server-service-account-issue-during-setup.aspx
  • https://social.technet.microsoft.com/Forums/windows/en-US/faf7cab5-2e76-4d46-8ee6-e65a38b69116/i-am-installing-sccm-2016-but-getting-the-error-message?forum=systemcenterdeployment
  • https://learn.microsoft.com/en-us/windows-hardware/get-started/adk-install
  • https://answers.microsoft.com/en-us/windows/forum/all/microsoft-removed-windows-pe-folders-from-windows/db7a37a3-4dc1-4c66-8cbb-daf9525c6ae2

KEEP CALM AND HACK AWAY!文章来源地址https://www.toymoban.com/news/detail-439367.html

到了这里,关于Install Microsoft Endpoint Configuration Manager的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • npm install / webdriver-manager update报错 unable to get local issuer certificate

    我这边遇到的问题,用的是angular,跑npm install的时候报错,一开始在.npmrc添加strict-ssl=false但是还是报错,搜索下记录。 参考解决: selenium - webdriver-manager update, Error: unable to get local issuer certificate - Stack Overflow 这边主要问题是跑script  webdriver-manager update --gecko false 的时候报错,

    2024年02月07日
    浏览(39)
  • Installed Build Tools revision 33.0.0 is corrupted.Remove and install again using the SDK Manager.

    错误信息: 错误原因: 已安装的构建工具33.0.0版本已损坏。删除并使用SDK Manager重新安装。 解决方法: 降低SDK版本到30.0.3及以下 。 1.关闭项目回到首页 ,点击Configure--SDK Manager 2.进入SDK Manager后,点击SDK Platforms--Show Package Details,取消勾选API 33。    3.点击SDK Tools--Show Package

    2024年02月13日
    浏览(28)
  • python install错误:error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++

    当我们通过“pip install xxx”安装一些包含C++代码的包时,通常会发生安装失败并报错“ error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Microsoft C++ Build Tools”: https://visualstudio.microsoft.com/visual-cpp-build-tools/ ” 的情况,这里给出两种解决方法: Method 1:直接通过链接 “h

    2024年02月11日
    浏览(47)
  • pip install 报错: Microsoft Visual C++ 14.0 is required (10M安装包,5分钟解决)

    目录 问题现象  解决办法: 1.下载文件包 2. 安装 3. 安装好之后 pip install 报错: Microsoft Visual C++ 14.0 is required 系统: win10 我们在pip安装的时候有时候会报错, 如下: 这是缺少C++库导致的,解决办法也很简单 网上一堆教程,让你下载几个G的 Visual Studio, 又慢又麻烦,而且还

    2024年02月07日
    浏览(43)
  • pip install mysqlclient报错 error: Microsoft Visual C++ 14.0 or greater is required

    1.先看报错截图: 2.报错信息:  a) error: subprocess-exited-with-error   Running setup.py install for mysqlclient did not run successfully. b)   error: Microsoft Visual C++ 14.0 or greater is required. Get it with \\\"Microsoft C++ Build Tools\\\": https://visualstudio.microsoft.com/visual-cpp-build-tools/       [end of output]   note: This err

    2024年02月06日
    浏览(37)
  • paddle中import onnxruntime报错缺失Microsoft Visual C++ Redistributable for Visual Studio 2019 not install

    import onnxruntime 报错ImportError: Microsoft Visual C++ Redistributable for Visual Studio 2019 not installed on the machine. Traceback (most recent call last): File “D:/Wanggan_Project/tensorflow/study_test/paddle_steel/file_save_load.py”, line 7, in import onnxruntime File “D:Anaconda3envspaddle_newlibsite-packagesonnxruntime_ init _.py”, l

    2024年02月08日
    浏览(47)
  • # python 报错; pip install 报错;error: Microsoft Visual C++ 14.0 or greater is required. Get it with “Mi

    解决问题了的话求看官老爷们给个👍哈 谢谢支持QAQ 日常总结我踩过的坑 今天是cnocr的安装 首先第一行代码 pip安装cnocr(一个ocr工具第三方库 ) pip install cnocr -i https://pypi.tuna.tsinghua.edu.cn/simple/ 报错信息在文末 需要翻老底的可以去看看 这里报出了error: Microsoft Visual C++ 14.0 o

    2024年02月02日
    浏览(59)
  • 6WINDGate-overview

    Author:Once Day Date:2023年4月29日 本文是对6WIND官网文档的整理和翻译,仅供学习和研究之用,原始文章可参考下面文档 : 6WINDGate Documentation - 6WIND 6WINDGate Modules — 6WINDGate Modules 5.6.2 documentation 1.概述 6WIND通过帮助客户从昂贵的专有硬件迁移到软件网络设备,引领技术创新。在

    2024年02月02日
    浏览(25)
  • LangChain手记 Overview

    整理并翻译自DeepLearning.AI×LangChain的官方课程:Overview LangChain是为大模型应用开发设计的开源框架 LangChain目前提供Python和JavaScript(TypeScript)两种语言的包 LangChain的主攻方向是聚合和模块化 核心附加值: 模块化的组件 用例:针对常见组合组件的方式提供了简单易用的模板

    2024年02月13日
    浏览(25)
  • pip install pycrypto 报错 error: command ‘C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\

    1、pip install pycrypto报错如下 error: command \\\'C:\\\\Program Files (x86)\\\\Microsoft Visual Studio 14.0\\\\VC\\\\BIN\\\\x86_amd64\\\\cl.exe\\\' failed with exit code 2 2、搞了半天,又是下载安装 Microsoft Visual Studio 14.0 又是安装 Visual C++ Build Tools 。还是没搞定 3、谷歌一圈,百度一圈最后找到个可以解决的 参考: https:

    2024年02月11日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包