USMT sample Examples

Custom XML configuration For example, perhaps you know users have mp3 files in folders that you might otherwise be migrating. The solution would be to include all files from C: except .mp3 files. For example, to get all files excluding mp3 files, you can use the following custom XML configuration file contents: <migration urlid=”https://www.microsoft.com/migration/1.0/m”>     … Read more

USMT Samples

Custom XML configuration For example, perhaps you know users have mp3 files in folders that you might otherwise be migrating. The solution would be to include all files from C: except .mp3 files. For example, to get all files excluding mp3 files, you can use the following custom XML configuration file contents: <migration urlid=”https://www.microsoft.com/migration/1.0/m”>     … Read more

To download multiple files from internet with Powershell

below script would be useful to download files from a text file which has  a url list.. it like your powershell download manager….:) $folder = “E:ThinkPad T420s” $userAgent = “Mozilla/5.0 (Windows NT 6.1; WOW64; rv:7.0.1) Gecko/20100101 Firefox/7.0.1” $web = New-Object System.Net.WebClient $web.Headers.Add(“user-agent”, $userAgent) Get-Content “E:WIPScriptsurls.txt” |     Foreach-Object {         “Downloading … Read more

SCCM and Bitlocker TPM Real Life

Read hear more https://www.sccm.biz/2012/06/sccm-and-bitlocker-tpm-real-life.html     Allright, I felt for blogging some more about getting TPM Activated on Dell, HP and Lenovo. To get the Bitlocker in action.Common Steps I use: DC – Prepare Active Directory SCCM – Prepare a 350MB Bitlocker partition in TS SCCM – Update BIOS SCCM – Reboot SCCM – Enable/Activate … Read more

Why to Use MDT and SCCM or both or why to integrate SCCM with MDT?

As usual the windows networking site posts..are “the best”.. this time for advance deployment I am trying to summarise here.. https://www.windowsnetworking.com/articles-tutorials/windows-7/Advanced-Deployment-Part1.html https://www.windowsnetworking.com/articles-tutorials/windows-7/Advanced-Deployment-Part2.html Few points to consider… You should ALWAYS use MDT (not SCCM!) for building, capturing and testing your reference images. You should PROBABLY NOT use MDT ALONE if you have more than a couple of sites … Read more