View Single Post
  #2 (permalink)  
Old 09-29-2008, 02:29 PM
vbsramesh vbsramesh is offline
Junior Member
 
Join Date: Sep 2008
Posts: 12
Thanks: 1
Thanked 0 Times in 0 Posts
Default solution is here

finally i got the solution after a long research.. with shell script

function OpenSchedule(url,MSPSServerName)
{
var test;
test ='\"C:\\Program Files\\Microsoft Office\\Office12\\winproj.exe\" /s ';
test=test+'\"'+MSPSServerName+'\" ';
test=test+'\"<>\\'+url+'\"';
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run(test);
}

.....ramesh
Reply With Quote