Voorkom Installation Of Devices Die Match These Device Ids Voorkom Installation Of Devices Met Drivers Die Match These Device Stel In Classes Is Set To Ingeschakeld
📅 2025-10-30
•
⏱️ 2 minuten lezen
•
🔴 Must-Have
💼 Management Samenvatting
Deze security regelen waarborgt de correcte configuratie van beveiligingsinstellingen op Windows endpoints.
Aanbeveling
IMPLEMENT
Risico zonder
High
Risk Score
7/10
Implementatie
2u (tech: 1u)
Van toepassing op:
✓ Windows
Deze instelling is onderdeel van de Windows security baseline en beschermt tegen bekende aanvalsvectoren door het afdwingen van veilige configuraties.
Dit regelen configureert Voorkom installation of devices die match these device ids Voorkom installation of devices met drivers die match these device Stel in classes is set to ingeschakeld via Microsoft Intune apparaat configuratie beleid of compliance policies om Windows endpoints te beveiligen volgens security best practices.
Vereisten
Microsoft Intune via device configuratiebeleidsregels
Implementatie
Gebruik PowerShell-script prevent-installation-of-devices-that-match-these-device-ids-prevent-installation-of-devices-using-drivers-that-match-these-device-setup-classes-is-set-to-enabled.ps1 (functie Invoke-Implementation) – Implementeren.
Gebruik PowerShell-script prevent-installation-of-devices-that-match-these-device-ids-prevent-installation-of-devices-using-drivers-that-match-these-device-setup-classes-is-set-to-enabled.ps1 (functie Invoke-Monitoring) – Monitoren.
monitoring
Gebruik PowerShell-script prevent-installation-of-devices-that-match-these-device-ids-prevent-installation-of-devices-using-drivers-that-match-these-device-setup-classes-is-set-to-enabled.ps1 (functie Invoke-Monitoring) – Controleren.
Remediatie
Gebruik PowerShell-script prevent-installation-of-devices-that-match-these-device-ids-prevent-installation-of-devices-using-drivers-that-match-these-device-setup-classes-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
Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld
.DESCRIPTION
Implementeert, monitort en herstelt: Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld
.NOTES
Filename: prevent-installation-of-devices-that-match-these-device-ids-prevent-installation-of-devices-using-drivers-that-match-these-device-setup-classes-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 - Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld" -ForegroundColor Cyan
Invoke-Remediation
}
function Invoke-Monitoring {
<#
.SYNOPSIS
Controleert de huidige configuratie status
#>
[CmdletBinding()]
param()
try {
Write-Host "
========================================" -ForegroundColor Cyan
Write-Host "Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld - Monitoring" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
# TODO: Implementeer monitoring logica voor Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld
Write-Host "[INFO] Monitoring check voor Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld" -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 "Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld - Remediation" -ForegroundColor Cyan
Write-Host "========================================" -ForegroundColor Cyan
# TODO: Implementeer remediation logica voor Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld
Write-Host "[INFO] Remediation voor Voorkom Installation Of Devices die Match These Device Ids Voorkom Installation Of Devices met Drivers die Match These Device Stel in Classes Is Set To ingeschakeld" -ForegroundColor Yellow
Write-Host "[OK] Remediation completed" -ForegroundColor Green
}
catch {
Write-Error "Remediation failed: $_"
throw
}
}