Skip to content

Instantly share code, notes, and snippets.

View AF250329's full-sized avatar
🎯
Focusing

Fusman Aleksandr AF250329

🎯
Focusing
View GitHub Profile
@AF250329
AF250329 / example.ps1
Created April 28, 2022 17:48
Start-Job: Call another functions in a script
function Base-Function {
PARAM(
[string]
$PathToFile
)
if (Test-Path -Path $PathToFile) {
Write-Host "Exist"
}
}