Table of Contents

Total Page:16

File Type:pdf, Size:1020Kb

Table of Contents Table Of Contents Windows 10 Manageability Tips & Tricks Deploying Windows 10: Part 1 . page 2 Deploying Windows 10: Part 2 . page 8 Upgrade to Windows 10: ConfigMgr Task Sequence. page 12 ConfigMgr 1511 – Windows 10 Improvements . page 13 Windows 10: Security Enhancements . page 15 Windows as a Service: Keep Windows 10 Up-to-Date . page 17 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 1 Deploying Windows 10: Part 1 This next series of posts will deal with deploying Windows 10 from ConfigMgr and MDT. I will be using the latest versions of all software: Windows 10 v1511, ConfigMgr 1511 and MDT 2013 Update 1. Part one will focus on creating your reference image, part two will focus on capturing and deploying your image with ConfigMgr 1511. Creating your reference image is not that much different from Windows 8.1. You can configure a default profile, install any applications that you need, and configure the OS using many of the same methods. This series will simply serve as a guide to doing all of this, and will include some best practices as well as my recommendations. I will be using Windows 10 Enterprise 64-bit for my reference image. Installing Windows 10 I always recommend creating reference images on a virtual machine platform that can do snapshots or checkpoints. I come from the VMware world, so I will refer to them as snapshots throughout this series, but the terms are interchangeable. You can use snapshots throughout the process of creating your reference image if you make a mistake. Most importantly for me, however, is being able to take a snapshot before capturing the image. This allows me to revert back after sysprep, which is helpful for running future updates, because I do not have to build the reference from scratch. Default Profile Configuration In order to configure a default profile, you must boot your installation into audit mode before completing the out-of-box experience (OOBE). 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 2 Deploying Windows 10: Part 1 To do this, press CRTL+SHIFT+F3 on this screen: The machine reboots and logs into the built-in administrator account. After log in, the sysprep tool will automatically launch. You can click cancel. You can make any changes here to configure your default profile. I do not recommend installing any applications or updates while in audit mode. You can, however, change the desktop background, arrange the Start Menu, etc. during this time. You should also add/change this registry key: reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\ WindowsUpdate /v AutoDownload /t REG_DWORD /d 2 /f This will disable Windows Store updates. We want to disable Windows Store app updates because if they update, you will not be able to sysprep your machine. Be sure to include the reverse of this in your imaging task sequence, as you will want Windows Store app updates enabled. To re-enable, simply change the “2” to a “4”: reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsStore\ WindowsUpdate /v AutoDownload /t REG_DWORD /d 4 /f Once your default profile is configured, create an XML file with this content: 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 3 Deploying Windows 10: Part 1 <?xml version=”1.0” encoding=”utf-8”?> <unattend xmlns=”urn:schemas-microsoft-com:unattend”> <settings pass=”specialize”> <component name=”Microsoft-Windows-Shell-Setup” processorArchitecture=”amd64” publicKeyToken=”31bf3856ad364e35” language=”neutral” versionScope=”nonSxS” xmlns:wcm=”http://schemas. microsoft.com/WMIConfig/2002/State” xmlns:xsi=”http://www.w3.org/2001/ XMLSchema-instance”> <CopyProfile>true</CopyProfile> </component> </settings> <settings pass=”oobeSystem”> <component name=”Microsoft-Windows-Shell-Setup” processorArchitecture=”amd64” publicKeyToken=”31bf3856ad364e35” language=”neutral” versionScope=”nonSxS” xmlns:wcm=”http://schemas. microsoft.com/WMIConfig/2002/State” xmlns:xsi=”http://www.w3.org/2001/ XMLSchema-instance”> <OOBE> <HideLocalAccountScreen>true</HideLocalAccountScreen> </OOBE> <AutoLogon> <Username>Administrator</Username> <Enabled>true</Enabled> </AutoLogon> </component> </settings> </unattend> 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 4 Deploying Windows 10: Part 1 If you’re capturing a 32-bit image, change the processor Architecture to x86. This answer file will copy the default profile and enable the local built-in administrator account, which we will use to finish our customizations. Name this file unattend.xml and save it to the root of your C: drive. It also puts an entry in Quick Access, which you will want to remove. Launch File Explorer, right-click the file, and select “Remove from Quick Access”. Also, you will want to remove “Desktop” from Quick Access, as it does not work through the CopyProfile process. Now, launch a command prompt and execute this command: %windir%\system32\sysprep\sysprep.exe /generalize /oobe /reboot / unattend:C:\unattend.xml The machine will now reboot and you can go through OOBE. Customize the Reference Image Once the machine restarts back into OOBE, select your regional settings. Then, I would recommend clicking “Customize settings” and changing ALL of the options after install to No. This will strengthen the privacy setting for Windows 10. 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 5 Deploying Windows 10: Part 1 After the Customize settings screens, your VM will probably restart. It should come back up and log in as the built-in administrator. Windows Features I recommend a few changes to the installed Windows Features. To modify these, right-click on the Start Menu and select Control Panel. Click “Programs” and then select “Turn Windows features on or off”. First, I recommend enabling “.NET Framework 3.5 (includes .NET 2.0 and 3.0)”. This will install .NET 3.5, which a lot of software still requires. Microsoft still supports and patches .NET 3.5, so there’s not a big security risk here. 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 6 Deploying Windows 10: Part 1 Modifying the rest of the features is up to you, but I would suggest looking at Simple TCPIP services and TelNet Client. Other Recommendations I would recommend putting the CMTrace tool somewhere in the image, especially if you using SCCM. This tool is vital when reading ConfigMgr logs. Where you put it is up to you, though I create a folder in Program Files (x86) for it. Next, I would go ahead and enable Previous Versions and set it to 10% of the hard drive. You can set this according to your organization, especially if you have network storage. To enable this, right-click on the Start Menu and select System. Click “Advanced System Settings” in the left panel and go to the “System Protection” tab. Now, click the Configure button. Enable system protection, and configure the usage using the slider. When you are done, make sure to run all Windows Updates. In Part 2, we will capture this for ConfigMgr deployment. 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 7 Deploying Windows 10: Part 2 This is part two of a series about deploying Windows 10. In this part, we will capture and deploy our base Windows 10 image for ConfigMgr 1511. As I stated in Part 1, I recommend doing this entire process in a VM. With a VM, we can take a snapshot just before capture that we can revert to if there are any issues, as well as in the future when we need to patch or change our base image. Image Cleanup Before cleanup, take your pre-sysprep snapshot. We cleanup the image after the snapshot has been taken. Before capture, you should clean up your base image. If you’re running VMware, or another virtualization product that installs any tools to help with integration, uninstall these first. If you are using VMware, ensure that this registry key gets set back to this before capturing, and after you have uninstalled VMware tools: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\COM3] “REGDBVersion”=hex:01,00,00 If you do not reset this key, you will not be able to execute any VB scripts after the image has been installed . Next, go ahead and empty the Recycle Bin and run Disk Cleanup. If I am capturing a base, I always like to run all of the options in Disk Cleanup, as well as going to the “More Options” tab and cleaning up system restore points and shadow copies. 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 8 Deploying Windows 10: Part 2 You can also utilize tools like CCleaner to remove stale files and registry keys. The point is to get the image as clean as possible. Capture The Image After you have cleaned up your base, you can use the ConfigMgr capture media to run sysprep and capture the base. You can build a capture media ISO from the “Create Task Sequence Media” option under the Task Sequences node of your ConfigMgr Console. Just feed the capture wizard the required information. Note that you will have to specify the destination as a UNC share, so you must have network connectivity. 19614 80th Avenue W. Unit B • Edmonds, WA 98026 • 206.778.4432 • windowsmanagementexperts.com 9 Deploying Windows 10: Part 2 Building a Task Sequence Importing the WIM into ConfigMgr is exactly the same as it has been for previous versions of Windows. Be sure to check the data access box if you access content over the network for task sequences instead of download and install. There’s no real difference between a Windows 10 task sequence and a Windows 7 task sequence.
Recommended publications
  • How to Use the Sysprep Tool to Automate Successful Deployment of Windows XP Page 1 of 5
    How to use the Sysprep tool to automate successful deployment of Windows XP Page 1 of 5 How to use the Sysprep tool to automate successful deployment of Windows XP This article was previously published under Q302577 Article ID : 302577 On This Page Last Review : April 14, 2005 INTRODUCTION Revision : 2.2 MORE INFORMATION Requirements for running the Sysprep tool Prepare a reference computer for Sysprep deployment Create the Sysprep.inf answer file Sysprep.inf answer file format and parameters Use the Setup Manager tool to create the Sysprep.inf answer file Sysprep parameters REFERENCES INTRODUCTION This step-by-step article describes how to use the System Preparation Tool (Sysprep) to automate the successful deployment of Microsoft Windows XP. Sysprep is a tool that is designed for system administrators, Original Equipment Manufacturers (OEMs), and others who must automatically deploy the Windows XP operating system on multiple computers. After you perform the initial setup steps on a single computer, you can run the Sysprep tool to prepare the sample computer for cloning. MORE INFORMATION Requirements for running the Sysprep tool Before you can use the Sysprep tool, your computer hardware and related devices must meet the following requirements: • The reference and destination computers must have compatible HALs. For example, Advanced Programmable Interrupt Controller (APIC)–based MPS (multiprocessor systems) must use the same APIC HAL. A standard HAL Programmable Interrupt Controller (PIC)–based system is not compatible with either the APIC HAL or the MPS HAL. • The reference and destination computers must have the same Advanced Configuration and Power Interface (ACPI) support.
    [Show full text]
  • Windows 10 Iot Enterprise LTSB 2016 for Dell Wyse 5470 All-In-One Thin Client Release Notes Notes, Cautions, and Warnings
    Windows 10 IoT Enterprise LTSB 2016 for Dell Wyse 5470 All-in-One Thin Client Release Notes Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either potential damage to hardware or loss of data and tells you how to avoid the problem. WARNING: A WARNING indicates a potential for property damage, personal injury, or death. © 2019 Dell Inc. or its subsidiaries. All rights reserved. Dell, EMC, and other trademarks are trademarks of Dell Inc. or its subsidiaries. Other trademarks may be trademarks of their respective owners. 2019 - 12 Rev. A01 Contents 1 Release summary..........................................................................................................................5 Priority and recommendations.............................................................................................................................................5 2 Compatibility............................................................................................................................... 6 Build details.............................................................................................................................................................................6 Connection brokers............................................................................................................................................................... 6 Supported languages.............................................................................................................................................................6
    [Show full text]
  • Copyrighted Material
    Exam MD-100 COPYRIGHTED MATERIAL c01.indd 07/04/2019 Page 1 Chapter Windows 10 1 Installation MICROSOFT EXAM OBJECTIVES COVERED IN THIS CHAPTER: ✓ Deploy Windows 10 ■ Configure language packs; migrate user data; perform a clean installation; perform an in-place upgrade (using tools such as MDT, WDS, ADK, etc.); select the appropriate Windows edition; troubleshoot activation issues. ✓ Manage updates ■ Check for updates; troubleshoot updates; validate and test updates; select the appropriate servicing channel; configure Windows update options. c01.indd 07/04/2019 Page 3 This book is for exam MD-100, and this is the fi rst of two Windows 10 exams (MD-100 and MD-101) for the Microsoft 365 Certifi ed: Modern Desktop Administrator Associate. If you are using both of the Sybex books for the Microsoft 365 Certifi ed: Modern Desktop Administrator Associate certifi cation, you will notice that many of the topics in Chapter 1 are the same in both books. The reason for this is that no matter what test you take, the process for installing Windows 10 is the same. Let me be the fi rst to welcome you to Windows 10 and the beginning of a new journey. But as with the start of any journey, we must take our fi rst steps. The fi rst step for this exam is to learn about the Windows 10 installation process. It is important that you understand the different versions of Windows 10 and which one is right for you and your organization. In this chapter, I will show you the many different features of Windows 10, and then I will describe each edition.
    [Show full text]
  • Download Deploying Windows 7, Essential Guidance
    FROM THE Windows® 7 Resource Kit Mitch Tulloch, Tony Northrup, Jerry Honeycutt, Ed Wilson, and the Windows 7 Team at Microsoft I Chapter 3 Deployment Platform .............................................. 85 I Chapter 4 Planning Deployment ............................................ 113 I Chapter 5 Testing Application Compatability ........................... 139 I Chapter 6 Developing Disk Images ......................................... 179 I Chapter 7 Migrating User State Data ...................................... 223 I Chapter 8 Deploying Applications .......................................... 247 I Chapter 9 Preparing Windows PE ........................................... 273 I Chapter 10 Confi guring Windows Deployment Services .............. 293 I Chapter 11 Using Volume Activation ........................................ 335 I Chapter 12 Deploying with Microsoft Deployment Toolkit ........... 355 DEPLOYING WINDOWS 7 83 Chapter 3 Deployment Platform n Tools Introduction 85 n Windows 7 Deployment Terminology 87 n Platform Components 89 n Deployment Scenarios 99 n Understanding Setup 101 n Basic Deployment Process 105 n Microsoft Deployment Toolkit Process 107 n Summary 110 n Additional Resources 111 uilding on technology that the Windows Vista operating system introduced, Windows 7 Bdeployment technology has evolved significantly since Windows XP Professional . For example, it supports file-based disk imaging to make high-volume deployments quicker, more efficient, and more cost effective . The Windows 7 operating system also provides
    [Show full text]
  • Windows Could Not Finish Configuring the System...Restart 10-11-17 8:53 AM
    Windows could not finish configuring the system...restart 10-11-17 8:53 AM United States (English) Sign in Search Windows with Bing Home Windows 7 Windows Vista Windows XP Library Forums Windows Client TechCenter > Windows 7 IT Pro Forums > Windows 7 Installation, Setup, and Deployment > Need Help with Forums? (FAQ) Windows could not finish configuring the system...restart My Forum Links Ask a question Search Forums: Search Windows 7 Installation, Setup, and Deployment Forum Sign In To Forums Forums Home Windows could not finish configuring the Browse Forums Users system...restart flicknstock Sunday, January 11, 2009 6:13 AM Not sure what happened, but I keep getting the error: Windows could not finish configuring the system. To attempt to resume configuration, restart the 0 computer. Sign In to Vote I tried to boot in safe mode and it gave me the same error. Any thoughts on what to try or is this a lost cause? I can't remember all the stats of the computer since it is a backup one, but it does surpass all the requirements. Reply Quote Related Topics Answers = Unanswered = Answered flicknstock Tuesday, January 13, 2009 4:12 AM Windows could not finish configuring the system... restart failure Vista is stuck on the "configuring updates" After formatting the hard drive and re-installing everything I was able to get past my issue. My guess is that some file was left from the random files previously on the HD and win7 wasn't able screen... 0 to format it correctly. Sign In to Vote In case anyone else needs...I used GParted to format the drive.
    [Show full text]
  • Optimizing Windows 10, Build 2004, for a Virtual Desktop Role
    Optimizing Windows 10, Build 2004, for a Virtual Desktop role Written by Robert M. Smith, Program Manager, Azure Global Customer Engineering Date Created: May 12, 2020 Date Updated: July 08, 2020 Date Published: tbd Contributors: Tim Muessig, Senior Premier Field Engineer; Narklis Engler, Principal Program Manager Version 1.2 Document Change History Version Changes 1.0 Adding verbiage for Windows Virtual Desktop, and Windows 10 build 2004 specifically 1.1 Additional updates for 2004 1.2 Final pass, updated group policy, services, tasks, and added info about Storage Sense for disk cleanup. Introduction This article is intended to provide suggestions for configurations for Windows 10, build 2004, for optimal performance in Virtualized Desktop environments, including Virtual Desktop Infrastructure (VDI) and Windows Virtual Desktop (WVD). All settings in this guide are suggested optimization settings only and are in no way requirements. The information in this guide is pertinent to Windows 10, version 2004, operating system (OS) build 19041. The guiding principles to optimize performance of Windows 10 in a virtual desktop environment are to minimize graphic redraws and “effects”, background activities that have no major benefit to the virtual desktop environment, and generally reduce running processes to the bare minimum. A secondary goal is to reduce disk space usage in the base image to the bare minimum. With virtual desktop implementations, the smallest possible base, or “gold” image size, can slightly reduce memory utilization on the host system, as well as a small reduction in overall network operations required to deliver the desktop environment to the consumer. No optimizations should reduce the user experience.
    [Show full text]
  • Conference 2017
    Conference 2017 Learning to Live with Windows 10 What we’ve learned at UVic Where the journey started • Early adopters of Windows 10 in Fall 2015 • Limited deployment in Spring 2016 with version 1511 • Moved to Windows 10 on all standard computers purchased after June 2016 Conference 2017 Learning to Live with Windows 10 2 Where we are today • All standard computers deployed with version 1607 1 • /3 of our managed fleet are using Windows 10 Conference 2017 Learning to Live with Windows 10 3 A few common terms first Term Description A new Windows 10 release that contains additional features and Upgrade capabilities, released two to three times per year. Packages of security fixes, reliability fixes, and other bug fixes that are released periodically, typically once a month on Update Tuesday Update (sometimes referred to as Patch Tuesday). With Windows 10, these are cumulative in nature. The windows servicing branch is one of four choices: Windows Insider, Current Branch, Current Branch for Business, or Long-Term Servicing Branch Branch. Branches are determined by the frequency with which the computer is configured to receive feature updates. A ring is a groups of PCs that are all on the same branch and have the Ring same update settings. Rings can be used internally by organizations to better control the upgrade rollout process. Source: https://technet.microsoft.com/de-de/itpro/windows/manage/introduction-to-windows-10-servicing Conference 2017 Learning to Live with Windows 10 4 What did we learn During the build process • Don’t try to
    [Show full text]
  • Paragon System Recovery Sysprep- Integrated Solution
    Paragon System Recovery Sysprep- Integrated Solution Workshop February 2006 Table of Contents Paragon System Recovery General Scheme ........................................................................................ 3 Introduction .......................................................................................................................................... 4 Overview .............................................................................................................................................. 4 Terms.................................................................................................................................................... 5 PSR Sysprep-Integrated solution ......................................................................................................... 6 PSR Sysprep-Integrated Workflow Diagram....................................................................................... 7 How it works ........................................................................................................................................ 8 Preparation ....................................................................................................................................... 8 Command line execution............................................................................................................ 12 PSRSysprep.msi command line execution............................................................................. 12 Sysprep utility command line execution ...............................................................................
    [Show full text]
  • Building a Windows 10 Image Creating Your Base Configuration
    Building a Windows 10 Image Creating your Base Configuration Installation of Windows 10 Reference: http://www.tenforums.com/tutorials/2113-system-image-create-hardware-independent-system-i mage.html#post151664 1. Boot computer off installation media (DVD or USB with Windows 10 EDU) 2. The installer process will begin. Clean the drive you want to install -- delete all items/partitions. Windows 10 will rebuild the “WinRE” (recovery environment) partition. a. For images, you do not want a partition larger than the lowest common denominator drive size that may host the image (ie 128GB). b. If you are installing on a machine with a drive larger, create a partition of 128GB and leave the remaining portion “unallocated”. 3. Allow the installation to run. Using a VLM Windows 10 installer, we should not be prompted for a product key during the install. 4. Once installation is completed, you will then go into the “first run” (out of box) Windows setup screens. 5. Do NOT start the process of clicking through items. You need to immediately change Windows into Sysprep “Audit” mode. 1 6. Windows reboots, and enters Audit Mode using the built-in “Administrator” account. When the desktop loads, you will notice the Sysprep box open in the middle of your screen. Close it for now by pressing the Cancel button. ​ ​ a. NOTE on AUDIT MODE: Throughout image construction process, remain in AUDIT Mode. When reboots are required, system will boot back up and auto-login to Administrator account. Sysprep box will be presented. Simply hit CANCEL option each time. Creation of “Base” Image In this stage, you will start setup and customization of your “template” profile.
    [Show full text]
  • Creating a Custom Windows to Go Device
    Creating a Custom Windows To Go Device One of the great features in Windows 8 Enterprise is Windows To Go. This feature allows you to take your Windows 8 install anywhere with you and run it from any PC with compatible hardware and the ability to boot from USB. This allows you to use the same PC from home or work, and makes working remotely a snap! You can install all of your management apps on one PC, then with a VPN or remote connection, have the same applications and manageability that you would as if you were sitting in your office. You can also create Windows To Go pen drives and essentially keep a bunch of “computers” in your desk drawer! This is a great option when rolling out Windows 8 in an enterprise without needing to overwrite an old PC, it also presents a lot of great testing opportunities! Microsoft only supports Windows To Go on a select list of certified devices. You can find that listing on their website: http://www.microsoft.com/en-us/windows/enterprise/products-and- technologies/devices/windowstogo.aspx Creating a Windows To Go device is pretty simple. All that you need is a system running Windows 8 Enterprise and the Windows 8 Enterprise installation media. Then you can simply open the control panel, click on the Windows To Go option, select your pen drive and wait for the magic wizard to complete. However, that only provides you a base Windows 8 image to work with. I am writing this to aid you in creating a custom Windows To Go image that can be easily pumped out to multiple pen drives.
    [Show full text]
  • Automating Deployment by Using System Center Configuration
    Deploying Windows 10 Automating deployment by using System Center Confi guration Manager Andre Della Monica, Russ Rimmerman, Alessandro Cesarini, and Victor Silveira PUBLISHED BY Microsoft Press A division of Microsoft Corporation One Microsoft Way Redmond, Washington 98052-6399 Copyright © 2016 by Microsoft Corporation All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by any means without the written permission of the publisher. Library of Congress Control Number: ISBN: 978-1-5093-0186-7 Printed and bound in the United States of America. First Printing Microsoft Press books are available through booksellers and distributors worldwide. If you need support related to this book, email Microsoft Press Support at [email protected]. Please tell us what you think of this book at http://aka.ms/tellpress. This book is provided “as-is” and expresses the author’s views and opinions. The views, opinions and information expressed in this book, including URL and other Internet website references, may change without notice. Some examples depicted herein are provided for illustration only and are fictitious. No real association or connection is intended or should be inferred. Microsoft and the trademarks listed at http://www.microsoft.com on the “Trademarks” webpage are trademarks of the Microsoft group of companies. All other marks are property of their respective owners. Acquisitions Editor: Karen Szall Developmental Editor Karen Szall Editorial Production: Dianne Russell, Octal Publishing, Inc. Copyeditor: Bob Russell, Octal Publishing, Inc. Cover: Twist Creative • Seattle Visit us today at microsoftpressstore.com • Hundreds of titles available – Books, eBooks, and online resources from industry experts • Free U.S.
    [Show full text]
  • Windows Virtual Desktop Technical (2020 Spring Update – ARM-Based Model Public Preview) Deployment Walkthrough
    26/07/2020 Windows Virtual Desktop technical (2020 spring update – ARM-based model public preview) deployment walkthrough. It covers all … HOME » MICROSOFT » AZURE » WINDOWS VIRTUAL DESKTOP WVD » Windows Virtual Desktop technical (2020 spring update – ARM-based model public preview) deployment walkthrough. It covers all you need to know and beyond! By Christiaan Brinkho˛. Published on May 1, 2020. 0 Click here if you are looking for instructions for the non-ARM based – 2019 fall release of Windows Virtual Desktop. The new Windows Virtual Desktop (WVD) Azure Resource Manager (ARM) based model is now in Public Preview available for everyone – and the interest is enormous. It addresses a lot of customer feedback, such as extra management (GUI) capabilities, AAD group support, metadata location changes and more… WVD can be a good Ût for di˛erent kind of scenario’s to enable remote working. “An Virtual Desktop running on Azure and available anywhere in the world on any device” We are using cookies to give you the best experience on our website. YoInu c thisan õ articlend out ,mo I’dr elike ab otou tcover which the coo deep(er)kies we a rtechnicale using o rpoints, switch whilethem osomeff in s earettings. just not part of the public message but still way too important not to share. Accept It’ll hopefully help you as consultant or architect to bring the technical (and https://www.christiaanbrinkhoff.com/2020/05/01/windows-virtual-desktop-technical-2020-spring-update-arm-based-model-deployment-walkthrou… 1/66 26/07/2020 Windows Virtual Desktop technical (2020 spring update – ARM-based model public preview) deployment walkthrough.
    [Show full text]