Files
Intune/intune/Externally Sourced Remediations/Miscellaneous/Get-SoftwareDistributionFolderPT2/Detect-Reset-SoftwareDistributionFolder.ps1
2025-05-19 15:19:36 -04:00

7 lines
152 B
PowerShell

if (Test-Path C:\Windows\SoftwareDistribution.old)
{Write-Output "Folder Exist"
exit 1
} else {
Write-Output "Folder Doesnt Exists"
exit 0
}