PowerShell로 명령어 찾기

조회 1,869 · 댓글 0
아주라작성자2017년 4월 4일
Get-Command -CommandType application | Where {$_.name -like "*.msc"}


Get-Command -CommandType application | Where {$_.name -like "disk*.msc"}


Get-Command -CommandType application | Where {$_.name -like "*.exe"}


Get-Command -CommandType application | Where {$_.name -like "*.cpl"}

로그인 후 답글을 남길 수 있습니다.