Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,25 @@ Validate-NDES Configuration is a support script to validate the on-premises Netw
To run this tool, open an elevated PowerShell window (right-click, "Run as administrator..."), create a temporary folder, then run these three commands:

wget https://aka.ms/NDESValidatorPS1 -outfile NDESValidator.ps1
wget https://aka.ms/NDESValidatorcsv -outfile ResultMessages.csv
PowerShell -ExecutionPolicy Bypass -File .\NDESValidator.ps1

or while in Test Phase ( Updated by Thiago Beier 2025-06-09 ) Straight from https://github.com/thiagogbeier/Validate-NDESConfiguration GitHub repo

Invoke-WebRequest https://raw.githubusercontent.com/thiagogbeier/Validate-NDESConfiguration/refs/heads/main/Validate-NDESConfiguration.ps1 -OutFile NDESValidator.ps1
PowerShell -ExecutionPolicy Bypass -File .\NDESValidator.ps1

_Server has Intune Certificate Connector with MSA_

<img src="ndes-gmsa.png" width="800" />

_Server has Intune Certificate Connector with Local Service Account_

<img src="ndes-localaccount.png" width="800" />

_Server has not Intune Certificate Connector fully installed_

<img src="ndes-notInstalled.png" width="800" />

(Hint: You can copy and paste the commands from this page and paste them directly in to the PowerShell window.

The first line downloads the NDESValidator PowerShell Script. The second line downloads the CSV for the HTML output and the third line runs the script.
Expand Down
Loading