2225abed9d
- Opdatér Get-DesktopPaths i alle 7 app-scripts: brug Get-ChildItem -Filter 'Desktop' -Depth 2 i stedet for Join-Path/Test-Path så OneDrive-omdirigeret Desktop også fanges - Tilføj -Exclude 'Public','Default' for at springe systemprofiler over - Komprimér og opdatér changelog i alle scripts med ny version - Fjern old_app/ (arkiveret v1.0 scripts) - Opdatér README.md og README.html
59 lines
2.0 KiB
PowerShell
59 lines
2.0 KiB
PowerShell
# ============================================================
|
|
# CHANGELOG
|
|
# v1.2 - Get-DesktopPaths: Depth 2 search for OneDrive Desktop
|
|
# v1.1 - AllUsers switch + Get-DesktopPaths helper
|
|
# v1.0 - Initial
|
|
# ============================================================
|
|
|
|
param(
|
|
[switch]$AllUsers
|
|
)
|
|
|
|
function Get-DesktopPaths {
|
|
if ($AllUsers) {
|
|
Get-ChildItem "$env:SystemDrive\Users" -Directory -Exclude "Public","Default" | ForEach-Object {
|
|
Get-ChildItem $_.FullName -Directory -Filter "Desktop" -Depth 2 -ErrorAction SilentlyContinue |
|
|
Select-Object -ExpandProperty FullName
|
|
}
|
|
} else {
|
|
[Environment]::GetFolderPath("CommonDesktopDirectory")
|
|
}
|
|
}
|
|
$certSubject = "CN=RDPSign"
|
|
|
|
# Check certificate exists in all three stores
|
|
$certInMy = Get-ChildItem Cert:\LocalMachine\My | Where-Object { $_.Subject -eq $certSubject }
|
|
$certInRoot = Get-ChildItem Cert:\LocalMachine\Root | Where-Object { $_.Subject -eq $certSubject }
|
|
$certInPub = Get-ChildItem Cert:\LocalMachine\TrustedPublisher | Where-Object { $_.Subject -eq $certSubject }
|
|
|
|
if (-not $certInMy -or -not $certInRoot -or -not $certInPub) {
|
|
exit 1
|
|
}
|
|
|
|
# Check registry thumbprint
|
|
$gpoPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services"
|
|
$thumbprintValue = (Get-ItemProperty -Path $gpoPath -Name "TrustedCertThumbprints" -ErrorAction SilentlyContinue).TrustedCertThumbprints
|
|
if ([string]::IsNullOrWhiteSpace($thumbprintValue)) {
|
|
exit 1
|
|
}
|
|
|
|
# Check that all RDP files on desktop(s) are signed
|
|
foreach ($desktopPath in (Get-DesktopPaths)) {
|
|
$rdpFiles = Get-ChildItem -Path $desktopPath -Filter "*.rdp" -ErrorAction SilentlyContinue
|
|
|
|
if ($rdpFiles.Count -eq 0) {
|
|
exit 1
|
|
}
|
|
|
|
foreach ($file in $rdpFiles) {
|
|
$content = Get-Content $file.FullName -ErrorAction SilentlyContinue
|
|
$hasSig = $content | Where-Object { $_ -match "^signature:s:" }
|
|
if (-not $hasSig) {
|
|
exit 1
|
|
}
|
|
}
|
|
}
|
|
|
|
Write-Host "Detected"
|
|
exit 0
|