This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "SKU": "ADK", | |
| "lang": "EN-US", | |
| "bits": "32", | |
| "url": "https://go.microsoft.com/fwlink/p/?linkid=859206" | |
| }, | |
| { | |
| "SKU": "Enterprise", | |
| "lang": "DE", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Auto Generate a RDG file for Azure. | |
| .DESCRIPTION | |
| Will create a Microsoft Remote Desktop Connection Manager *.RDG file | |
| from the Virtual Machines within your Azure Tenant. | |
| .PARAMETER Path | |
| Location of the target *.RDG file. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: // *************************************************************************** | |
| :: // | |
| :: // Copyright (c) Microsoft Corporation. All rights reserved. | |
| :: // | |
| :: // Microsoft Deployment Toolkit Solution Accelerator | |
| :: // | |
| :: // File: SetupComplete.cmd | |
| :: // | |
| :: // Version: 6.3.8447.1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <job id="ZTISurface1TBBootDisk"> | |
| <script language="VBScript" src="ZTIUtility.vbs"/> | |
| <script language="VBScript" src="ZTIDiskUtility.vbs"/> | |
| <script language="VBScript"> | |
| ' // *************************************************************************** | |
| ' // | |
| ' // Copyright (c) Microsoft Corporation. All rights reserved. | |
| ' // | |
| ' // Microsoft Deployment Toolkit Solution Accelerator |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <unattend xmlns="urn:schemas-microsoft-com:unattend"> | |
| <settings pass="oobeSystem"> | |
| <component name="Microsoft-Windows-Deployment" 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"> | |
| <Reseal> | |
| <Mode>Audit</Mode> | |
| </Reseal> | |
| </component> | |
| </settings> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Bypass file for OEM OOBE Setup. | |
| Called from within Audit Mode. | |
| #> | |
| param( | |
| [int] $TargetDisk = 0, | |
| [string] $NewBootWim = "$PSScriptRoot\Generic_x64.wim", | |
| [string] $UserName = 'MDTServer\MDTNonInteractive', | |
| [string] $Password = 'UnSecurePassword1234', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/settings-for-automating-oobe --> | |
| <?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"> | |
| <ComputerName>*</ComputerName> | |
| </component> | |
| <component name="Microsoft-Windows-Deployment" 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"> | |
| <RunSynchronous> | |
| <RunSynchronousCommand wcm:action="add"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Report on Disk Hogs | |
| .DESCRIPTION | |
| Returns a list of the largest directories in use on the local machine | |
| .NOTES | |
| Copyright Keith Garner, All rights reserved. | |
| Really Updated for Windows 7 and Optimized for !!!SPEED!!! | |
| .PARAMETER Path | |
| Start of the search, usually c:\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Example of how to create a Device Collection and populate it with computer objects | |
| The Slow way. <Yuck> | |
| #> | |
| [cmdletbinding()] | |
| param( | |
| $CollBaseName = 'MyTestCol_03_{0:D4}', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| Example of how to create a Device Collection and populate it with computer objects | |
| The Faster way. <Yea!> | |
| #> | |
| [cmdletbinding()] | |
| param( | |
| $CollBaseName = 'MyTestCol_0C_{0:D4}', |