How to delete SynTp.sys Driver from Command Prompt

Anonymous
2023-10-23T14:03:19+00:00

As stated in the question, I simply need to delete SynTp.sys. For a while now, I have been having problem with BSOD's coming from this driver.

I have a windows 11 laptop, and I use it as a pc, so I close the lid and attach a moniter and mouse/keyboard. As such, I dont care about the Touchpad driver and make it practice to open Device manager every fresh boot to delete the device and driver. This prevents a BSOD the next time I boot up. However, I prevoisly forgot to delete this device/driver, and am stuck in a loop of BSOD's. Booting into safe mode does not work.

I do have access to advanced options, and can access CMD. I have also ran sfc /scannow, no help.

Q--- What command line do I need to delete SynTp.sys driver thru Command Prompt?

Thanks for all help, in advance

Windows for home | Windows 11 | Devices and drivers

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes

5 answers

Sort by: Most helpful
  1. DaveM121 816.4K Reputation points Independent Advisor
    2023-10-23T14:40:07+00:00

    Hi, I am Dave, I will help you with this.

    You need to find the OEM driver name first before you can delete that driver in Command Prompt

    1

    In Command Prompt run this command:

    pnputil.exe -e

    That will produce a list of the drivers, look for that Synaprics driver, you should also see the OEM driver name, it will look something like OEM68.inf note that down (like in the image below)

    2

    When you have found the OEM name of the driver, run this command (replace XX with the correct number of the driver name)

    pnputil.exe –f –d oemXX.inf

    .

    1 person found this answer helpful.
    0 comments No comments
  2. MR_MEOW 3,521 Reputation points
    2023-10-23T14:40:55+00:00

    I Would not delete this as it is a .sys file "system file" The command would be

    cmd.exe

    del C:\Windows\System32\drivers\SynTp.sys

    I Would at least make a copy the file just in case.

    I Would do

    cmd.exe

    notepad.exe

    Choose open Use the drop down bar show all files.

    0 comments No comments
  3. VARADHARAJAN K 9,541 Reputation points Volunteer Moderator
    2023-10-23T14:43:19+00:00

    take ownership of files and folders and find the file, delete it manually

    SynTp.sys might be inside this location *C:\Windows\System32\drivers*

    take ownership of files and folders and find the file might be located in subfolders, you need to open the folder and find the file , delete manually

    or under this location *C:\Windows\System32\DriverStore\FileRepository*

    0 comments No comments
  4. Anonymous
    2023-10-23T17:29:05+00:00

    Thank you all for a response, but to ask Raju, Could you please give each command required to take ownership, and then delete the files?

    Thank yiu

    0 comments No comments
  5. VARADHARAJAN K 9,541 Reputation points Volunteer Moderator
    2023-10-23T17:44:40+00:00

    a) take ownership of files

    takeown.exe /f filename

    icacls.exe filename /grant administrators:F

    example

    takeown.exe /f "C:\Windows\System32\drivers\SynTp.sys"

    icacls.exe "C:\Windows\drivers\SynTp.sys" /grant administrators:F


    take ownership of folders

    takeown.exe /f foldername /r /d y

    icacls.exe foldername /grant administrators:F /t

    example

    takeown.exe /f "C:\Windows\System32\drivers" /r /d y

    icacls.exe "C:\Windows\System32\drivers" /grant administrators:F /t


    0 comments No comments