2011
Jul 
22

WebEx and GotoMeeting corporate GPO deployment

Filed under: Technical — admin @ 11:54 am

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

2011
Jul 
12

Windows 2008 Repadmin

Filed under: Technical — admin @ 12:32 pm

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

2011
Jul 
1

Mine.bat

Filed under: Technical — admin @ 4:59 pm

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>