• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Adding a scheduled task

Q

Quaxxon

Guest
Hello,

I have created a .vbs script to check on the Application pools and would like to run this every hour.

I have added it to the scheduler, but it doesnt run. I have manually created a task within windows, and this works perfectly. So the problem is getting the plesk scheduler to run.

In the path to executable file, i have entered both:

"C:\Documents and Settings\Administrator\Desktop\apppoolsmonitor.vbs"
AND
C:\Documents and Settings\Administrator\Desktop\apppoolsmonitor.vbs

The whole line in the task from windows is:
C:\WINDOWS\system32\cmd.exe /c ""C:\Program Files\SWsoft\Plesk\admin\bin\runtask.exe" "--application=\"C:\Documents and Settings\Administrator\Desktop\apppoolsmonitor.vbs\"" "--parameters=""


But doesnt work. Anyone have any clues? or will I just have to set this up manually?
 
Actually .vbs is not executable file. It should be loaded by
cscript.exe.

C:\Windows\system32\cscript.exe C:\DOCUME~1\ADMINI~1\Desktop\apppoolsmonitor.vbs
 
Back
Top