SCCM 2012 Free tools

Infrastructure and Client  Management Johan Arwidmark ConfigMgr R2 Hydration Kit – https://www.deploymentresearch.com/Research/tabid/62/EntryId/113/The-Hydration-Kit-for-ConfigMgr-2012-R2-is-available-for-download.aspx Mikael Nyström System center Hydration Kit – https://deploymentbunny.com/2013/01/04/hydration-kit-v3-is-out/ Startup Script –https://blog.configmgrftw.com/?page_id=349 Right Click tools – https://psrightclicktools.codeplex.com/releases/view/104529 Right click took – https://myitforum.com/myitforumwp/2012/09/21/sccm-rctools/ Client Center – https://sccmclictr.codeplex.com/ David’s Inventory Script PowerShell – https://www.david-obrien.net/2014/01/30/update-inventory-script-makes-configmgr-life-easier/ Garth’s Inventory Script vbSript – https://www.enhansoft.com/pages/downloads.aspx CM12Healthcheck toolkit – https://www.rflsystems.co.uk/sccm-2012-r2-healthcheck-toolkit/ ConfigMgr 2012 Registration Request – https://configmgrregistratio.codeplex.com/ PowerShell Right Click tools – https://blog.coretech.dk/kaj/sccm-client-actions-tool-powershell-edition-aka-poshcat/ … Read more

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