Upgrade TSM from 6.3.1 to 6.4.1


It is a little bit confusing about the TSM version convention, as different components may be at different versions. In my case, I am going to upgrade my TSM to 6.4.1. The server version is actually 6.3.4 instead of 6.4.1. Tivoli® Storage Manager Version 6.4.1 and Tivoli Storage Manager Extended Edition Version 6.4.1 are made … Continue reading Upgrade TSM from 6.3.1 to 6.4.1

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