首页 > 系统相关 >[CLI] Power Shell 删除指定驱动

[CLI] Power Shell 删除指定驱动

时间:2022-08-31 13:34:15浏览次数:69  
标签:Shell CLI Power drivers driver 驱动 select

场景:开内核隔离 CORE-ISOLATION 时候发现西数驱动造成无法开启内核隔离,需要删除西数驱动  wdcsam

 

1. RIGHT click on the START button and select WINDOWS TERMINAL (ADMIN)

If you are on Windows 10, select POWERSHELL (ADMIN)

2. You can then list all of the drivers on your computer using pnputil /enum-drivers and find the one with WDCSAM64_PREWIN8.SYS or you can just look at the error message.  In my case the driver that needs to go is OEM26.INF

3 Uninstall the driver using pnputil /delete-driver oem<XX>.inf

标签:Shell,CLI,Power,drivers,driver,驱动,select
From: https://www.cnblogs.com/avatusxan/p/16642790.html

相关文章

  • shell中字符串和引号("",''.``的区分)
    场景1:变量为字符串类型,引用变量时添加引号等的区分【概念】变量的引用主要包含四类:双引号引用、单引号引用、反引号引用、反斜线引用""双引号......
  • Power Shell
    Code:$Path="C:\Users\xxxx\Downloads\New";$filename="$Path\c.txt";#createfileifitdoesnotexistif(-not(Test-Path$filename)){New-Item-ItemTyp......
  • esp32 tcpclient 重启
    xTaskCreate((TaskFunction_t)app_tcp_client,(constchar*)"app_tcp_client",(uint16_t)TCP_SERVER_TASK_STK_SIZE,......
  • ARM Power Management总结
    Background许多ARM系统都是由电池供电的移动设备,对续航和散热有很高要求。如果不是电池供电,其实也同样对节能和散热等环境有一定要求。因此低功耗对ARM系统来说是非常重要......
  • 打开Eclipse时提示“JVM is not suitable for this product”问题的解决
    今天打开Eclipse时弹出一个错误提示,无法正常打开。“Version1.8.0_131oftheJVMisnotsuitableforthisproduct.Version:11orgreaterisrequired.”之前印象......
  • 反弹shell
    参考文章:https://cloud.tencent.com/developer/article/1818091一些概念原理:反弹shell,就是攻击机监听在某个TCP/UDP端口为服务端,目标机主动发起请求到攻击机监听的端口,......
  • linux shell 中"2>&1"含义
    问题:在编译安卓操作系统的代码时候,一连需要10几个小时,为记录编译过程中间可能出问题,便于调试。需要把编译过程输出到文件。这样也可以设置自动关机了。  解决方案:编......
  • CCPC Qinhuangdao 2020 K, Kingdom's Power做题思路
    首先,对于一个子树,我们显然只有两种去让军队走过他的办法,一种是从兄弟节点调一些军队来,另一种是从根节点推过来。感觉有一个结论,就是我这个位置如果用兄弟节点推过来的只是......
  • shell编程【一】
    参考网址:【Linux命令大全】[]:https://linux265.com/course/linux-commands.html为什么要学习shell指令?学习shell指令的本身也是在了解Linux系统。shell是开发出来更好地......
  • SpringBoot在@PostConstruct方法中调用FeignClient加载不到Hystrix配置问题
    版本信息spring-cloud-starter-openfeign:2.1.3.RELEASEspring-boot-starter-parent:2.2.2.RELEASE问题描述@Service类@Autowired了一个@FeignClient,在@PostConstruc......