Hi I Have a GenericScript.vbs file but while executing this i could not see output on the command prompt
<--GenericScript.vbs-->
Function Online()
MsgBox("Hello World")
Online = 0
End Function
Function Open()
Open = 0
End Function
Function Close()
Close = 0
End Function
Function LooksAlive()
LooksAlive = 0
End Function
Function IsAlive()
IsAlive = 0
End Function
<--GenericScript.vbs-->
How do i run my VBScript Block? In which Function do i have to call my MsgBox("Hello World")?
In the next Step, I will configure this Generic Script as a SQL Server SCP Script while failovering between nodes.
Kind Regards....