I have tried this.
Sample hello.php
file:
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<?php echo '<p>Hello World</p>'; ?>
</body>
</html>
Sample ex.vbs
VBScript file:
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "D:\Example\hello.php", 0
When I executed VBScript in command prompt output is not displaying.