반응형
$a = Get-ScheduledTask | Where-Object {$_.Author -like "*AuthorName*" } # 특정 만든이의 작업 찾기
foreach ($c in $a)
{
echo $c.TaskName # TaskName 확인
Unregister-ScheduledTask -TaskName $c.TaskName -Confirm:$False # 스케줄 삭제
}
반응형
'programming language > powershell' 카테고리의 다른 글
Windows 10 오피스허브 삭제 Powershell 스크립트 (0) | 2021.09.12 |
---|---|
Powershell 날짜 간격 계산 (0) | 2020.01.14 |
Powershell 대소문자 찍기 Alphabet-Upper, Alphabet-Lower (0) | 2019.10.15 |
Powershell switch case regular expression 사용 (0) | 2019.07.14 |
Windows 7 Powershell version update (0) | 2019.04.29 |
Powershell 스크립트 실행 시간 측정 (0) | 2019.04.22 |
Powershell string to Ascii Code (0) | 2019.04.17 |
Powershell Tuple 사용 방법 System.Tuple .NET Framework class (0) | 2019.04.08 |
댓글