本文档介绍如何使用 PowerShell 连接到 Windows 虚拟机实例。
准备工作
-
设置身份验证(如果尚未设置)。身份验证是通过其进行身份验证以访问 Google Cloud 服务和 API 的过程。如需从本地开发环境运行代码或示例,您可以按如下方式向 Compute Engine 进行身份验证。
Select the tab for how you plan to use the samples on this page:
Console
When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.
gcloud
-
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
- Set a default region and zone.
如果尚未在远程 Windows 实例上创建用户名和密码,请创建或重置 Windows 密码。
添加一条防火墙规则,该规则必须在 Windows Server 实例所在的 Google Cloud VPC 网络上打开端口
5986
。在本地工作站上,打开 PowerShell 终端。
可选:您可以初始化变量以保留用户凭据,这样您就无需在每次连接到实例时输入这些凭据。如果您跳过此步骤,系统之后会提示您输入用户名和密码。
$credentials = Get-Credential
IP_ADDRESS
:您要连接的实例的 IP 地址、DNS 名称或 Windows 计算机名称。SCRIPT
:需要在远程实例上运行的一个或多个命令。例如,指定Get-EventLog -log "Windows PowerShell"
可获取日志事件列表。- 了解如何针对项目或组织中的多个用户管理对实例的访问权限。
- 安全地连接到虚拟机实例。
- 将文件传输到 Linux 实例。
使用 PowerShell 进行连接
如果您拥有带 PowerShell 的 Windows 工作站,可以通过远程 PowerShell 会话连接到 Windows Server 实例。
建立交互式 PowerShell 会话
如需建立 PowerShell 会话,请运行以下命令:
Enter-PSSession -ComputerName IP_ADDRESS -UseSSL -SessionOption (New-PSSessionOption -SkipCACheck -SkipCNCheck) -Credential $credentials
将
IP_ADDRESS
替换为您要连接的实例的外部 IP 地址、DNS 名称或 Windows 计算机名称。连接后,命令提示符将更改为包含远程 Windows 实例的 IP 地址。现在,您就可以使用此终端在远程 Windows Server 实例上运行 PowerShell 命令。
以远程方式调用 Windows Server 虚拟机上的命令
作为
Enter-PSSession
命令的替代方法,您可以运行带有-ScriptBlock
标志的Invoke-Command
,在远程实例上执行 PowerShell 命令,而无需建立交互式会话。Invoke-Command -ComputerName IP_ADDRESS -ScriptBlock { SCRIPT } -UseSSL -SessionOption (New-PSSessionOption -SkipCACheck -SkipCNCheck) -Credential $credentials
请替换以下内容:
后续步骤
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-11-21。
-