TSM Operation Center


IBM has released the TSM operation center which is the new administration GUI for TSM. I think my next project will be upgrading my TSM 6.3 to 6.4, and install the operation center, as OC only supports TSM 6.3.4 and later version. Two nice tutorial videos that I found on Youtube, enjoy! Tivoli Storage Manager … Continue reading TSM Operation Center

Create_User.bat


@ECHO OFF REM Get username and password from user's input set var1=%1 set var2=%2 REM Don't allow user to change password NET USER %var1% %var2% /add /expires:never /passwordchg:no REM User's password never expire wmic useraccount where "Name='%var1%'" set Passwordexpires=false REM Add user to remote desktop group NET localgroup "Remote Desktop Users" %var1% /add REM Create … Continue reading Create_User.bat

How to backup SQL logs and truncate them in BE 2012


This article is quoted from http://www.symantec.com/connect/articles/how-backup-sql-logs-and-truncate-them-be-2012If your SQL database is set to Full Recovery Mode, it maintains transaction logs.  If these logs are not truncated from time to time, they will grow and eventually fill up your disk.  BE will warn you that you need to truncate your log.V-79-40960-37914 - Database database_name is configured to … Continue reading How to backup SQL logs and truncate them in BE 2012