### 조건
1. 큰 따옴표로 둘러쌓이지 않고 경로 내에 공백이 존재하는 `ImagePath` 속성을 가진 서비스
2. 공백이 존재하는 서비스 경로 디렉토리에 파일 쓰기 권한이 있어야 함.
3. 서비스를 재시작하거나 호스트를 재시작할 권한이 있어야 함.
`ImagePath` 속성을 가진 서비스가 있는지 확인
```powershell
# PowerShell
Get-WmiObject Win32_Service | Where-Object { $_.StartMode -eq 'Auto' -and $_.PathName -notlike 'C:\\Windows\\*' -and $_.PathName -notmatch '^\\s*\\".*\\".*