Automate Google Chrome Deployment with ConfigMgr

This will automate the install of Chrome, as well as provide information on customizing the default user experience for your environment. Updated 12/4 to included PowerShell Script (Load_Chrome.ps1) – Script adds popup box if user has Chrome Open before installing. (Included in the Download Zip File) – Thanks @Geodesicz Note – Updated 12/4,  Version 47.0.2526.73 … Read more

Automate Adobe Flash Deployment with ConfigMgr

This deployment will use two deployment types, to deploy both Active X & Plugin version to Windows 7 or just the Plugin version to Windows 8+ Create your Folder Structure: \\ConfigMgrSourceServer\Apps\Adobe\Flash\VersionNumber\ Download Adobe Flash (Active X & Plugin Versions) here: www.adobe.com/products/flashplayer/distribution3.html – This page will be decommissioned on Jan 22nd, 2016, so you’ll need to … Read more

Automate Adobe AIR Deployment with ConfigMgr

Create your Folder Structure:\\ConfigMgrSourceServer\Apps\Adobe\AIR\VersionNumber\ Download Adobe AIR: http://www.adobe.com/products/air/runtime-distribution3.html Scripts & Files available here: http://garytown.com/Downloads/AIR.zip Create your Install & Uninstall Scripts: Load_AdobeAIR.cmd Script:—————————– REM Install Adobe AIR“%~dp0AdobeAIRInstaller.exe” -silent -eulaAccepted REM Disable AutoUpdatereg add “HKLM\SOFTWARE\Policies\Adobe\AIR” /v UpdateDisabled /t REG_DWORD /d 1 /f ——————————   Uninstall_AdobeAIR.cmd—————————— :uninstallAdobeAIRWMIC product where (name like “Adobe Air%%”) Call Uninstall ————————-   Use … Read more

Automate GreenShot Deployment with ConfigMgr

Quick Note, I use Greenshot for all of the screen captures on my site.  It’s a great handy Free utility. Create your Folder Structure: \\ConfigMgrSourceServer\Apps\GreenShot\VersionNumber\ Download GreenShot: http://sourceforge.net/projects/greenshot/ Scripts & Files available here: http://garytown.com/Downloads/GreenShot.zip Create your Install & Uninstall Scripts: Load_GreenShot.cmd Script: —————————– :KillGreenShotProcesses echo *** This will kill Greenshot Processes *** Rem *** taskkill … Read more

Secure Wipe with logging using ConfigMgr Task Sequence

First off, I want to give credit where Due, I first borrowed this idea from Jeremy @ syswow– http://syswow.blogspot.com/2012/05/secure-dod-drive-wiping-with-sccm.html Then Modified it to give feed back to our Service Desk, and keep a record on the ServerAlso changed it from one 1 step to run 7 passes, to having 7 steps run a single pass, … Read more