Seamless IT OperationsOptimize processes with enhanced visibility and automation, driving proactive remediations, exceptional service, and reduced costs.
Real-Time Service Desk Troubleshooting & ResolutionResolve IT issues proactively and in real-time to reduce service desk incidents, minimize downtime, and maintain smooth, efficient operations.
Autonomous Digital Experience ManagementIdentify, notify, and fix compliance drift, digital friction, and end-user frustration issues.
TeamViewer DEX forMicrosoft IntuneLightweight, always-on communication, real-time actions, and automated client health remediation,
Device RefreshOptimize hardware spend while facilitating proactive hardware asset management
Software ReclaimGain clear insights into software usage and reclaim underused, redundant, or vulnerable software.
Core CapabilitiesIntelligenceBusiness ImpactExperience AnalyticsEndpoint TroubleshootingEmployee SentimentEndpoint AutomationApplication Experience Management (AXM)Content Distribution for Microsoft Configuration ManagerInventory InsightsPatch InsightsSynthetic MonitoringAdd-ons and ExtensionsAutomated Self Service for ServiceNowService Desk Augmentation for ServiceNowVirtual Desktop Experience (VDX)TeamViewer DEX PlatformHelps IT teams improve end user experience, tighten security, reduce costs, and evolve IT Operations from cost center to strategic enabler.
Platform overviewPlatform TourResource LibraryDig into original DEX analysis, case studies, on-demand webinars, and more.
BlogsBe a DEX leader with useful strategies, how-to guides, and fresh platform updates.
Use CasesSelect your specific use cases to see demo videos narrated by product experts.
DEX GlossaryUnderstanding key terms and concepts related to Digital Employee Experience.
Other ResourcesDEX HubRemediation Hub1E ExchangeDocumentationSupportTrainingWhat is Digital Employee Experience (DEX)?From the software and hardware used each day to IT interactions, DEX is the total of all digital touchpoints an employee encounters at work.
Guide to DEXRemediation hubOur CustomersDEX ROIProfessional ServicesTrust, Security, and ComplianceFederalCustomer Resources1E ExchangeDocumentationSupportTraining1Engage CommunityCustomer SuccessHow Britain’s Favorite Retailer has transformed endpoint management across more than 1,000 stores with 1E
Read case studyCompany OverviewPartnersEvents and WebinarsCareersNewsroomCSRContactAbout 1EAt 1E, we reimagine how technology serves people and create new ways for IT to shape the future of work.
Company Overview March 29, 2017Émile CabotWindows 7: Good to the last dropEmile Cabot is a Microsoft MVP who will be speaking on April 20th at the Windows 10 Workshop event in Toronto. Don't miss his session called, 'Why moving to Win 10 is important to all organizations'. For the majority of organizations, Windows 10 adoption can't happen soon enough. The security enhancements bring on a sigh of relief in an age of Ransomware and devastating zero-day threats. There are, however, still isolated environments and service applications that happily run Windows 7, and will likely continue to do so up until Jan 14, 2020, when Microsoft stops providing security updates for the operating system. Given there's just under three years until 7's end of support, some companies are even undertaking the grueling task of managing 2 production OSs, slowly upgrading to Windows 10 as hardware is refreshed. If this is you, your help desk is in for a rough couple of years supporting it. To keep Windows 7 going until the bitter end, we need to maintain an imaging environment to facilitate downgrades and break/fix. The fact that Windows 7 hasn't had a major release since my kids were still in diapers means there are a LOT of updates that need to happen to an install, just to bring it up to current patch levels. It makes managing that reference image a little different from the norm.
I recently worked with one of these organizations and we used MDT to manage their standard reference image. We followed all the typical steps to automating the build process, and everything worked great. Once we got to the point of thickening up the image a bit, things started to go awry. The problem was an un-scriptable application and hotfix that didn't like Sysprep's generalization process. The result was a rebuild of the reference image and some noteworthy changes: Build the Reference Image using Hyper-V Ok, this isn't new, but it's still #1. There are three critical reasons why using Hyper-V for your reference image build is paramount: Hyper-V is a free, installable Windows Role. This means you can build and maintain your image from anywhere There are NO additional drivers. Drivers necessary for the operating system to function in Hyper-V are built into Windows 7. This means that no ghosted drivers end up in your deployed systems I can snapshot, er Checkpoint, my VM at various build stages. Even better, I can take a full copy of the VM and place it in a backup folder to be used later. Important note, when doing this it's a good idea to merge/delete your checkpoints beforehand, to avoid corrupting a disk chain Use that Hyper-V host, or ideally another VM, for the install of MDT and ADK. This will keep the validated versions available for image creation, allowing the production deployment environment to be upgraded to the Windows 10 ADK Fully patch the VM, including optional updates. Use the Convenience Rollup Package from Microsoft that was released in May 2016. You can download it here. Please note there are a couple of caveats with using this rollup. Microsoft's Nathan Mercer posted a great article about it, which you can read here Use a Task Sequence to create a thin image. Use this as an OS base for your actual Reference Image creation Use a separate sequence to customize the image for your organization, including site-licensed application installs and policy standards Here's a full Level 200 Step by Step for creating a Windows 7 Reference Image after its end of life: Step 1: Install Hyper-V on your Windows 10 Machine If your organization is running any virtualization solution, you are able to deploy a Server 2016 VM and install Hyper-V using nested virtualization. However, it may be more appealing to just use your workstation for this, and that's fully possible out-of-box with Windows 8.1 and up. You can do it through the GUI, or just use PowerShell. Here's the command:
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
After the machine finishes rebooting, you'll need to configure the vSwitch. If you only have one NIC, use:
New-VMSwitch -Name "External vSwitch" -NetAdapterName "Ethernet" -AllowManagementOS Step 2: Install ADK and MDT Download the Assessment and Deployment Kit for Windows 10, as well as MDT 2013 Update 2, and install both. Launch the Deployment Workbench and create a new Deployment Share. Add the source files from your Windows 7 ISO by Importing it to the Operating Systems node in the Workbench. Once the image has imported, create a Standard Client Task Sequence called Create Windows 7 Thin Image, accepting all the defaults. Step 3: Customize and Automate the Deployment Share In the properties of the Deployment Share, on the Rules tab there's a button to edit the Bootstrap.ini. In here we need to add the following lines:
UserID=MDT_BA
UserPassword=P@ssw0rd
UserDomain=VIAMONSTRA
KeyboardLocale=en-US
SkipBDDWelcome=YES
To automate the LTI screens that don't pertain to the image build process, we're also going to add the following Rules to the main list (customsettings.ini). The first 9 need to be customized to your environment:
OSDComputerName=Win7Ref01
ComputerBackupLocation= http://MDT01.corp.viamonstra.com/DeploymentShare$/Captures
BackupFile=Win7Ref01.wim
DomainOrWorkgroup=WORKGROUP
WorkgroupName=WORKGROUP
DomainAdmin=Administrator
DomainPassword=P@SSW0RD
TimeZoneName=Mountain Standard Time
AreaCode=403
SkipComputerName=YES
SkipCapture=No
DoCapture=YES
SkipApplications=YES
SkipAdminPassword=YES
SkipProductKey=YES
SkipDomainMembership=YES
SkipUserData=YES
UserDataLocation=NONE
SkipLocaleSelection=YES
SkipTimeZone=YES
UserLocale=en-US
UILanguage=en-US
InputLocale=en-US
KeyboardLocale=en-US
Language=00000413
SystemLocale=00000413
BitsPerPel=32
vRefresh=60
xResolution=1
yResolution=1
SkipBitlocker=YES
SkipSummary=YES Once both these files have been modified. We need to perform an Update Deployment Share action to create the Lite Touch Boot Image ISO. Step 4: Tweak the Task Sequence For this stage of the process, there's really only two things we need to do: Install the Convenience Rollup and Pause the Task Sequence.
To install the Convenience Rollup, it first requires an update to the Windows 7 Servicing Stack which is not included in the base ISO. To do this, we'll add the update in as an Application. The update binaries are in the Windows Catalog, and can be downloaded from here. The Convenience Rollup itself will be installed in the same fashion. We'll download it from here and extract the contents into a folder. Then, we're going to add it as an application in MDT, using this as the install string:
wusa.exe .\Applications\ConvRollup\Windows6.1-KB3125574-v4-x64.msu
The final change, we'll add a pause to the task sequence, using a Run Command Line action after the Install Applications step. The command is %SCRIPTROOT%\LTISuspend.wsf Step 5: Build the Thin Image Now we're going to create our Win10Ref01 VM. If you put the LiteTouch_x64.iso in C:\VMs, use these two commands to build the VM:
New-VM -Name Win7Ref01 -MemoryStartupBytes 4GB -BootDevice CD -SwitchName "External vSwitch" -NewVHDPath "C:\VMs\Win7Ref01\Virtual Hard Disks\Win10Ref01–C.vhd" -NewVHDSizeBytes 127GB -Path C:\VMs\Win7Ref01 -Generation 1
Set-VMDvdDrive -VMName Win7Ref01 -Path C:\VMs\LiteTouch_x64.is
Connect to the VM and start it, booting into the "DVD" drive. Select the Create Windows 7 Thin Image task sequence, and click Next. Due to the configuration in our rules file, we should now only see a screen to confirm our Image Capture settings. Validate/Update the settings and click next to initiate the build.
When the Task Sequence pauses, check Windows Update to confirm that the Convenience Rollup applied and connect to Windows Update to finish patching. Once all patches have been applied, shut down the VM. From File Explorer, place a copy of C:\VMs\Win7Ref01 in another location. This will serve as a backup of your patched Windows 7 VM. Once the copy has finished, launch the VM and re-connect. On the desktop will be a "Resume Task Sequence" icon. Double-Click this to resume the Task Sequence, which will Sysprep the VM, reboot into WinPE and capture the image. NOTE: By Default, MDT does not grant write privileges to the Captures Folder. You will need to ensure proper access is granted at the NTFS and Share level. Once the Image has been fully captured Import it into MDT as a Custom Image. We will use this image to create the next sequence. Step 6: Build the Reference Image Capture Sequences Create one more Standard task sequence, called Reference Image Build Sequence.
At this point, you're also going to want to import into MDT any applications that you will be using in your Reference Image. Even if the application cannot be silently installed, it is a good idea to add it in with the install string, as this will make the image build self-documenting. Note the Application GUID that is assigned to each application as they are imported into MDT.
In File Explorer, navigate to C:\DeploymentShare\Control and make a copy of CustomSettings.ini and place it in the same folder. Rename the copy to CSApps.ini, then edit it.
After SkipSummary=YES in the file, place the following lines:
Applications001=
Applications002=
Applications003=
OSDComputerName=Win7Ref02
BackupFile=Win7Ref02.wim Of course, you will need to replace with the actual application's GUID as its shown in MDT. You can add/remove lines as needed, just make sure there are no gaps in the numbering. When finished, Save the file. We're then going to need to Edit the Task Sequence, and scan the steps for "Gather." There are a few. At each of these steps, make sure the Radio button to process the rules file is selected, and replace CustomSettings.ini with CSApps.ini. Then, add in the same Pause step as before, in the same place right after Install Applications. Let's create a new VM (or we can re-use the first one) New-VM -Name Win7Ref02 -MemoryStartupBytes 4GB -BootDevice CD -SwitchName "External vSwitch" -NewVHDPath "C:\VMs\Win7Ref02\Virtual Hard Disks\Win10Ref02–C.vhd" -NewVHDSizeBytes 127GB -Path C:\VMs\Win7Ref02 -Generation 1
Set-VMDvdDrive -VMName Win7Ref02 -Path C:\VMs\LiteTouch_x64.iso
At the Pause step, we just need to ensure that our applications and configurations were completed successfully, then proceed to capture the completed Reference Image. We’ll use this as our starting point for all deployments going forward, and with the steps we’ve added along the way, keeping it up to date for the next 2.5 years will be a breeze. Émile CabotÉmile is a Microsoft Most Valuable Professional (MVP) who started in the industry during the mid-90s working at an ISP and designing web sites for celebrities. He has a strong operational background specializing in Systems Management and collaboration solutions, and has spent many years performing infrastructure analyses and solution implementations for organizations ranging from 20 to over 200,000 employees. Coupling his wealth of experience with a small partner network, Émile works very closely with TriCon Elite Consulting, 1E and Veeam to deliver low-cost solutions with minimal infrastructure requirements.
He actively volunteers as a member of the Canadian Ski Patrol, providing over 250 hours each year for first aid services and public education at Castle Mountain Resort and in the community.
More from ÉmileRelated Posts1E NewsEmpowering Success with 1E Training: Elevate Your Skills and Unlock Business ValueSid Bhaskara3 Min read
1E NewsA New Day for the Digital Workplace: TeamViewer to Acquire 1EMark Banfield2 Min read
1E NewsDEX Connect Summit: Bridging Ideas, Building Connections, and Shaping the FutureMcKayla Young2 Min read
AboutCompany OverviewPartnersFederalEvents and WebinarsCareersNewsroomPricingContactCompareTeamViewer DEX vs LakesideTeamViewer DEX vs NexthinkTeamViewer DEX vs TaniumPlatform TeamViewer DEX PlatformIntelligenceBusiness ImpactEmployee SentimentEndpoint AutomationEndpoint TroubleshootingExperience AnalyticsInventory InsightsPatch InsightsSynthetic MonitoringApplication Experience ManagementContent Distribution for Microsoft Configuration ManagerAutomated Self Service for ServiceNowService Desk Augmentation for ServiceNowVirtual Desktop Experience (VDX)TeamViewer Tensor + TeamViewer DEX Platform IntegrationSolutions Frictionless ExperienceSeamless IT OperationsMicrosoft IntuneDevice RefreshSoftware ReclaimResourcesResource LibraryBlogUse CasesDEX GuideDEX GlossaryRemediation, Automation, and DEX content hub1E ExchangeDocumentationSupportTrainingCopyright © 1E 2026 All Rights Reserved
PrivacyTerms and ConditionsCookies Policy
智能索引记录
-
2026-03-02 18:00:04
综合导航
成功
标题:å
ä¼çæ¼é³_å
ä¼çææ_å
ä¼çç¹ä½_è¯ç»ç½
简介:è¯ç»ç½å ä¼é¢é,ä»ç»å ä¼,å ä¼çæ¼é³,å 伿¯
-
2026-03-02 10:04:26
旅游出行
成功
标题:峡江县景点 - 业百科
简介:峡江县景点,玉笥山风景区、成子洲、金山生态休闲山庄、湖州古建筑群、峡江县峡江会议旧址等。1、玉笥山风景区:位于江西省吉安
-
2026-03-02 16:30:00
综合导航
成功
标题:Avail DA and Lens officially announced their cooperation to unlock a new era of decentralized social networks Bee Network
简介:Original source: Avail enthusiasts Lens, a social network
-
2026-03-02 18:15:58
综合导航
成功
标题:英雄无敌追随者最新章节_第四十六章 现成的肥羊第1页_英雄无敌追随者免费阅读_恋上你看书网
简介:第四十六章 现成的肥羊第1页_英雄无敌追随者_果信_恋上你看书网
-
2026-03-02 19:35:09
综合导航
成功
标题:第1248章 雷眼_西门仙族_道心长青_新笔趣阁(56xu.com)
简介:西门仙族无防盗章节,作者道心长青,第1248章 雷眼内容简要:西门长青对雷狮族藏宝库内的宝物很眼热,他相信宝库内,肯定有
-
2026-03-02 10:45:29
综合导航
成功
标题:夏雨的作文600字[热门]
简介:无论是在学校还是在社会中,大家都经常看到作文的身影吧,作文是由文字组成,经过人的思想考虑,通过语言组织来表达一个主题意义
-
2026-03-02 17:51:08
综合导航
成功
标题:ǁ Logos. World English Historical Dictionary
简介:ǁ Logos. World English Historical Dictionary
-
2026-03-02 13:17:11
教育培训
成功
标题:下雨即景作文(精选9篇)
简介:在平时的学习、工作或生活中,大家最不陌生的就是作文了吧,作文是由文字组成,经过人的思想考虑,通过语言组织来表达一个主题意
-
2026-03-02 18:00:14
综合导航
成功
标题:大åçæ¼é³_大åçææ_大åçç¹ä½_è¯ç»ç½
简介:è¯ç»ç½å¤§åé¢é,ä»ç»å¤§å,大åçæ¼é³,大忝
-
2026-03-02 16:45:35
综合导航
成功
标题:Lose sb.2. World English Historical Dictionary
简介:Lose sb.2. World English Historical Dictionary
-
2026-03-02 12:30:30
教育培训
成功
标题:【推荐】自然作文400字四篇
简介:在学习、工作或生活中,大家对作文都不陌生吧,作文是人们以书面形式表情达意的言语活动。你所见过的作文是什么样的呢?下面是小
-
2026-03-02 10:53:37
电商商城
成功
标题:手机自拍架怎么样 - 京东
简介:京东是专业的手机自拍架网上购物商城,为您提供手机自拍架价格图片信息、手机自拍架怎么样的用户评论、手机自拍架精选导购、更多
-
2026-03-02 16:41:41
综合导航
成功
标题:Subotic v Knezevic - 5RB Barristers
简介:libel - defamation - jurisdiction - jameel abuse - Serbia -
-
2026-03-02 06:40:05
数码科技
成功
标题:asp网站做消息提醒功能郓城建设局网站-北京孤凡电子商务有限公司
简介:asp网站做消息提醒功能,郓城建设局网站,安徽建设工程信息平台,网站建设属于销售费用DeepSeek V3.2 深度解析
-
2026-03-02 18:15:57
综合导航
成功
标题:[原创达人]秋天_250字_作文网
简介:秋天,你是一个魔法师: 你一吹,稻子笑弯了腰; 你一吹,高粱向人们微笑; 你一吹,苹果的脸害羞的红了。 秋天,你是一个声
-
2026-03-02 10:53:13
综合导航
成功
标题:打印机无法打印怎么解决-驱动人生
简介:打印机无法打印,以HP惠普LaserJet打印机P1108打印机驱动为例,首先通过问题定位,用户的打印机可能存在打印机驱
-
2026-03-02 09:58:49
新闻资讯
成功
标题:【装潢设计效果图家居】_别墅设计网
简介:装潢设计效果图家居:为您提供最好的装潢设计效果图相关资讯及内容!了解装潢设计效果图怎么样知识,尽在别墅设计网知识大全。
-
2026-03-02 19:36:44
综合导航
成功
标题:我爆富了最新章节_第178章 怀孕了第1页_我爆富了免费章节_恋上你看书网
简介:第178章 怀孕了第1页_我爆富了_跌入春色里_恋上你看书网
-
2026-03-02 17:45:24
综合导航
成功
标题:24-Hour Hot Coins and News PetroChina May Explore Cross-Border Stablecoin Settlement; CRO On-Chain Transaction Volume Bee Network
简介:Top 10 CEX trading volume and 24-hour price changes: BNB -
-
2026-03-02 19:34:37
综合导航
成功
标题:Press Release Distribution - Grow Your Business - PR.com
简介:Achieve your marketing and communications goals with PR.com&
-
2026-03-02 14:17:13
综合导航
成功
标题:小学的作文(共3篇)
简介:在我们平凡的日常里,大家都尝试过写作文吧,借助作文可以提高我们的语言组织能力。为了让您在写作文时更加简单方便,以下是小编
-
2026-03-02 13:12:17
图片素材
成功
标题:安逸的作文1000字 描写安逸的作文 关于安逸的作文-作文网
简介:作文网精选关于安逸的1000字作文,包含安逸的作文素材,关于安逸的作文题目,以安逸为话题的1000字作文大全,作文网原创
-
2026-03-02 10:45:20
图片素材
成功
标题:初三演讲稿作文 演讲稿素材 演讲稿作文题目 演讲稿作文大全-作文网
简介:作文网优秀初三演讲稿作文大全,包含初三演讲稿作文素材,初三演讲稿作文题目、美文范文,作文网原创名师点评,欢迎投稿!
-
2026-03-02 10:45:14
综合导航
成功
标题:做人应该诚实It Pays to Be Honest
简介:nowadays people are troubled with mass of dishonest behavior
-
2026-03-02 16:58:18
综合导航
成功
标题:WTB Your Rear Ends [Archive] - Toyota MR2 Message Board
简介:I
-
2026-03-02 17:01:26
综合导航
成功
标题:Dukes of Orleans. The Reader's Biographical Encyclopaedia. 1922
简介:Dukes of Orleans. The Reader
-
2026-03-02 12:30:40
教育培训
成功
标题:【精】令我感动的一件事作文
简介:在日常生活或是工作学习中,大家一定都接触过作文吧,作文一定要做到主题集中,围绕同一主题作深入阐述,切忌东拉西扯,主题涣散
-
2026-03-02 17:02:04
综合导航
成功
标题:Horse Racing Derby Quest - Play The Free Mobile Game Online
简介:Horse Racing Derby Quest - click to play online. In Horse Ra
-
2026-03-02 19:36:18
综合导航
成功
标题:霉毒清最新章节_第27章第1页_霉毒清免费章节_恋上你看书网
简介:第27章第1页_霉毒清_武少杨_恋上你看书网
-
2026-03-02 12:29:36
综合导航
成功
标题:Decoding BTCs unconventional surge: when interest rates rise, the dollar depreciates and the trillion-dollar deficit Bee Network
简介:Original author: The Kobeissi Letter ( @KobeissiLetter ) Co