Dit regelen Configureerert zorg ervoor dat require domain users to elevate Wanneer setting een networks location is set to Schakel ind via Microsoft Intune apparaat configuratie beleid of compliance policies om Windows endpoints te beveiligen volgens security best practices.
Vereisten
Microsoft Intune via device configuratiebeleidsregels
Implementeeratie
Gebruik PowerShell-script zorg ervoor dat-require-domain-users-to-elevate-when-setting-a-networks-location-is-set-to-enabled.ps1 (functie Invoke-Monitoring) – Monitoren.
monitoring
Gebruik PowerShell-script zorg ervoor dat-require-domain-users-to-elevate-when-setting-a-networks-location-is-set-to-enabled.ps1 (functie Invoke-Monitoring) – Controleren.
Remediatie
Gebruik PowerShell-script zorg ervoor dat-require-domain-users-to-elevate-when-setting-a-networks-location-is-set-to-enabled.ps1 (functie Invoke-Remediation) – Herstellen.
Compliance en Auditing
Beleid documentatie
Compliance & Frameworks
CIS M365: Control 18.9.19.2 (L1) - CIS Security Benchmark aanbevelingen
BIO: 16.01 - BIO Baseline Informatiebeveiliging Overheid - 16.01 - Gebeurtenissen logging en audittrails
ISO 27001:2022: A.12.4.1 - ISO 27001:2022 - Gebeurtenissen logging en audittrails
Automation
Gebruik het onderstaande PowerShell script om deze security control te monitoren en te implementeren. Het script bevat functies voor zowel monitoring (-Monitoring) als remediation (-Remediation).
PowerShell
<#
================================================================================
POWERSHELL SCRIPT - Nederlandse Baseline voor Veilige Cloud
================================================================================
.SYNOPSIS
zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind
.DESCRIPTION
Implementeert, monitort en herstelt: zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind
.NOTES
Filename: ensure-require-domain-users-to-elevate-when-setting-a-networks-location-is-set-to-enabled.ps1
Author: Nederlandse Baseline voor Veilige Cloud
Version: 1.0
Workload: intune
Category: security-options
#>
#Requires -Version 5.1
[CmdletBinding()]
param()
$ErrorActionPreference = 'Stop'
function Invoke-Implementation {
<#
.SYNOPSIS
Implementeert de configuratie
#>
[CmdletBinding()]
param()
Write-Host "[INFO] Invoke-Implementation - zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind" -ForegroundColor Cyan
Invoke-Remediation
}
function Invoke-Monitoring {
<#
.SYNOPSIS
Controleert de huidige configuratie status
#>
[CmdletBinding()]
param()
try {
Write-Host "
========================================" -ForegroundColor Cyan
Write-Host "zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind - Monitoring" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
# TODO: Implementeer monitoring logica voor zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind
Write-Host "[INFO] Monitoring check voor zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind" -ForegroundColor Yellow
Write-Host "[OK] Monitoring check completed" -ForegroundColor Green
}
catch {
Write-Error "Monitoring failed: $_"
throw
}
}
function Invoke-Remediation {
<#
.SYNOPSIS
Herstelt de configuratie naar de gewenste staat
#>
[CmdletBinding()]
param()
try {
Write-Host "
========================================" -ForegroundColor Cyan
Write-Host "zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind - Remediation" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
# TODO: Implementeer remediation logica voor zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind
Write-Host "[INFO] Remediation voor zorg ervoor dat Require Domain Users To Elevate Wanneer Setting een Networks Location Is Set To Schakel ind" -ForegroundColor Yellow
Write-Host "[OK] Remediation completed" -ForegroundColor Green
}
catch {
Write-Error "Remediation failed: $_"
throw
}
}