谷歌浏览器诊断服务器禁用

谷歌浏览器诊断服务器禁用,第1张

1、首先检查一下在地址栏使用的是不是谷歌搜索引擎,只是由于该浏览器器默认使用的是谷歌搜索引擎,而国内的网络环境无法正常打开该搜索引擎,是就进行更换。
2、若是更换了搜索引擎之后依旧是不能解决这个问题,还可以在网络上下载谷歌一键修复工具进行修复。
3、确定不是浏览器问题之后,你可以尝试将网络关闭,如果是WiFi可以先将WiFi功能关闭,然后再连接。

QL
Server
PowerShell
(SQLPSexe)
实用工具会启动一个
PowerShell
会话,并加载和注册
SQL
Server
PowerShell
提供程序和
cmdlets。当运行
PowerShell
(PowerShellexe)
而非
SQL
Server
PowerShell
时,首先请执行以下语句以便手动加载所需的程序集。
#
Load
the
assemblies
[reflectionassembly]::LoadWithPartialName("MicrosoftSqlServerSmo")
[reflectionassembly]::LoadWithPartialName("MicrosoftSqlServerSqlWmiManagement")
下面的脚本会启用协议若要禁用协议,请将
IsEnabled
属性设置为
$false。
使用
SQL
Server
PowerShell
启用服务器网络协议
使用管理员权限打开一个命令提示符。
若要启动
SQL
Server
PowerShell,请在命令提示符处键入
sqlpsexe。
执行以下语句以启用
TCP

Named
Pipes
协议。将
<computer_name>
替换为运行
SQL
Server
的计算机的名称。如果您在配置命名实例,请将
MSSQLSERVER
替换为该实例的名称。
$smo
=
'MicrosoftSqlServerManagementSmo'
$wmi
=
new-object
($smo
+
'WmiManagedComputer')
#
List
the
object
properties,
including
the
instance
names
$Wmi
#
Enable
the
TCP
protocol
on
the
default
instance
$uri
=
"ManagedComputer[@Name='<computer_name>']/
ServerInstance[@Name='MSSQLSERVER']/ServerProtocol[@Name='Tcp']"
$Tcp
=
$wmiGetSmoObject($uri)
$TcpIsEnabled
=
$true
$TcpAlter()
$Tcp
#
Enable
the
named
pipes
protocol
for
the
default
instance
$uri
=
"ManagedComputer[@Name='<computer_name>']/
ServerInstance[@Name='MSSQLSERVER']/ServerProtocol[@Name='Np']"
$Np
=
$wmiGetSmoObject($uri)
$NpIsEnabled
=
$true
$NpAlter()
$Np
为本地计算机配置协议
当脚本在本地运行并配置本地计算机时,SQL
Server
PowerShell
可以通过动态确定本地计算机的名称使脚本更为灵活。若要检索本地计算机的名称,请将设置
$uri
变量的行替换为以下行。
$uri
=
"ManagedComputer[@Name='"
+
(get-item
env:\computername)Value
+
"']/ServerInstance[@Name='MSSQLSERVER']/ServerProtocol[@Name='Tcp']"
使用
SQL
Server
PowerShell
重新启动数据库引擎
启用或禁用了协议后,必须停止并重新启动数据库引擎才能使更改生效。执行以下语句,通过使用
SQL
Server
PowerShell
来停止和启动默认实例。若要停止和启动命名实例,请将
'MSSQLSERVER'
替换为
'MSSQL$<instance_name>'。
#
Get
a
reference
to
the
ManagedComputer
class
CD
SQLSERVER:\SQL\<computer_name>
$Wmi
=
(get-item
)ManagedComputer
#
Get
a
reference
to
the
default
instance
of
the
Database
Engine
$DfltInstance
=
$WmiServices['MSSQLSERVER']
#
Display
the
state
of
the
service
$DfltInstance
#
Stop
the
service
$DfltInstanceStop();
#
Wait
until
the
service
has
time
to
stop
#
Refresh
the
cache
$DfltInstanceRefresh();
#
Display
the
state
of
the
service
$DfltInstance
#
Start
the
service
again
$DfltInstanceStart();
#
Wait
until
the
service
has
time
to
start
#
Refresh
the
cache
and
display
the
state
of
the
service
$DfltInstanceRefresh();
$DfltInstance

通过组策略实现:
1、开始-运行-输入gpeditmsc
2、计算机配置-管理模板-Windows组件-Internet Explorer
3、在右边找到”阻止变更代理设置“,双击选择”启用“
4、退出组策略编辑器
5、开始-运行-输入gpupdate /force /target:computer刷新组策略,没效果的话重启计算机。
因为我的系统为英文版,部分翻译可能不一致。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10573326.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-09
下一篇 2023-05-09

发表评论

登录后才能评论

评论列表(0条)

保存