SQL Server エージェント 2005 のスケジュールされたタスクのスクリプト作成ステップで、別のサーバーで実行されている Web スクリプトをトリガーする必要があります。私はこれをやっています:
Dim ie
Set ie = CreateObject( "InternetExplorer.Application" )
ie.navigate "...to my dreamscript"
' Wait till IE is ready
Do While ie.Busy
(1)
Loop
ie.Quit
set ie = Nothing
(1)で「スリープ」(例: WScript.sleep(..))したいのですが、この環境ではWScriptが使えません。しばらく「眠る」別の方法はありますか?