파일, 폴더, 레지스트리 키 및 하위 키를 삭제합니다. 이 명령어는 PowerShell을 통해서만 사용할 수 있습니다. 더 많은 정보: https://learn.microsoft.com/powershell/module/microsoft.powershell.management/remove-item.
Remove-Item {{경로\대상\파일_또는_키1 , 경로\대상\파일_또는_키2 ...}}
Remove-Item -Force {{경로\대상\파일1 , 경로\대상\파일2 ...}}
Remove-Item -Confirm {{경로\대상\파일_또는_키1 , 경로\대상\파일_또는_키2 ...}}
Remove-Item -Recurse {{경로\대상\파일_또는_디렉토리1 , 경로\대상\파일_또는_디렉토리2 ...}}
Remove-Item -Recurse {{경로\대상\키1 , 경로\대상\키2 ...}}
Remove-Item -WhatIf {{경로\대상\파일1 , 경로\대상\파일2 ...}}