Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix dates for gaels demo
  • Loading branch information
nohwnd committed Jun 25, 2024
commit 17693aa4bf7349a4dcaa91b403201cce1ad14e17
2 changes: 1 addition & 1 deletion ex01/MyScript.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[datetime] $EventDate = '25/06/2024'
[datetime] $EventDate = '06/25/2024'
[string] $Presenter = 'Gael'
[string] $Subject = 'how to work with PowerShell modules'

Expand Down
2 changes: 1 addition & 1 deletion ex02/MyScript_withParams.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[datetime] $EventDate = '25/06/2024',
[datetime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down
2 changes: 1 addition & 1 deletion ex03/MyScript_withFunctions.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[datetime] $EventDate = '25/06/2024',
[datetime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down
2 changes: 1 addition & 1 deletion ex04/MyScript_withFunctions.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[datetime] $EventDate = '25/06/2024',
[datetime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down
2 changes: 1 addition & 1 deletion ex05-psm1/MyScript_withFunctions.psm1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[DateTime] $EventDate = '25/06/2024',
[DateTime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down
2 changes: 1 addition & 1 deletion ex06-module/MyScript_callingModule.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[DateTime] $EventDate = '25/06/2024',
[DateTime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down
2 changes: 1 addition & 1 deletion ex07-module-psd1/MyScript_callingModule.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
param
(
[DateTime] $EventDate = '25/06/2024',
[DateTime] $EventDate = '06/25/2024',
[string] $Presenter = 'Gael',
[string] $Subject = 'how to work with PowerShell modules'
)
Expand Down