我正在寻找一个 PowerShell 脚本,它将在服务器上的所有共享中搜索通配符*_HELP_instructions*
. 它将搜索的文件示例是12_HELP_INSTRUCTIONS.txt
或22_HELP_INSTRUCTIONS.html
。
到目前为止,我有下面的脚本将搜索 C:\ 的内容,但我需要一个可以设置为搜索服务器共享的脚本。
$FilesToSearch = Get-ChildItem "C:\*" -Recurse -ErrorAction SilentlyContinue |
where {$_.Name -like "*_HELP_instructions*"}
if ($FilesToSearch -ne $null) {
Write-Host "System Infected!"
exit 2015
} else {
Write-Host "System Not Infected!"
exit 0
}