end of the video should refactor it

This commit is contained in:
2026-01-05 21:54:53 +01:00
parent 0ac9fb2303
commit d3cfde767f
8 changed files with 187 additions and 2 deletions

9
1.Basic/10.Function.ps1 Normal file
View File

@@ -0,0 +1,9 @@
function Test {
[CmdletBinding()] #turns into adv function
param(
[int32] $PingCount
)
Test-Connection google.com -Count $PingCount
}
Test