Installing Google Chat Plugin into your Image

Add this to your current Windows 7 image. This allows the Google Chat Plugin to be installed to each new user profile.

@echo off
rem place default.cmd file here
rem C:\users\default\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

rem place googletalkpluginaccel.msi here
rem C:\Windows\Installer\

Title Administrative Installer by Eddie Jackson
color 0a

cls
Echo Installing Google Chat Plugin…
c:\windows\system32\msiexec.exe /i “C:\Windows\Installer\googletalkpluginaccel.msi” /qn /norestart

cls
echo Google Plugin Installed!
c:\windows\system32\ping.exe -n 4 127.0.0.1>nul

rem
ADD FUTURE ITEMS HERE

cls
echo Exiting now…
c:\windows\system32\ping.exe -n 4 127.0.0.1>nul

rem removes the default.cmd from the current user logged in
del /q “C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\default.cmd”
exit /b 0

email me