Calling a function within PowerShell ISE [closed] Calling a function within PowerShell ISE [closed] powershell powershell

Calling a function within PowerShell ISE [closed]


You have to declare the function before using it.

Write-Host "Before calling Function."function testFunction {    Write-Host "Function has been called"}testFunction