Public Service Announcement Issues

Hello,

I am currently doing the Public Service Announcement Challenge in the introduction to cybersecurity course I used the WMIC command recommended by the course to find the unquoted path (wmic service get name,pathname,startmode | findstr /i “auto” | findstr /i /v “c:\windows\” | findstr /i /v “”") but I got nothing can anybody help me find the path?

Perhaps the service is not under C:\Windows, try removing that from the command.

I am sorry but I am still getting the same result.

Look at the command you are issuing. You are piping “wmic service get name,pathname, startmode” though three filters. Try it without the findstr /i /v “C:\Windows\” filter.