我曾经使用谷歌DNS服务器,即8.8.8.8
和8.8.4.4
,但我无法访问某些网站。然后我决定使用 Quad9 DNS 作为我的备用 DNS 服务器:
现在这些网站都可以访问了,但我想知道使用混合 DNS 服务器是否可以。
我的 Windows 10 PC 上有两个用户配置文件,一个开发人员配置文件和一个常规配置文件。在开发人员配置文件中,我运行了一个.reg
文件以添加一个上下文菜单项,该菜单项打开一个带有活动 Git Bash 提示符的 Windows 终端实例。
令我惊讶的是,另一个 Windows 配置文件中的上下文菜单也显示了新的菜单选项,但是当单击它时,它显示一个错误,指出它无法访问指定的路径或文件。这是因为我没有在常规配置文件中安装 Windows 终端。在常规配置文件中删除相关注册表项也会从开发人员配置文件的上下文菜单中删除菜单项。
两个配置文件之间是否共享相同的 Windows 注册表并导致这种情况发生?如果是这样,我怎样才能为每个用户配置文件设置一个单独的注册表?
注册文件:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\windowsterminal]
@="Open Windows Terminal Here"
"Icon"="%USERPROFILE%\\AppData\\Local\\WTerminal\\terminal.ico"
[HKEY_CLASSES_ROOT\Directory\Background\shell\windowsterminal\command]
@="wt new-tab --profile \"Git Bash\" --startingDirectory ."
如果使用 Windows 10 的内置虚拟桌面:是否可以在所有桌面上显示一个窗口,而不仅仅是在一个桌面上?
如何使用 Microsoft Word 2016(或任何其他版本)插入 ©(版权符号)?
安装新显卡后,我收到警告弹出框“您目前正在使用 RemoteFX 3D 视频适配器。我们不再支持此适配器...”。
我试图打开此消息中提供的链接:https: //support.microsoft.com/en-us/help/4570006/update-to-disable-and-remove-the-remotefx-vgpu-component
但它似乎描述了一个应该禁用此功能的 Windows 更新。不是如何手动禁用它。
谷歌搜索产生了两个结果——Remove-VMRemoteFx3dVideoAdapter
这不适用于我的情况——我的机器上运行着 Hyper-V,但我没有虚拟机。此命令适用于 VM。
另一个 - Disable-VMRemoteFXPhysicalVideoAdapter
- 它需要名称。所以我先跑了:
PS C:\Windows\system32> Get-VMRemoteFXPhysicalVideoAdapter
WARNING: We no longer support the RemoteFX 3D video adapter. If you are still using this adapter, you may become
vulnerable to security risks. Learn more (https://go.microsoft.com/fwlink/?linkid=2131976)
Id : pci#ven_10de&dev_1d01&subsys_375d1458&rev_a1#4&2ae1b128&0&0019
Name : NVIDIA GeForce GT 1030
GPUID : 4318_7425_928846936_161
TotalVideoMemory : 36392450048
AvailableVideoMemory : 36392450048
DedicatedSystemMemory : 0
DedicatedVideoMemory : 2078662656
SharedSystemMemory : 34313787392
Enabled : False
CompatibleForVirtualization : True
DirectXVersion : 12.1
PixelShaderVersion : 5.0
DriverProvider : NVIDIA
DriverDate : 2019-07-24 02:00:00Z
DriverInstalledDate : 2019-07-24 02:00:00Z
DriverVersion : 26.21.14.3200
DriverModelVersion : 2.6
CimSession : CimSession: .
ComputerName : xxxxx
IsDeleted : False
然后:
PS C:\Windows\system32> Disable-VMRemoteFXPhysicalVideoAdapter -Name "NVIDIA GeForce GT 1030"
WARNING: We no longer support the RemoteFX 3D video adapter. If you are still using this adapter, you may become
vulnerable to security risks. Learn more (https://go.microsoft.com/fwlink/?linkid=2131976)
我的操作系统是 W10 v 2004 build 19041.572,Windows Update 显示一切都是最新的..
如何确保此“RemoteFX 3D”已安全禁用?
我在 WIN10 机器上的 WSL2 中运行 SSH 服务器。为了完成这项工作,我正在使用:
netsh interface portproxy add v4tov4 listenaddress=0.0.0.0 listenport=22 connectaddress=172.19.237.178 connectport=22
这最初工作正常。172.19.237.178
是 WSL2 虚拟机的 IP。
只有一个问题。我将 sshd 设置为在 PC 启动时运行,并且每次启动机器时 WSL2 都有不同的 IP。有没有办法将 WSL2 配置为使用静态 IP?
编辑:有关确定 WSL 机器 IP 的解决方法,请参阅此问题。