We have several custom scripts that were written in VBScript for SDL Tridion 5.2. These scripts use the TOM API to perform several bulk actions on Tridion objects.
After a recent upgrade to 2011 Service Pack 1 (SP1), we now have a requirement to change the component template used in a large number of component presentations, and the best way to do this is to run a script to update the necessary pages and component presentations.
Previously, we could run some VBScript similar to the code below to make this change. In 2011, can we still run these scripts for this kind of change?
Is it as simple as enabling classic ASP on the Content Manager server (Windows 2008 R2)?
<% '##### CREATE TRIDION API OBJECTS ##### Set TDSE = Server.CreateObject("TDS.TDSE") Call TDSE.Initialize() '
I know that this could probably be done using the Core Service, but without knowing this code or .Net, is it possible to use VBScript for this?
source share