:: RCS 3.4 logon script per-user configuration :: :: This is specifically intended to handle the user upgrade from RCS 3.3 to RCS 3.4 :: and some parts of new user setup. :: If the directory '%USERPROFILE%\RCS34-CONFIG-DONE' doesn't exist, it configures: :: - shortcuts - only if this script hasn't run before / if the :: - OpenOffice configuration for the new OpenOffice 3 - only if this script hasn't run before :: You can cause this script to run again by deleting %USERPROFILE%\RCS34-CONFIG-DONE. :: :: Paste this file at the end of the logon script NETLOGON.BAT. :: :: This refreshes existing user shortcuts for changes brought in in RCS 3.4 :: or provides an initial shortcut suite for new users. IF NOT EXIST "%USERPROFILE%\RCS34-CONFIG-DONE" call "\\server\windows-admin\tweak-unattended\refresh-user-shortcuts.bat" :: These handle configuration for OpenOffice as the user gets a new OpenOffice profile in the move from :: OpenOffice 2 to OpenOffice 3. :: Warning: if run, these will replace a user's existing OpenOffice 3 settings. IF NOT EXIST "%USERPROFILE%\RCS34-CONFIG-DONE" call "\\server\windows-admin\tweak-unattended\irfanview-user-config.bat" IF NOT EXIST "%USERPROFILE%\RCS34-CONFIG-DONE" call \\server\windows-admin\tweak-unattended\openoffice3-configure-profile-1-odf.bat IF NOT EXIST "%USERPROFILE%\RCS34-CONFIG-DONE" call \\server\windows-admin\tweak-unattended\openoffice3-configure-profile-2.bat IF NOT EXIST "%USERPROFILE%\RCS34-CONFIG-DONE" call \\server\windows-admin\tweak-unattended\openoffice3-configure-profile-3.bat :: This makes sure this configuration is run only once per user :: unless the following directory is manually deleted mkdir "%USERPROFILE%\RCS34-CONFIG-DONE"