Microsoft Windows Virtual Machine For Mac

2021. 5. 27. 03:30카테고리 없음

  1. 最新发布! 在 Mac 上运行 Windows Parallels Desktop 15 for Mac 更适合最新 Windows 10 更新和支持 macOS Catalina (10.15) 玩 PC 游戏,并运行要求苛刻的图形软件 使用基于 Windows 的会计和交易软件.
  2. 2018-11-26  First you connect to the virtual machine, and then you sign on. 若要从 Mac 连接到 Windows VM,需要为 Mac 安装 RDP 客户端,例如 Microsoft 远程桌面。To connect to a Windows VM from a Mac, you will need to install an RDP client for Mac such as.
  3. Oct 17, 2019 Tutorial to Install Mac OS on Windows using VMware Workstation. If you face any driver issues, Try installing VMware tools from the VM tab in the VMware window. Also, I would recommend assigning a minimum of 4GB RAM and 40GB of Hard Disk to your Virtual Machine.
-->

Applies to: macOS 10.12 or later

Feb 14, 2011 Windows Virtual PC is the latest Microsoft virtualization technology. You can use it to run more than one operating system at the same time on one computer, and to run many productivity applications on a virtual Windows environment, with a single click, directly from a computer running Windows 7. The VirtualBox software that allows for the creation of a virtual machine (VM) on a mac. Create a new Windows 10 VM using VirtualBox. Install Office 365 on the Windows 10 VM. Office 365 includes applications like Access, Excel and Word. Install software updates. This will patch Windows 10 and other Microsoft software, like Office 365, to ensure everything is up to date. Adding a virtual machine to a computer is a complex, intensive process.

You can access Windows Virtual Desktop resources from your macOS devices with our downloadable client. This guide will tell you how to set up the client.

Install the client

To get started, download and install the client on your macOS device.

Subscribe to a feed

Subscribe to the feed your admin gave you to get the list of managed resources available to you on your macOS device.

To subscribe to a feed:

  1. Select Add Workspace on the main page to connect to the service and retrieve your resources.
  2. Enter the Feed URL. This can be a URL or email address:
    • If you use a URL, use the one your admin gave you. Normally, the URL is https://rdweb.wvd.microsoft.com.
    • To use email, enter your email address. This tells the client to search for a URL associated with your email address if your admin configured the server that way.
  3. Select Add.
  4. Sign in with your user account when prompted.

After you've signed in, you should see a list of available resources.

Once you've subscribed to a feed, the feed's content will update automatically on a regular basis. Resources may be added, changed, or removed based on changes made by your administrator.

Next steps

To learn more about the macOS client, check out the Get started with the macOS client documentation.

-->

若要以快速一致的方式配置虚拟机 (VM),可以使用适用于 Windows 的自定义脚本扩展。To configure virtual machines (VMs) in a quick and consistent manner, you can use the Custom Script Extension for Windows.本教程介绍如何执行下列操作:In this tutorial you learn how to:

  • 使用自定义脚本扩展安装 IISUse the Custom Script Extension to install IIS
  • 创建使用自定义脚本扩展的 VMCreate a VM that uses the Custom Script Extension
  • 在应用扩展后查看正在运行的 IIS 站点View a running IIS site after the extension is applied

启动 Azure Cloud ShellLaunch Azure Cloud Shell

Azure Cloud Shell 是免费的交互式 shell,可以使用它运行本文中的步骤。The Azure Cloud Shell is a free interactive shell that you can use to run the steps in this article.它预安装有常用 Azure 工具并将其配置与帐户一起使用。It has common Azure tools preinstalled and configured to use with your account.

若要打开 Cloud Shell,只需要从代码块的右上角选择“试一试”。 To open the Cloud Shell, just select Try it from the upper right corner of a code block.也可以通过转到 https://shell.azure.com/powershell 在单独的浏览器标签页中启动 Cloud Shell。You can also launch Cloud Shell in a separate browser tab by going to https://shell.azure.com/powershell.选择“复制”以复制代码块,将其粘贴到 Cloud Shell 中,然后按 Enter 来运行它。 Select Copy to copy the blocks of code, paste it into the Cloud Shell, and press enter to run it.

自定义脚本扩展概述Custom script extension overview

自定义脚本扩展在 Azure VM 上下载和执行脚本。The Custom Script Extension downloads and executes scripts on Azure VMs.此扩展适用于部署后配置、软件安装或其他任何配置/管理任务。This extension is useful for post deployment configuration, software installation, or any other configuration / management task.可以从 Azure 存储或 GitHub 下载脚本,或者在扩展运行时会脚本提供给 Azure 门户。Scripts can be downloaded from Azure storage or GitHub, or provided to the Azure portal at extension run time.

自定义脚本扩展与 Azure 资源管理器模板集成,也可以使用 Azure CLI、PowerShell、Azure 门户或 Azure 虚拟机 REST API 来运行它。The Custom Script extension integrates with Azure Resource Manager templates, and can also be run using the Azure CLI, PowerShell, Azure portal, or the Azure Virtual Machine REST API.

自定义脚本扩展适用于 Windows 和 Linux VM。You can use the Custom Script Extension with both Windows and Linux VMs.

Virtual Machine For Mac Free

创建虚拟机Create virtual machine

使用 Get-Credential 设置 VM 的管理员用户名和密码:Set the administrator username and password for the VM with Get-Credential:

Microsoft windows virtual machine for mac to run windows

现在,可使用 New-AzVM 创建 VM。Now you can create the VM with New-AzVM.以下示例在“EastUS”位置 创建一个名为 myVM 的 VM。The following example creates a VM named myVM in the EastUS location.如果资源组 myResourceGroupAutomate 和支持的网络资源不存在,则会创建它们。If they do not already exist, the resource group myResourceGroupAutomate and supporting network resources are created.此 cmdlet 还打开端口 80,目的是允许 Web 流量。To allow web traffic, the cmdlet also opens port 80.

创建资源和 VM 需要几分钟的时间。It takes a few minutes for the resources and VM to be created.

自动安装 IISAutomate IIS install

Java Virtual Machine For Mac Os

使用 Set-AzVMExtension 安装自定义脚本扩展。Use Set-AzVMExtension to install the Custom Script Extension.该扩展运行 powershell Add-WindowsFeature Web-Server 以安装 IIS Web 服务器,并更新“Default.htm” 页以显示 VM 的主机名:The extension runs powershell Add-WindowsFeature Web-Server to install the IIS webserver and then updates the Default.htm page to show the hostname of the VM:

Microsoft Windows Virtual Machine For Mac To Run Windows

Windows 7 virtual machine download

测试网站Test web site

使用 Get-AzPublicIPAddress 获取负载均衡器的公共 IP 地址。Obtain the public IP address of your load balancer with Get-AzPublicIPAddress.以下示例获取前面创建的“myPublicIPAddress” 的 IP 地址:The following example obtains the IP address for myPublicIPAddress created earlier:

然后,可将公共 IP 地址输入 web 浏览器中。You can then enter the public IP address in to a web browser.随即显示网站,包括负载均衡器将流量分发到的 VM 的主机名,如下例所示:The website is displayed, including the hostname of the VM that the load balancer distributed traffic to as in the following example:

后续步骤Next steps

在本教程中,会在 VM 上自动执行 IIS 安装。In this tutorial, you automated the IIS install on a VM.你已了解如何执行以下操作:You learned how to:

  • 使用自定义脚本扩展安装 IISUse the Custom Script Extension to install IIS
  • 创建使用自定义脚本扩展的 VMCreate a VM that uses the Custom Script Extension
  • 在应用扩展后查看正在运行的 IIS 站点View a running IIS site after the extension is applied

转到下一教程,了解如何创建自定义 VM 映像。Advance to the next tutorial to learn how to create custom VM images.