Install SCCM 2016 Step by Step
[Windows] Application GUID

Pour récupérer le GUID d'une appli en vue de faire un msiexec /X. Il suffit de faire dans une cmd: wmic product get name,identifyingnumber on obtient un liste des applis et leur GUID
[SCCM] import task sequence

#Requires -Version 3.0<# .SYNOPSIS Imports a Task Sequence from a XML file .DESCRIPTION Imports a Task Sequence from a XML file as used by ConfigMgr 2007 and older. ConfigMgr 2012 and above use a different format for the default export via the ConfigMgr...
[SCCM] export task sequence

#Requires -Version 3.0<# .SYNOPSIS Exports a Task Sequence as an XML file .DESCRIPTION Exports a Task Sequence as an XML file as used by ConfigMgr 2007 and older. ConfigMgr 2012 and above use a different format for the default export via the ConfigMgr...
[MDT] mdtcustomizations
USMT: script for both scanstate and loadstate in VBScript for windows 7 to windows 10

(A little thanks for you is a big gift for me) this script in compatible with both cscript and deployment TaskSequence : ################################################################ On Error Resume NextstrComputer = "."const HKEY_LOCAL_MACHINE = &H80000002Const...
Scripting the backing up of user profiles with USMT

source: https://mightbehelpful.wordpress.com/2014/05/07/scripting-the-backing-up-of-user-profiles-with-usmt/
Migrate-WindowsUserProfile

<#.SYNOPSISMigrate user state from one PC to another using USMT..DESCRIPTIONMigrate user state from one PC to another using USMT. Intended for domain joined computers.By default, all user profile data except Favorites and Documents will be included.Tool...
USMT Script

Add-PSSnapin Microsoft.SharePoint.PowerShell function MigrateUserOrGroups($migrationType, $csvFile) { #Getting the SPFarm object $farm = Get-SPFarm Write-Host $migrationType #Checking whether the user input the type of Migration as Group if($migrationType...