PS: Script to update SQL DB

Below is a PowerShell scripted version of silently updating the SQL DB and saving the SQL query results in a log file.   $sql_file = ‘C:appUpdate-SQLDB.sql’ $sql_log  = ‘C:appUpdate-SQLDB.log’ Add-Content -Path $sql_file  "Update <DBName>..<TableName> set db_database_name = ‘CustomDB_00’ Where db_database_name = ‘AppDefaultDB’" ; Add-Content -Path $sql_file  "Update <DBName>..<TableName> set db_database_name = ‘CustomDB_Trial_00’ Where db_database_name = ‘AppDefaultDB_Trial’" Write-Output "$sql_file" >> "$sql_log" SQLCMD.EXE -U sa -P ‘sapassword’ -S <DBServerName><DBInstanceName> -i $sql_file | out-File $sql_log

Read more

Citrix TechEdge 2011 Presentations and Videos

Citrix TechEdge is a free event hosted by top Citrix Technical Support engineers at Citrix Summit and Synergy, where you gain in-depth knowledge on the latest troubleshooting tools, methodologies and fixes for your Citrix Application Delivery Infrastructure. TechEdge 2011 was held on Tuesday, May 24th at the Moscone West Convention Center, San Francisco, California. Learn more about TechEdge. This article lists the presentations and videos from TechEdge 2011 that are available on the Citrix Knowledge Center. TechEdge 2011 PowerPoint and Video Presentations CTX129659 – TechEdge 2011 – HDX MediaStream for Flash configuration and troubleshooting CTX129663 – TechEdge 2011 – Case […]

Read more

Installing Windows Live Writer 2011

Home page is Windows Live Writer 2011. Upon clicking the Download button on the above page, you’ll get a Web based/Online Live installer. When you run the installer it downloads the actual installer files and installs. There is also an another version of installer called Offline installer which is the complete actual Live Applications installer. You can download the Windows Live Writer 2011 Offline installer here   Good Live Writer Plug-Ins All the Live Writer plug-ins are available on Windows Live Writer Plug-ins page Here are the some of the good plugins that I use: Insert File Plugin Insert Code […]

Read more