通过Powershell去除Windows10开机启动项

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了通过Powershell去除Windows10开机启动项相关的知识,希望对你有一定的参考价值。

    批量去除Windows10系统中某个应用(以OneDrive为例)的开机启动项脚本如下:

reg query HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run | findstr "OneDrive"
if ($? -eq "True"){
    reg delete HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v OneDrive /f
}

    注:

    启动项路径还可能在注册表的以下路径中:

    "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run"
    "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" 
    "HKCU:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run"

    Windows10默认安全设置是不能执行powershell脚本,需要通过组策略开启执行powershell脚本执行或手动以管理员权限执行以下命令:

Set-ExecutionPolicy Unrestricted

   

本文出自 “Just do myself” 博客,请务必保留此出处http://liubin0505star.blog.51cto.com/5550456/1956738

以上是关于通过Powershell去除Windows10开机启动项的主要内容,如果未能解决你的问题,请参考以下文章

win10怎样打开PowerShell

ThinkPad开机显示gnu grub version 2.02如何去除?

win10怎样打开PowerShell

win10怎样打开PowerShell

SQL2008安装出错(Windows PowerShell未能安装)

win10怎样打开PowerShell