Fonction d'appel PowerShell
Write-Host "Before calling Function."
function testFunction {
Write-Host "Function has been called"
}
testFunction
yakuub
Write-Host "Before calling Function."
function testFunction {
Write-Host "Function has been called"
}
testFunction