询问者
关于搜索栏异常问题

问题
-
现有一台PC,刚开机时可以使用搜索栏,用了一会儿再点击搜索栏就没反应了,已经使用过powershell语句修复,但还是没有反应,注销或重启就可以使用了,在同一域控内的其他PC机没有出现这样的现象。PC配置是I5 4590/8G/1TB/独显,请问这个问题如何解除?
[Powershell]语句
$manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + '\AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Get-AppXPackage -AllUsers |Where-Object {$_.InstallLocation -like "*SystemApps*"}
- 已编辑 MichaelTamMT 2020年9月14日 4:36 补充完整资料
全部回复
-
您好,
您可以先参考以下链接中的方法进行问题排查和修复。
Fix problems in Windows Search
Thanks,
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.- 已建议为答案 Elevenyh 2020年9月28日 7:34
-
您好,
请问您的问题有得到解决吗?我们的回复是否对您有所帮助。
如果有其他疑问,您可以随时与我们沟通联系。
Thanks,
Eleven
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
您好,
请问您的问题解决了吗?
Thanks,
Eleven
Please remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com. -
您好,
脚本不能运行可能是因为PowerShell执行策略默认设置为“受限”。您可以使用Set-ExecutionPolicycmdlet更改PowerShell执行策略。要运行外部脚本,请将策略设置为RemoteSigned。
PS C:\> Set-ExecutionPolicy RemoteSigned
Thanks,
ElevenPlease remember to mark the replies as answers if they help.
If you have feedback for TechNet Subscriber Support, contact tnmff@microsoft.com.