powershell 检索用户文件夹中的未签名可执行文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 检索用户文件夹中的未签名可执行文件相关的知识,希望对你有一定的参考价值。

(gwmi Win32_UserProfile | ? { $_.SID -notmatch "S-1-5-(18|19|20).*" }).LocalPath | % { ls -Path $_ -Recurse -Filter "*.exe" } | % { Get-AuthenticodeSignature -FilePath $_.FullName } | ? { $_.Status -ne 'Valid' }

以上是关于powershell 检索用户文件夹中的未签名可执行文件的主要内容,如果未能解决你的问题,请参考以下文章

“未找到包含任何钥匙串签名证书的未过期配置文件”

Powershell自动填充数组

用于检索Office 365用户的同步类型的PowerShell方法?

Powershell检索用户登录名,而不是samAccountname

使用 Powershell 在 Outlook Web (OWA) 中更改签名

powershell 使用PowerShell从Web服务器检查证书签名算法。基于http://en-us.sysadmin中的Test-WebServerSSL cmdlet