├── .gitattributes ├── .gitignore ├── Build.ps1 ├── Hydrate ├── Hydrate.ps1 └── ShareOperations │ ├── 0 - Import-Patches.MDT.ps1 │ ├── 1 - Create MDTUser.MDT.PS1 │ ├── 2 - Create Boot Images (test).MDT.PS1 │ ├── 3 - Create Boot Images (main).MDT.PS1 │ ├── Import-MDTOSandTS.MDT.ps1 │ ├── Map CustomSetting.ini values.MDT.PS1 │ └── Update Scripts.MDT.PS1 ├── LICENSE ├── Library ├── DeployShared │ ├── Common │ │ ├── get-HashTableSubset.ps1 │ │ ├── send-EMail.ps1 │ │ └── update-Password.ps1 │ ├── DeployShared.psd1 │ ├── DeployShared.psm1 │ ├── Disk │ │ ├── Convert-IsoToVHD.ps1 │ │ ├── Convert-VhdToWim.ps1 │ │ ├── Convert-WIMtoVHD.ps1 │ │ ├── Dismount-Everything.ps1 │ │ ├── Format-NewDiskFinalize.ps1 │ │ ├── Get-NewDismArgs.ps1 │ │ ├── Invoke-DiskPart.ps1 │ │ ├── format-newDisk.ps1 │ │ ├── invoke-dism.ps1 │ │ └── new-ISOImage.ps1 │ ├── Hyper-V │ │ ├── New-HyperVirtualMachine.ps1 │ │ ├── get-VMBiosGuid.ps1 │ │ └── set-VMBiosGuid.ps1 │ ├── MDT │ │ ├── New-MDTDeploymentShare.PS1 │ │ ├── Set-MDTBootStrap.ps1 │ │ ├── Set-MDTCustomSettings.ps1 │ │ └── get-ADKPath.ps1 │ ├── Unattend │ │ ├── Save-XMLFile.ps1 │ │ ├── new-Unattend.Example.tests.ps1 │ │ ├── new-unattend.ps1 │ │ └── new-unattend.tests.ps1 │ └── Windows │ │ ├── Copy-ItemWithProgress.ps1 │ │ ├── Find-LatestWindowsUpdates.ps1 │ │ ├── Get-MSIProperties.ps1 │ │ ├── Get-PrivateProfileString.ps1 │ │ ├── Get-SHFolderPath.ps1 │ │ ├── Get-WindowOwner.ps1 │ │ ├── Invoke-AsSystem.ps1 │ │ ├── New-TemporaryDirectory.ps1 │ │ ├── New-UserPassword.ps1 │ │ ├── Receive-URL.ps1 │ │ ├── Set-PrivateProfileString.ps1 │ │ ├── Show-MessageBox.ps1 │ │ ├── Test-Elevated.ps1 │ │ ├── get-ExitCodeProcess.ps1 │ │ └── start-CommandHidden.ps1 └── rebuild.ps1 ├── README.md ├── Setup ├── About.txt ├── DeployShared.sln ├── DeployShared │ ├── DeployShared.wixproj │ └── Product.wxs ├── EULA.rtf └── Hydrate.ps1 ├── Source ├── MDT.8443 │ ├── Get-MDTLatest.ps1 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ClientUpgrade.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── ServerUpgrade.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.10.0 │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x64.xml.6.3 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.10.0 │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_Core_x86.xml.6.3 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.10.0 │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x64.xml.6.3 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.10.0 │ │ ├── Unattend_x86.xml.6.2 │ │ ├── Unattend_x86.xml.6.3 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini │ ├── scripts.1 │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ └── scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf ├── MDT.8450 │ ├── Get-MDTLatest.ps1 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ClientUpgrade.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DLClient.xml │ │ ├── DLServer.xml │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── ServerUpgrade.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.10.0 │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x64.xml.6.3 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.10.0 │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_Core_x86.xml.6.3 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.10.0 │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x64.xml.6.3 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.10.0 │ │ ├── Unattend_x86.xml.6.2 │ │ ├── Unattend_x86.xml.6.3 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini │ ├── scripts.1 │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ └── scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf ├── MDT.8456 │ ├── Get-MDTLatest.ps1 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ClientUpgrade.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── ServerUpgrade.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.10.0 │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x64.xml.6.3 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.10.0 │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_Core_x86.xml.6.3 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.10.0 │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x64.xml.6.3 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.10.0 │ │ ├── Unattend_x86.xml.6.2 │ │ ├── Unattend_x86.xml.6.3 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini │ ├── scripts.1 │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ └── scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf ├── MDT2013 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_Computer.png │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.png │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_Language.png │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_Network.png │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_TimeZone.png │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── WelcomeWiz_Background.jpg │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ ├── Strip-Version.ps1 │ └── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.6.2 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini ├── MDT2013U1.0 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTIBootstrapUpgradeSummary.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetUpgradeStatus.wsf │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── UpgradeSummary.wsf │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ClientUpgrade.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── ServerUpgrade.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.10.0 │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x64.xml.6.3 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.10.0 │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_Core_x86.xml.6.3 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.10.0 │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x64.xml.6.3 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.10.0 │ │ ├── Unattend_x86.xml.6.2 │ │ ├── Unattend_x86.xml.6.3 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini │ └── scripts.1 │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTIBootstrapUpgradeSummary.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetUpgradeStatus.wsf │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── UpgradeSummary.wsf │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf ├── MDT2013U1 │ ├── SCCM │ │ ├── Deploy_SCCM_Definition_ENU.xml │ │ ├── Deploy_SCCM_Scripts.vbs │ │ ├── Microsoft.BDD.CM12Actions.mof │ │ ├── Microsoft.BDD.SCCMActions.mof │ │ ├── SCCM_Bootstrap.ini │ │ ├── SCCM_Client.xml │ │ ├── SCCM_ClientReplace.xml │ │ ├── SCCM_Custom.xml │ │ ├── SCCM_Server.xml │ │ ├── SCCM_UDIReplace.xml │ │ ├── TSConfig.ini │ │ └── ZTIMediaHook.wsf │ ├── Scripts │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTIBootstrapUpgradeSummary.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetUpgradeStatus.wsf │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── UpgradeSummary.wsf │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ │ ├── Applications.xsd │ │ ├── BDDAdminDB.sql │ │ ├── BDDAdminDB_Upgrade.sql │ │ ├── BootOrder.txt │ │ ├── Bootstrap.ini │ │ ├── CaptureOnly.xml │ │ ├── Client.xml │ │ ├── ClientReplace.xml │ │ ├── ClientUpgrade.xml │ │ ├── ConfigMgrPE.xml │ │ ├── Custom.xml │ │ ├── CustomSettings.ini │ │ ├── DartConfig.dat │ │ ├── DartConfig8.dat │ │ ├── Drivers.xsd │ │ ├── Generic.xml │ │ ├── Groups.xsd │ │ ├── InstallerComponents.xsd │ │ ├── LTIOEM.xml │ │ ├── LinkedDeploymentShares.xsd │ │ ├── LiteTouchPE.xml │ │ ├── Medias.xsd │ │ ├── News.xsl │ │ ├── OldComputer.xml │ │ ├── OperatingSystems.xsd │ │ ├── Packages.xsd │ │ ├── SelectionProfileGroups.xml │ │ ├── SelectionProfiles.xml │ │ ├── SelectionProfiles.xsd │ │ ├── Server.xml │ │ ├── ServerUpgrade.xml │ │ ├── Settings.xml │ │ ├── StateRestore.xml │ │ ├── Sysprep.inf │ │ ├── TaskSequences.xsd │ │ ├── Unattend.txt │ │ ├── Unattend_Core_x64.xml │ │ ├── Unattend_Core_x64.xml.10.0 │ │ ├── Unattend_Core_x64.xml.6.2 │ │ ├── Unattend_Core_x64.xml.6.3 │ │ ├── Unattend_Core_x86.xml │ │ ├── Unattend_Core_x86.xml.10.0 │ │ ├── Unattend_Core_x86.xml.6.2 │ │ ├── Unattend_Core_x86.xml.6.3 │ │ ├── Unattend_PE_x64.xml │ │ ├── Unattend_PE_x86.xml │ │ ├── Unattend_x64.xml │ │ ├── Unattend_x64.xml.10.0 │ │ ├── Unattend_x64.xml.6.2 │ │ ├── Unattend_x64.xml.6.3 │ │ ├── Unattend_x86.xml │ │ ├── Unattend_x86.xml.10.0 │ │ ├── Unattend_x86.xml.6.2 │ │ ├── Unattend_x86.xml.6.3 │ │ ├── VHDClient.xml │ │ ├── VHDServer.xml │ │ ├── Wimscript.ini │ │ └── winpeshl.ini │ └── scripts.1 │ │ ├── Autorun.inf │ │ ├── BDD_Autorun.wsf │ │ ├── BDD_Welcome_ENU.xml │ │ ├── Credentials_ENU.xml │ │ ├── Credentials_scripts.vbs │ │ ├── DeployWiz_AdminAccounts.xml │ │ ├── DeployWiz_AdminPassword.vbs │ │ ├── DeployWiz_AdminPassword.xml │ │ ├── DeployWiz_Applications.vbs │ │ ├── DeployWiz_Applications.xml │ │ ├── DeployWiz_BitLocker.vbs │ │ ├── DeployWiz_BitLocker.xml │ │ ├── DeployWiz_CaptureImage.vbs │ │ ├── DeployWiz_CaptureImage.xml │ │ ├── DeployWiz_ComputerBackup.vbs │ │ ├── DeployWiz_ComputerBackup.xml │ │ ├── DeployWiz_ComputerName.vbs │ │ ├── DeployWiz_ComputerName.xml │ │ ├── DeployWiz_Credentials.vbs │ │ ├── DeployWiz_Credentials.xml │ │ ├── DeployWiz_Definition_ENU.xml │ │ ├── DeployWiz_Initialization.vbs │ │ ├── DeployWiz_LanguagePack.vbs │ │ ├── DeployWiz_LanguagePack.xml │ │ ├── DeployWiz_LanguageUI.vbs │ │ ├── DeployWiz_LanguageUI.xml │ │ ├── DeployWiz_OfflineData.vbs │ │ ├── DeployWiz_OfflineData.xml │ │ ├── DeployWiz_ProductKeyVista.vbs │ │ ├── DeployWiz_ProductKeyVista.xml │ │ ├── DeployWiz_Ready.vbs │ │ ├── DeployWiz_Ready.xml │ │ ├── DeployWiz_Roles.vbs │ │ ├── DeployWiz_Roles.xml │ │ ├── DeployWiz_Roles.xsl │ │ ├── DeployWiz_SelectTS.vbs │ │ ├── DeployWiz_SelectTS.xml │ │ ├── DeployWiz_UserData.vbs │ │ ├── DeployWiz_UserData.xml │ │ ├── DeployWiz_UserDataRestore.vbs │ │ ├── DeployWiz_UserDataRestore.xml │ │ ├── DeployWiz_Validation.vbs │ │ ├── LTIApply.wsf │ │ ├── LTIBootstrap.vbs │ │ ├── LTIBootstrapUpgradeSummary.vbs │ │ ├── LTICleanup.wsf │ │ ├── LTICopyScripts.wsf │ │ ├── LTIGetFolder.wsf │ │ ├── LTIOEM.wsf │ │ ├── LTISuspend.wsf │ │ ├── LTISysprep.wsf │ │ ├── LTITriggerUpgradeFailure.wsf │ │ ├── ListOfLanguages.xml │ │ ├── LiteTouch.vbs │ │ ├── LiteTouch.wsf │ │ ├── NICSettings_Definition_ENU.xml │ │ ├── OSDBranding.vbs │ │ ├── OSDBrandingx64.vbs │ │ ├── OSDEndTime.vbs │ │ ├── OSDLocalAdmins.vbs │ │ ├── OSDProgress.vbs │ │ ├── OSD_BaseVariables.vbs │ │ ├── ServerManager.xml │ │ ├── SetUpgradeStatus.wsf │ │ ├── SetupComplete.cmd │ │ ├── SetupRollback.cmd │ │ ├── Summary_Definition_ENU.xml │ │ ├── Summary_scripts.vbs │ │ ├── UDIWizard.wsf │ │ ├── UDIWizard_Config.xml │ │ ├── UDIWizard_Config.xml.app │ │ ├── UDIoffline.xml │ │ ├── UpgradeSummary.wsf │ │ ├── WelcomeWiz_Choice.vbs │ │ ├── WelcomeWiz_Choice.xml │ │ ├── WelcomeWiz_DeployRoot.vbs │ │ ├── WelcomeWiz_DeployRoot.xml │ │ ├── WelcomeWiz_Initialize.vbs │ │ ├── WelcomeWiz_Initialize.xml │ │ ├── WizUtility.vbs │ │ ├── Wizard.css │ │ ├── Wizard.hta │ │ ├── ZTIAppXmlGen.wsf │ │ ├── ZTIApplications.wsf │ │ ├── ZTIApplyGPOPack.wsf │ │ ├── ZTIAuthorizeDHCP.wsf │ │ ├── ZTIBCDUtility.vbs │ │ ├── ZTIBIOSCheck.wsf │ │ ├── ZTIBIOSCheck.xml │ │ ├── ZTIBackup.wsf │ │ ├── ZTIBde.wsf │ │ ├── ZTICoalesce.wsf │ │ ├── ZTIConfigFile.vbs │ │ ├── ZTIConfigure.wsf │ │ ├── ZTIConfigure.xml │ │ ├── ZTIConfigureADDS.wsf │ │ ├── ZTIConfigureDHCP.wsf │ │ ├── ZTIConfigureDNS.wsf │ │ ├── ZTIConfirmDiskpart.vbs │ │ ├── ZTIConnect.wsf │ │ ├── ZTICopyLogs.wsf │ │ ├── ZTIDataAccess.vbs │ │ ├── ZTIDisableBDEProtectors.wsf │ │ ├── ZTIDiskUtility.vbs │ │ ├── ZTIDiskpart.wsf │ │ ├── ZTIDomainJoin.wsf │ │ ├── ZTIDone.wsf │ │ ├── ZTIDrivers.wsf │ │ ├── ZTIErrorMsg.wsf │ │ ├── ZTIExecuteRunbook.wsf │ │ ├── ZTIGather.wsf │ │ ├── ZTIGather.xml │ │ ├── ZTIGroups.wsf │ │ ├── ZTILangPacksOnline.wsf │ │ ├── ZTIModifyVol.wsf │ │ ├── ZTIMoveStateStore.wsf │ │ ├── ZTINICConfig.wsf │ │ ├── ZTINextPhase.wsf │ │ ├── ZTINicUtility.vbs │ │ ├── ZTIOSRole.wsf │ │ ├── ZTIOSRolePS.ps1 │ │ ├── ZTIOptIn.wsf │ │ ├── ZTIPSUtility.vbs │ │ ├── ZTIPatches.wsf │ │ ├── ZTIPowerShell.wsf │ │ ├── ZTIPrereq.vbs │ │ ├── ZTISCCM.wsf │ │ ├── ZTISetBackground.wsf │ │ ├── ZTISetVariable.wsf │ │ ├── ZTISetupRollback.wsf │ │ ├── ZTISupportedPlatforms.xml │ │ ├── ZTITatoo.mof │ │ ├── ZTITatoo.wsf │ │ ├── ZTIUserState.wsf │ │ ├── ZTIUserState_Config.xml │ │ ├── ZTIUtility.vbs │ │ ├── ZTIVHDCreate.wsf │ │ ├── ZTIValidate.wsf │ │ ├── ZTIWinRE.wsf │ │ ├── ZTIWindowsUpdate.wsf │ │ ├── ZTIWipeDisk.wsf │ │ └── ztiRunCommandHidden.wsf └── MDT2013U2 │ ├── Get-MDTLatest.ps1 │ ├── SCCM │ ├── Deploy_SCCM_Definition_ENU.xml │ ├── Deploy_SCCM_Scripts.vbs │ ├── Microsoft.BDD.CM12Actions.mof │ ├── Microsoft.BDD.SCCMActions.mof │ ├── SCCM_Bootstrap.ini │ ├── SCCM_Client.xml │ ├── SCCM_ClientReplace.xml │ ├── SCCM_Custom.xml │ ├── SCCM_Server.xml │ ├── SCCM_UDIReplace.xml │ ├── TSConfig.ini │ └── ZTIMediaHook.wsf │ ├── Strip-Version.ps1 │ ├── Templates │ ├── Applications.xsd │ ├── BDDAdminDB.sql │ ├── BDDAdminDB_Upgrade.sql │ ├── BootOrder.txt │ ├── Bootstrap.ini │ ├── CaptureOnly.xml │ ├── Client.xml │ ├── ClientReplace.xml │ ├── ClientUpgrade.xml │ ├── ConfigMgrPE.xml │ ├── Custom.xml │ ├── CustomSettings.ini │ ├── DartConfig.dat │ ├── DartConfig8.dat │ ├── Drivers.xsd │ ├── Generic.xml │ ├── Groups.xsd │ ├── InstallerComponents.xsd │ ├── LTIOEM.xml │ ├── LinkedDeploymentShares.xsd │ ├── LiteTouchPE.xml │ ├── Medias.xsd │ ├── News.xsl │ ├── OldComputer.xml │ ├── OperatingSystems.xsd │ ├── Packages.xsd │ ├── SelectionProfileGroups.xml │ ├── SelectionProfiles.xml │ ├── SelectionProfiles.xsd │ ├── Server.xml │ ├── ServerUpgrade.xml │ ├── Settings.xml │ ├── StateRestore.xml │ ├── Sysprep.inf │ ├── TaskSequences.xsd │ ├── Unattend.txt │ ├── Unattend_Core_x64.xml │ ├── Unattend_Core_x64.xml.10.0 │ ├── Unattend_Core_x64.xml.6.2 │ ├── Unattend_Core_x64.xml.6.3 │ ├── Unattend_Core_x86.xml │ ├── Unattend_Core_x86.xml.10.0 │ ├── Unattend_Core_x86.xml.6.2 │ ├── Unattend_Core_x86.xml.6.3 │ ├── Unattend_PE_x64.xml │ ├── Unattend_PE_x86.xml │ ├── Unattend_x64.xml │ ├── Unattend_x64.xml.10.0 │ ├── Unattend_x64.xml.6.2 │ ├── Unattend_x64.xml.6.3 │ ├── Unattend_x86.xml │ ├── Unattend_x86.xml.10.0 │ ├── Unattend_x86.xml.6.2 │ ├── Unattend_x86.xml.6.3 │ ├── VHDClient.xml │ ├── VHDServer.xml │ ├── Wimscript.ini │ └── winpeshl.ini │ ├── scripts.1 │ ├── Autorun.inf │ ├── BDD_Autorun.wsf │ ├── BDD_Welcome_ENU.xml │ ├── Credentials_ENU.xml │ ├── Credentials_scripts.vbs │ ├── DeployWiz_AdminAccounts.xml │ ├── DeployWiz_AdminPassword.vbs │ ├── DeployWiz_AdminPassword.xml │ ├── DeployWiz_Applications.vbs │ ├── DeployWiz_Applications.xml │ ├── DeployWiz_BitLocker.vbs │ ├── DeployWiz_BitLocker.xml │ ├── DeployWiz_CaptureImage.vbs │ ├── DeployWiz_CaptureImage.xml │ ├── DeployWiz_ComputerBackup.vbs │ ├── DeployWiz_ComputerBackup.xml │ ├── DeployWiz_ComputerName.vbs │ ├── DeployWiz_ComputerName.xml │ ├── DeployWiz_Credentials.vbs │ ├── DeployWiz_Credentials.xml │ ├── DeployWiz_Definition_ENU.xml │ ├── DeployWiz_Initialization.vbs │ ├── DeployWiz_LanguagePack.vbs │ ├── DeployWiz_LanguagePack.xml │ ├── DeployWiz_LanguageUI.vbs │ ├── DeployWiz_LanguageUI.xml │ ├── DeployWiz_OfflineData.vbs │ ├── DeployWiz_OfflineData.xml │ ├── DeployWiz_ProductKeyVista.vbs │ ├── DeployWiz_ProductKeyVista.xml │ ├── DeployWiz_Ready.vbs │ ├── DeployWiz_Ready.xml │ ├── DeployWiz_Roles.vbs │ ├── DeployWiz_Roles.xml │ ├── DeployWiz_Roles.xsl │ ├── DeployWiz_SelectTS.vbs │ ├── DeployWiz_SelectTS.xml │ ├── DeployWiz_UserData.vbs │ ├── DeployWiz_UserData.xml │ ├── DeployWiz_UserDataRestore.vbs │ ├── DeployWiz_UserDataRestore.xml │ ├── DeployWiz_Validation.vbs │ ├── LTIApply.wsf │ ├── LTIBootstrap.vbs │ ├── LTICleanup.wsf │ ├── LTICopyScripts.wsf │ ├── LTIGetFolder.wsf │ ├── LTIOEM.wsf │ ├── LTISuspend.wsf │ ├── LTISysprep.wsf │ ├── LTITriggerUpgradeFailure.wsf │ ├── ListOfLanguages.xml │ ├── LiteTouch.vbs │ ├── LiteTouch.wsf │ ├── NICSettings_Definition_ENU.xml │ ├── OSDBranding.vbs │ ├── OSDBrandingx64.vbs │ ├── OSDEndTime.vbs │ ├── OSDLocalAdmins.vbs │ ├── OSDProgress.vbs │ ├── OSD_BaseVariables.vbs │ ├── ServerManager.xml │ ├── SetupComplete.cmd │ ├── SetupRollback.cmd │ ├── Summary_Definition_ENU.xml │ ├── Summary_scripts.vbs │ ├── UDIWizard.wsf │ ├── UDIWizard_Config.xml │ ├── UDIWizard_Config.xml.app │ ├── UDIoffline.xml │ ├── WelcomeWiz_Choice.vbs │ ├── WelcomeWiz_Choice.xml │ ├── WelcomeWiz_DeployRoot.vbs │ ├── WelcomeWiz_DeployRoot.xml │ ├── WelcomeWiz_Initialize.vbs │ ├── WelcomeWiz_Initialize.xml │ ├── WizUtility.vbs │ ├── Wizard.css │ ├── Wizard.hta │ ├── Wizard.ico │ ├── ZTIAppXmlGen.wsf │ ├── ZTIApplications.wsf │ ├── ZTIApplyGPOPack.wsf │ ├── ZTIAuthorizeDHCP.wsf │ ├── ZTIBCDUtility.vbs │ ├── ZTIBIOSCheck.wsf │ ├── ZTIBIOSCheck.xml │ ├── ZTIBackup.wsf │ ├── ZTIBde.wsf │ ├── ZTICoalesce.wsf │ ├── ZTIConfigFile.vbs │ ├── ZTIConfigure.wsf │ ├── ZTIConfigure.xml │ ├── ZTIConfigureADDS.wsf │ ├── ZTIConfigureDHCP.wsf │ ├── ZTIConfigureDNS.wsf │ ├── ZTIConfirmDiskpart.vbs │ ├── ZTIConnect.wsf │ ├── ZTICopyLogs.wsf │ ├── ZTIDataAccess.vbs │ ├── ZTIDisableBDEProtectors.wsf │ ├── ZTIDiskUtility.vbs │ ├── ZTIDiskpart.wsf │ ├── ZTIDomainJoin.wsf │ ├── ZTIDone.wsf │ ├── ZTIDrivers.wsf │ ├── ZTIErrorMsg.wsf │ ├── ZTIExecuteRunbook.wsf │ ├── ZTIGather.wsf │ ├── ZTIGather.xml │ ├── ZTIGroups.wsf │ ├── ZTILangPacksOnline.wsf │ ├── ZTIModifyVol.wsf │ ├── ZTIMoveStateStore.wsf │ ├── ZTINICConfig.wsf │ ├── ZTINextPhase.wsf │ ├── ZTINicUtility.vbs │ ├── ZTIOSRole.wsf │ ├── ZTIOSRolePS.ps1 │ ├── ZTIOptIn.wsf │ ├── ZTIPSUtility.vbs │ ├── ZTIPatches.wsf │ ├── ZTIPowerShell.wsf │ ├── ZTIPrereq.vbs │ ├── ZTISCCM.wsf │ ├── ZTISetBackground.wsf │ ├── ZTISetVariable.wsf │ ├── ZTISetupRollback.wsf │ ├── ZTISupportedPlatforms.xml │ ├── ZTITatoo.mof │ ├── ZTITatoo.wsf │ ├── ZTIUserState.wsf │ ├── ZTIUserState_Config.xml │ ├── ZTIUtility.vbs │ ├── ZTIVHDCreate.wsf │ ├── ZTIValidate.wsf │ ├── ZTIWinRE.wsf │ ├── ZTIWindowsUpdate.wsf │ ├── ZTIWipeDisk.wsf │ └── ztiRunCommandHidden.wsf │ └── scripts │ ├── Autorun.inf │ ├── BDD_Autorun.wsf │ ├── BDD_Welcome_ENU.xml │ ├── Credentials_ENU.xml │ ├── Credentials_scripts.vbs │ ├── DeployWiz_AdminAccounts.xml │ ├── DeployWiz_AdminPassword.vbs │ ├── DeployWiz_AdminPassword.xml │ ├── DeployWiz_Applications.vbs │ ├── DeployWiz_Applications.xml │ ├── DeployWiz_BitLocker.vbs │ ├── DeployWiz_BitLocker.xml │ ├── DeployWiz_CaptureImage.vbs │ ├── DeployWiz_CaptureImage.xml │ ├── DeployWiz_ComputerBackup.vbs │ ├── DeployWiz_ComputerBackup.xml │ ├── DeployWiz_ComputerName.vbs │ ├── DeployWiz_ComputerName.xml │ ├── DeployWiz_Credentials.vbs │ ├── DeployWiz_Credentials.xml │ ├── DeployWiz_Definition_ENU.xml │ ├── DeployWiz_Initialization.vbs │ ├── DeployWiz_LanguagePack.vbs │ ├── DeployWiz_LanguagePack.xml │ ├── DeployWiz_LanguageUI.vbs │ ├── DeployWiz_LanguageUI.xml │ ├── DeployWiz_OfflineData.vbs │ ├── DeployWiz_OfflineData.xml │ ├── DeployWiz_ProductKeyVista.vbs │ ├── DeployWiz_ProductKeyVista.xml │ ├── DeployWiz_Ready.vbs │ ├── DeployWiz_Ready.xml │ ├── DeployWiz_Roles.vbs │ ├── DeployWiz_Roles.xml │ ├── DeployWiz_Roles.xsl │ ├── DeployWiz_SelectTS.vbs │ ├── DeployWiz_SelectTS.xml │ ├── DeployWiz_UserData.vbs │ ├── DeployWiz_UserData.xml │ ├── DeployWiz_UserDataRestore.vbs │ ├── DeployWiz_UserDataRestore.xml │ ├── DeployWiz_Validation.vbs │ ├── LTIApply.wsf │ ├── LTIBootstrap.vbs │ ├── LTICleanup.wsf │ ├── LTICopyScripts.wsf │ ├── LTIGetFolder.wsf │ ├── LTIOEM.wsf │ ├── LTISuspend.wsf │ ├── LTISysprep.wsf │ ├── LTITriggerUpgradeFailure.wsf │ ├── ListOfLanguages.xml │ ├── LiteTouch.vbs │ ├── LiteTouch.wsf │ ├── NICSettings_Definition_ENU.xml │ ├── OSDBranding.vbs │ ├── OSDBrandingx64.vbs │ ├── OSDEndTime.vbs │ ├── OSDLocalAdmins.vbs │ ├── OSDProgress.vbs │ ├── OSD_BaseVariables.vbs │ ├── ServerManager.xml │ ├── SetupComplete.cmd │ ├── SetupRollback.cmd │ ├── Summary_Definition_ENU.xml │ ├── Summary_scripts.vbs │ ├── UDIWizard.wsf │ ├── UDIWizard_Config.xml │ ├── UDIWizard_Config.xml.app │ ├── UDIoffline.xml │ ├── WelcomeWiz_Choice.vbs │ ├── WelcomeWiz_Choice.xml │ ├── WelcomeWiz_DeployRoot.vbs │ ├── WelcomeWiz_DeployRoot.xml │ ├── WelcomeWiz_Initialize.vbs │ ├── WelcomeWiz_Initialize.xml │ ├── WizUtility.vbs │ ├── Wizard.css │ ├── Wizard.hta │ ├── Wizard.ico │ ├── ZTIAppXmlGen.wsf │ ├── ZTIApplications.wsf │ ├── ZTIApplyGPOPack.wsf │ ├── ZTIAuthorizeDHCP.wsf │ ├── ZTIBCDUtility.vbs │ ├── ZTIBIOSCheck.wsf │ ├── ZTIBIOSCheck.xml │ ├── ZTIBackup.wsf │ ├── ZTIBde.wsf │ ├── ZTICoalesce.wsf │ ├── ZTIConfigFile.vbs │ ├── ZTIConfigure.wsf │ ├── ZTIConfigure.xml │ ├── ZTIConfigureADDS.wsf │ ├── ZTIConfigureDHCP.wsf │ ├── ZTIConfigureDNS.wsf │ ├── ZTIConfirmDiskpart.vbs │ ├── ZTIConnect.wsf │ ├── ZTICopyLogs.wsf │ ├── ZTIDataAccess.vbs │ ├── ZTIDisableBDEProtectors.wsf │ ├── ZTIDiskUtility.vbs │ ├── ZTIDiskpart.wsf │ ├── ZTIDomainJoin.wsf │ ├── ZTIDone.wsf │ ├── ZTIDrivers.wsf │ ├── ZTIErrorMsg.wsf │ ├── ZTIExecuteRunbook.wsf │ ├── ZTIGather.wsf │ ├── ZTIGather.xml │ ├── ZTIGroups.wsf │ ├── ZTILangPacksOnline.wsf │ ├── ZTIModifyVol.wsf │ ├── ZTIMoveStateStore.wsf │ ├── ZTINICConfig.wsf │ ├── ZTINextPhase.wsf │ ├── ZTINicUtility.vbs │ ├── ZTIOSRole.wsf │ ├── ZTIOSRolePS.ps1 │ ├── ZTIOptIn.wsf │ ├── ZTIPSUtility.vbs │ ├── ZTIPatches.wsf │ ├── ZTIPowerShell.wsf │ ├── ZTIPrereq.vbs │ ├── ZTISCCM.wsf │ ├── ZTISetBackground.wsf │ ├── ZTISetVariable.wsf │ ├── ZTISetupRollback.wsf │ ├── ZTISupportedPlatforms.xml │ ├── ZTITatoo.mof │ ├── ZTITatoo.wsf │ ├── ZTIUserState.wsf │ ├── ZTIUserState_Config.xml │ ├── ZTIUtility.vbs │ ├── ZTIVHDCreate.wsf │ ├── ZTIValidate.wsf │ ├── ZTIWinRE.wsf │ ├── ZTIWindowsUpdate.wsf │ ├── ZTIWipeDisk.wsf │ └── ztiRunCommandHidden.wsf ├── Templates ├── DLClient.xml ├── DLServer.xml └── Distribution │ ├── Applications │ ├── CONFIG - Client Registry - Bulk Import │ │ ├── Environment_Tatoo.reg │ │ └── readme.txt │ ├── CONFIG - Client Script - Bulk Import │ │ ├── Example.cmd │ │ └── Readme.txt │ ├── CONFIG - Convert Eval SKU to KMS │ │ └── Convert-EvalToKMS.ps1 │ ├── CONFIG - Server Registry - Bulk Import │ │ ├── Environment_Tatoo.reg │ │ └── readme.txt │ ├── CONFIG - Server Script - Bulk Import │ │ ├── Example.cmd │ │ └── Readme.txt │ └── CONFIG - iSCSI │ │ └── ConfigiSCSI.wsf │ ├── Control │ ├── ApplicationGroups.xml │ ├── Applications.xml │ ├── Bootstrap.ini │ ├── CustomSettings.ini │ ├── DriverGroups.xml │ ├── Drivers.xml │ ├── LinkedDeploymentShareGroups.xml │ ├── LinkedDeploymentShares.xml │ ├── MediaGroups.xml │ ├── Medias.xml │ ├── OperatingSystemGroups.xml │ ├── OperatingSystems.xml │ ├── PackageGroups.xml │ ├── Packages.xml │ ├── SelectionProfileGroups.xml │ ├── SelectionProfiles.xml │ ├── Settings.xml │ ├── TaskSequenceGroups.xml │ ├── TaskSequences.xml │ └── Version.xml │ ├── Scripts │ ├── DeployWiz_ProductKeyVista.vbs │ ├── Extras │ │ ├── CopyOEM.wsf │ │ ├── ImageFactoryFork.wsf │ │ ├── Install-Chocolatey.ps1 │ │ ├── ZTIAppVerify.wsf │ │ ├── ZTIImageCleanup.wsf │ │ ├── ZTIVDIOptimizer.wsf │ │ ├── ZTIYellowBang.wsf │ │ └── remove-inboxappx.ps1 │ ├── LTIApply.wsf │ ├── ZTIApplications.wsf │ ├── ZTICScript.cmd │ ├── ZTICScript_log.wsf │ ├── ZTIDiskpart.wsf │ ├── ZTIGather.wsf │ ├── ZTISupportedPlatforms.xml │ └── ZTIUtility.vbs │ ├── Tools │ └── HyperV_Persist.xml │ ├── WinPE.x64 │ └── Windows │ │ └── System32 │ │ ├── Litetouch.cmd │ │ ├── reboot.cmd │ │ └── shutdown.cmd │ └── WinPE.x86 │ └── Windows │ └── System32 │ ├── Litetouch.cmd │ ├── reboot.cmd │ └── shutdown.cmd └── Test ├── Cattle └── Cattle.ps1 ├── HostTest ├── HostTest.ps1 ├── OSandTS-IE11.csv ├── OSandTS.csv ├── Patches-ie11.csv ├── Patches.csv ├── ScriptBlock.xml └── StartTest.cmd ├── Offline ├── Demo-HyperVQuickStart.ps1 ├── Demo-HyperVQuickStart1.ps1 ├── get-UpdatesFromMDTRun.ps1 └── rebuild.cmd └── ScriptBlock.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Build.ps1 -------------------------------------------------------------------------------- /Hydrate/Hydrate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Hydrate/Hydrate.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/LICENSE -------------------------------------------------------------------------------- /Library/DeployShared/DeployShared.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Library/DeployShared/DeployShared.psd1 -------------------------------------------------------------------------------- /Library/DeployShared/DeployShared.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Library/DeployShared/DeployShared.psm1 -------------------------------------------------------------------------------- /Library/DeployShared/Disk/invoke-dism.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Library/DeployShared/Disk/invoke-dism.ps1 -------------------------------------------------------------------------------- /Library/DeployShared/MDT/get-ADKPath.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Library/DeployShared/MDT/get-ADKPath.ps1 -------------------------------------------------------------------------------- /Library/rebuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Library/rebuild.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/README.md -------------------------------------------------------------------------------- /Setup/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/About.txt -------------------------------------------------------------------------------- /Setup/DeployShared.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/DeployShared.sln -------------------------------------------------------------------------------- /Setup/DeployShared/DeployShared.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/DeployShared/DeployShared.wixproj -------------------------------------------------------------------------------- /Setup/DeployShared/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/DeployShared/Product.wxs -------------------------------------------------------------------------------- /Setup/EULA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/EULA.rtf -------------------------------------------------------------------------------- /Setup/Hydrate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Setup/Hydrate.ps1 -------------------------------------------------------------------------------- /Source/MDT.8443/Get-MDTLatest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Get-MDTLatest.ps1 -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT.8443/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/CaptureOnly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/CaptureOnly.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/ConfigMgrPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/ConfigMgrPE.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/DartConfig8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/DartConfig8.dat -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/LiteTouchPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/LiteTouchPE.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/OldComputer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/OldComputer.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT.8443/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts.1/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts.1/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTIBootstrap.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTIBootstrap.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTIGetFolder.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTIGetFolder.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ServerManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ServerManager.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/SetupComplete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/SetupComplete.cmd -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/SetupRollback.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/SetupRollback.cmd -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIAppXmlGen.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIAppXmlGen.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIBCDUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIBCDUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIBIOSCheck.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIBIOSCheck.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIBIOSCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIBIOSCheck.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIConfigFile.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIConfigFile.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIConfigure.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIConfigure.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIConfigure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIConfigure.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIDataAccess.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIDataAccess.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIDomainJoin.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIDomainJoin.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIModifyVol.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIModifyVol.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTINICConfig.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTINICConfig.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTINextPhase.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTINextPhase.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTINicUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTINicUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIPSUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIPSUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIPowerShell.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIPowerShell.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIUserState.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIUserState.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIVHDCreate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIVHDCreate.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8443/scripts/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8443/scripts/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/Get-MDTLatest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Get-MDTLatest.ps1 -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT.8450/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/CaptureOnly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/CaptureOnly.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/ConfigMgrPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/ConfigMgrPE.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/DLClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/DLClient.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/DLServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/DLServer.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/DartConfig8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/DartConfig8.dat -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/LiteTouchPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/LiteTouchPE.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/OldComputer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/OldComputer.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT.8450/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts.1/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts.1/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTIBootstrap.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTIBootstrap.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTIGetFolder.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTIGetFolder.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ServerManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ServerManager.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/SetupComplete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/SetupComplete.cmd -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/SetupRollback.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/SetupRollback.cmd -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIAppXmlGen.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIAppXmlGen.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIBCDUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIBCDUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIBIOSCheck.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIBIOSCheck.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIBIOSCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIBIOSCheck.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIConfigFile.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIConfigFile.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIConfigure.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIConfigure.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIConfigure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIConfigure.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIDataAccess.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIDataAccess.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIDomainJoin.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIDomainJoin.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIModifyVol.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIModifyVol.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTINICConfig.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTINICConfig.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTINextPhase.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTINextPhase.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTINicUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTINicUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIPSUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIPSUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIPowerShell.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIPowerShell.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIUserState.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIUserState.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIVHDCreate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIVHDCreate.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8450/scripts/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8450/scripts/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/Get-MDTLatest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Get-MDTLatest.ps1 -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT.8456/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/CaptureOnly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/CaptureOnly.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/ConfigMgrPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/ConfigMgrPE.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/DartConfig8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/DartConfig8.dat -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/LiteTouchPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/LiteTouchPE.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/OldComputer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/OldComputer.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT.8456/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts.1/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts.1/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTIBootstrap.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTIBootstrap.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTIGetFolder.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTIGetFolder.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ServerManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ServerManager.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/SetupComplete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/SetupComplete.cmd -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/SetupRollback.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/SetupRollback.cmd -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIAppXmlGen.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIAppXmlGen.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIBCDUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIBCDUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIBIOSCheck.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIBIOSCheck.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIBIOSCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIBIOSCheck.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIConfigFile.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIConfigFile.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIConfigure.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIConfigure.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIConfigure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIConfigure.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIDataAccess.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIDataAccess.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIDomainJoin.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIDomainJoin.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIModifyVol.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIModifyVol.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTINICConfig.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTINICConfig.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTINextPhase.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTINextPhase.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTINicUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTINicUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIPSUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIPSUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIPowerShell.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIPowerShell.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIUserState.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIUserState.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIVHDCreate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIVHDCreate.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT.8456/scripts/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT.8456/scripts/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT2013/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTIBootstrap.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTIBootstrap.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTICopyScripts.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTICopyScripts.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTIGetFolder.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTIGetFolder.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/OSDBrandingx64.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/OSDBrandingx64.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/OSDLocalAdmins.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/OSDLocalAdmins.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ServerManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ServerManager.xml -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIAppXmlGen.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIAppXmlGen.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIBCDUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIBCDUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIBIOSCheck.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIBIOSCheck.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIBIOSCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIBIOSCheck.xml -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIConfigFile.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIConfigFile.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIConfigure.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIConfigure.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIConfigure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIConfigure.xml -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDataAccess.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDataAccess.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDiskUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDiskUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDomainJoin.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDomainJoin.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIModifyVol.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIModifyVol.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTINICConfig.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTINICConfig.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTINextPhase.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTINextPhase.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTINicUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTINicUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIPSUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIPSUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIPowerShell.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIPowerShell.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTISetVariable.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTISetVariable.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIUserState.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIUserState.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIVHDCreate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIVHDCreate.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Scripts/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Scripts/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT2013/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Applications.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Applications.xsd -------------------------------------------------------------------------------- /Source/MDT2013/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT2013/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013/Templates/CaptureOnly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/CaptureOnly.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/ConfigMgrPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/ConfigMgrPE.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT2013/Templates/DartConfig8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/DartConfig8.dat -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT2013/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/LiteTouchPE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/LiteTouchPE.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT2013/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT2013/Templates/OldComputer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/OldComputer.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/StateRestore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/StateRestore.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Unattend_x64.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Unattend_x64.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Unattend_x86.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Unattend_x86.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT2013/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT2013/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT2013U1.0/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT2013U1.0/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT2013U1.0/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1.0/scripts.1/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1.0/scripts.1/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT2013U1/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/BDD_Autorun.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/BDD_Autorun.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTIBootstrap.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTIBootstrap.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTIGetFolder.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTIGetFolder.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/OSDBranding.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/OSDBranding.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/OSDProgress.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/OSDProgress.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIAppXmlGen.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIAppXmlGen.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIBIOSCheck.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIBIOSCheck.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIBIOSCheck.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIBIOSCheck.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTICoalesce.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTICoalesce.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIConfigure.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIConfigure.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIConfigure.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIConfigure.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTICopyLogs.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTICopyLogs.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIDiskpart.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIDiskpart.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIErrorMsg.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIErrorMsg.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIModifyVol.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIModifyVol.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTINICConfig.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTINICConfig.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTINextPhase.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTINextPhase.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIOSRolePS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIOSRolePS.ps1 -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIPSUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIPSUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIUserState.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIUserState.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIVHDCreate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIVHDCreate.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIValidate.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIValidate.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Scripts/ZTIWipeDisk.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Scripts/ZTIWipeDisk.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT2013U1/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U1/scripts.1/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U1/scripts.1/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/Get-MDTLatest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Get-MDTLatest.ps1 -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/SCCM_Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/SCCM_Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/SCCM_Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/SCCM_Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/SCCM_Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/SCCM_Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/SCCM_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/SCCM_Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/SCCM_UDIReplace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/SCCM_UDIReplace.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/TSConfig.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/TSConfig.ini -------------------------------------------------------------------------------- /Source/MDT2013U2/SCCM/ZTIMediaHook.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/SCCM/ZTIMediaHook.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/Strip-Version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Strip-Version.ps1 -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/BDDAdminDB.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/BDDAdminDB.sql -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/BootOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/BootOrder.txt -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Bootstrap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Bootstrap.ini -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Client.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Custom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Custom.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/DartConfig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/DartConfig.dat -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Drivers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Drivers.xsd -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Generic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Generic.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Groups.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Groups.xsd -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/LTIOEM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/LTIOEM.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Medias.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Medias.xsd -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/News.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/News.xsl -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Packages.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Packages.xsd -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Server.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Settings.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Sysprep.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Sysprep.inf -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Unattend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Unattend.txt -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/VHDClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/VHDClient.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/VHDServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/VHDServer.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/Wimscript.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/Templates/Wimscript.ini -------------------------------------------------------------------------------- /Source/MDT2013U2/Templates/winpeshl.ini: -------------------------------------------------------------------------------- 1 | [LaunchApps] 2 | %SYSTEMROOT%\System32\bddrun.exe,/bootstrap 3 | -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LTICleanup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LTICleanup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LTISuspend.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LTISuspend.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LTISysprep.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LTISysprep.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/OSDEndTime.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/OSDEndTime.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/UDIoffline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/UDIoffline.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/WizUtility.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/WizUtility.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/Wizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/Wizard.ico -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIConnect.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIConnect.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIDrivers.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIDrivers.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIPatches.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIPatches.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts.1/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts.1/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/Autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/Autorun.inf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/LTIApply.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/LTIApply.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/LTIOEM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/LTIOEM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/LiteTouch.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/LiteTouch.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/LiteTouch.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/LiteTouch.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/UDIWizard.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/UDIWizard.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/Wizard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/Wizard.css -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/Wizard.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/Wizard.hta -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/Wizard.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/Wizard.ico -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIBackup.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIBackup.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIBde.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIBde.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIDone.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIDone.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIGather.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIGather.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIGather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIGather.xml -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIGroups.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIGroups.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIOSRole.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIOSRole.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIOptIn.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIOptIn.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIPrereq.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIPrereq.vbs -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTISCCM.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTISCCM.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTITatoo.mof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTITatoo.mof -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTITatoo.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTITatoo.wsf -------------------------------------------------------------------------------- /Source/MDT2013U2/scripts/ZTIWinRE.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Source/MDT2013U2/scripts/ZTIWinRE.wsf -------------------------------------------------------------------------------- /Templates/DLClient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Templates/DLClient.xml -------------------------------------------------------------------------------- /Templates/DLServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Templates/DLServer.xml -------------------------------------------------------------------------------- /Templates/Distribution/Control/Drivers.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/Distribution/Control/LinkedDeploymentShares.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/Distribution/Control/Medias.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/Distribution/Control/Packages.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/Distribution/WinPE.x64/Windows/System32/reboot.cmd: -------------------------------------------------------------------------------- 1 | wpeutil.exe reboot 2 | -------------------------------------------------------------------------------- /Templates/Distribution/WinPE.x64/Windows/System32/shutdown.cmd: -------------------------------------------------------------------------------- 1 | wpeutil.exe shutdown 2 | -------------------------------------------------------------------------------- /Templates/Distribution/WinPE.x86/Windows/System32/reboot.cmd: -------------------------------------------------------------------------------- 1 | wpeutil.exe reboot 2 | -------------------------------------------------------------------------------- /Templates/Distribution/WinPE.x86/Windows/System32/shutdown.cmd: -------------------------------------------------------------------------------- 1 | wpeutil.exe shutdown 2 | -------------------------------------------------------------------------------- /Test/Cattle/Cattle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/Cattle/Cattle.ps1 -------------------------------------------------------------------------------- /Test/HostTest/HostTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/HostTest.ps1 -------------------------------------------------------------------------------- /Test/HostTest/OSandTS-IE11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/OSandTS-IE11.csv -------------------------------------------------------------------------------- /Test/HostTest/OSandTS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/OSandTS.csv -------------------------------------------------------------------------------- /Test/HostTest/Patches-ie11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/Patches-ie11.csv -------------------------------------------------------------------------------- /Test/HostTest/Patches.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/Patches.csv -------------------------------------------------------------------------------- /Test/HostTest/ScriptBlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/ScriptBlock.xml -------------------------------------------------------------------------------- /Test/HostTest/StartTest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/HostTest/StartTest.cmd -------------------------------------------------------------------------------- /Test/Offline/Demo-HyperVQuickStart.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/Offline/Demo-HyperVQuickStart.ps1 -------------------------------------------------------------------------------- /Test/Offline/get-UpdatesFromMDTRun.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/Offline/get-UpdatesFromMDTRun.ps1 -------------------------------------------------------------------------------- /Test/Offline/rebuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/Offline/rebuild.cmd -------------------------------------------------------------------------------- /Test/ScriptBlock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithga/DeployShared/HEAD/Test/ScriptBlock.xml --------------------------------------------------------------------------------