diff --git a/src/PowerShellTips/2025-04-03-show-off-something.ps1 b/src/PowerShellTips/2025-04-03-show-off-something.ps1 new file mode 100644 index 00000000..4477599e --- /dev/null +++ b/src/PowerShellTips/2025-04-03-show-off-something.ps1 @@ -0,0 +1,15 @@ +$tip = [tiPS.PowerShellTip]::new() +$tip.CreatedDate = [DateTime]::Parse('2025-04-03') +$tip.Title = 'Show off something' +$tip.TipText = @' +blha lakjsdlkj ldsff +'@ +$tip.Example = @' + +'@ +$tip.Urls = @('') +$tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = '' # Optional. Get credit for your tip. e.g. 'Daniel Schroeder (deadlydog)'. +#$tip.ExpiryDate = [DateTime]::Parse('2024-10-30') # Optional. If the tip is not relevant after a certain date, set the expiration date. e.g. Announcing a conference or event. + +# Tip submitted via GitHub issue workflow.