WebEx sure makes it hard to find the right msi files for GPO deployment. Here’s the trick: go to http://webexhelp.webex.com. Click on Meeting Center tab, then Support/Downloads and grab the Meeting Center Application for both IE and Firefox in msi format. Could they make it any harder?
For GotoMeeting, see http://support.citrixonline.com/GoToMeeting/search?search=msi
Say goodbye to replmon, say hello to repadmin. Gone are the days of good old replmon, so to force AD replication across site boundaries and all just do the following at the command line:
repadmin/syncall /APed
This script will take ownership of all files and grant you permissions to them if you are having trouble with file permissions. Name it mine.bat:
::Mine
::Usage mine.bat “c:\documents and settings\user\my documents”
::Created by Jason Knight
::10/02/2007
takeown /F %1 /R /D y
cacls %1 /G administrators:F /t
Now all you have to do from the command prompt is:
mine <path to files/folders>