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