From 8b4f796cf5f7af3d2c5885f28f325166798299a4 Mon Sep 17 00:00:00 2001 From: deadlydog Date: Sun, 21 Apr 2024 12:37:15 -0600 Subject: [PATCH] Add Author to all existing tips --- src/PowerShellTips/2023-07-16-powershell-is-open-source.ps1 | 1 + .../2023-07-17-set-strict-mode-on-your-scripts.ps1 | 1 + src/PowerShellTips/2023-08-28-view-your-command-line-history.ps1 | 1 + .../2023-09-05-when-checking-for-null-put-null-on-the-left.ps1 | 1 + .../2023-09-06-use-ctrlr-to-search-your-terminal-history.ps1 | 1 + ...space-to-list-all-parameters-properties-and-possibilities.ps1 | 1 + ...2023-09-11-ensure-prerequisites-are-met-by-using-requires.ps1 | 1 + .../2023-09-11-join-the-monthly-powershell-community-call.ps1 | 1 + ...-09-11-read-and-write-excel-spreadsheets-with-importexcel.ps1 | 1 + ...-09-12-get-text-file-updates-in-realtime-with-get-content.ps1 | 1 + ...23-09-16-use-out-gridview-to-view-and-select-tabular-data.ps1 | 1 + ...9-17-use-f2-to-toggle-psreadline-predictions-to-list-view.ps1 | 1 + .../2023-09-18-split-long-lines-of-code-into-multiple-lines.ps1 | 1 + ...09-19-use-splatting-for-nicer-code-and-dynamic-parameters.ps1 | 1 + ...23-09-21-use-here-strings-for-hardcoded-multiline-strings.ps1 | 1 + ...se-psboundparameters-to-check-if-a-parameter-was-provided.ps1 | 1 + src/PowerShellTips/2023-09-22-avoid-array-addition.ps1 | 1 + ...-define-hardcoded-array-items-on-new-lines-without-commas.ps1 | 1 + .../2023-09-23-use-flags-to-allow-multiple-enum-values.ps1 | 1 + ...3-09-23-use-psversiontable-to-get-powershell-session-info.ps1 | 1 + ...ic-values-in-validateset-while-maintaining-tab-completion.ps1 | 1 + src/PowerShellTips/2023-10-02-quickly-create-temporary-file.ps1 | 1 + ...3-10-02-use-powershell-classes-for-strongly-typed-objects.ps1 | 1 + .../2023-10-03-powershell-devops-global-summit-2024.ps1 | 1 + .../2023-10-03-process-file-lines-with-the-switch-statement.ps1 | 1 + ...store-and-retrieve-secrets-securely-with-secretmanagement.ps1 | 1 + ...3-10-08-prompt-users-for-credentials-and-secrets-securely.ps1 | 1 + .../2023-10-09-powershell-conference-europe-2024.ps1 | 1 + src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1 | 1 + .../2023-10-11-create-test-files-of-arbitrary-size.ps1 | 1 + src/PowerShellTips/2023-10-11-get-file-name-from-url.ps1 | 1 + ...jects-with-dynamic-properties-using-calculated-properties.ps1 | 1 + ...20-use-out-consolegridview-for-a-cross-platform-grid-view.ps1 | 1 + .../2023-10-21-get-the-net-version-your-code-is-running-on.ps1 | 1 + ...023-10-21-learn-about-a-random-powershell-cmdlet-or-topic.ps1 | 1 + .../2023-10-24-use-trap-to-catch-unhandled-exceptions.ps1 | 1 + ...te-events-to-the-windows-event-viewer-with-write-eventlog.ps1 | 1 + ...023-10-31-use-select-object--to-see-all-object-properties.ps1 | 1 + ...-get-member-to-see-an-objects-type-methods-and-properties.ps1 | 1 + .../2023-11-05-get-and-set-the-clipboard-contents.ps1 | 1 + ...-member-to-add-custom-properties-and-methods-to-an-object.ps1 | 1 + ...11-18-the-ternary-operator-can-replace-if-else-statements.ps1 | 1 + ...-01-07-use-null-coalescing-to-avoid-nulls-and-null-checks.ps1 | 1 + .../2024-01-17-powershell-has-a-discord-community.ps1 | 1 + .../2024-02-11-get-web-request-from-browser-dev-tools.ps1 | 1 + ...owershelldle-to-test-and-expand-your-powershell-knowledge.ps1 | 1 + .../2024-02-18-see-variable-values-inline-while-debugging.ps1 | 1 + ...use-get-help--online-to-view-the-help-in-your-web-browser.ps1 | 1 + .../2024-02-26-vs-code-keybinding-to-always-run-powershell.ps1 | 1 + ...2024-03-04-get-filesystem-friendly-datetime-with-get-date.ps1 | 1 + 50 files changed, 50 insertions(+) diff --git a/src/PowerShellTips/2023-07-16-powershell-is-open-source.ps1 b/src/PowerShellTips/2023-07-16-powershell-is-open-source.ps1 index df939d9..a36ca7a 100644 --- a/src/PowerShellTips/2023-07-16-powershell-is-open-source.ps1 +++ b/src/PowerShellTips/2023-07-16-powershell-is-open-source.ps1 @@ -7,3 +7,4 @@ $tip.Urls = @( 'https://github.com/PowerShell/PowerShell' ) $tip.Category = [tiPS.TipCategory]::Community +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-07-17-set-strict-mode-on-your-scripts.ps1 b/src/PowerShellTips/2023-07-17-set-strict-mode-on-your-scripts.ps1 index f12a312..e138a90 100644 --- a/src/PowerShellTips/2023-07-17-set-strict-mode-on-your-scripts.ps1 +++ b/src/PowerShellTips/2023-07-17-set-strict-mode-on-your-scripts.ps1 @@ -7,3 +7,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/set-strictmode' ) $tip.Category = [tiPS.TipCategory]::Syntax +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-08-28-view-your-command-line-history.ps1 b/src/PowerShellTips/2023-08-28-view-your-command-line-history.ps1 index 2d97b2f..c329781 100644 --- a/src/PowerShellTips/2023-08-28-view-your-command-line-history.ps1 +++ b/src/PowerShellTips/2023-08-28-view-your-command-line-history.ps1 @@ -11,3 +11,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/powershell/module/microsoft.powershell.core/get-history' ) $tip.Category = [tiPS.TipCategory]::Terminal +$tip.Author = 'Emil Larsson (ehmiiz)' diff --git a/src/PowerShellTips/2023-09-05-when-checking-for-null-put-null-on-the-left.ps1 b/src/PowerShellTips/2023-09-05-when-checking-for-null-put-null-on-the-left.ps1 index 9b43a50..b34b074 100644 --- a/src/PowerShellTips/2023-09-05-when-checking-for-null-put-null-on-the-left.ps1 +++ b/src/PowerShellTips/2023-09-05-when-checking-for-null-put-null-on-the-left.ps1 @@ -15,3 +15,4 @@ $tip.Urls = @( 'https://stackoverflow.com/a/60996703/602585' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-06-use-ctrlr-to-search-your-terminal-history.ps1 b/src/PowerShellTips/2023-09-06-use-ctrlr-to-search-your-terminal-history.ps1 index 543e68c..578a048 100644 --- a/src/PowerShellTips/2023-09-06-use-ctrlr-to-search-your-terminal-history.ps1 +++ b/src/PowerShellTips/2023-09-06-use-ctrlr-to-search-your-terminal-history.ps1 @@ -13,3 +13,4 @@ $tip.Urls = @( 'https://woshub.com/powershell-commands-history/' ) $tip.Category = [tiPS.TipCategory]::Terminal # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-06-use-ctrlspace-to-list-all-parameters-properties-and-possibilities.ps1 b/src/PowerShellTips/2023-09-06-use-ctrlspace-to-list-all-parameters-properties-and-possibilities.ps1 index 87c0057..d7d2fe2 100644 --- a/src/PowerShellTips/2023-09-06-use-ctrlspace-to-list-all-parameters-properties-and-possibilities.ps1 +++ b/src/PowerShellTips/2023-09-06-use-ctrlspace-to-list-all-parameters-properties-and-possibilities.ps1 @@ -18,3 +18,4 @@ $tip.Urls = @( 'https://blog.danskingdom.com/PowerShell-intellisense-on-the-command-line/' ) $tip.Category = [tiPS.TipCategory]::Terminal # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-11-ensure-prerequisites-are-met-by-using-requires.ps1 b/src/PowerShellTips/2023-09-11-ensure-prerequisites-are-met-by-using-requires.ps1 index e57c290..472de95 100644 --- a/src/PowerShellTips/2023-09-11-ensure-prerequisites-are-met-by-using-requires.ps1 +++ b/src/PowerShellTips/2023-09-11-ensure-prerequisites-are-met-by-using-requires.ps1 @@ -20,3 +20,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_requires' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-11-join-the-monthly-powershell-community-call.ps1 b/src/PowerShellTips/2023-09-11-join-the-monthly-powershell-community-call.ps1 index e069b5c..005be07 100644 --- a/src/PowerShellTips/2023-09-11-join-the-monthly-powershell-community-call.ps1 +++ b/src/PowerShellTips/2023-09-11-join-the-monthly-powershell-community-call.ps1 @@ -13,3 +13,4 @@ $tip.Urls = @( 'https://www.youtube.com/@powershellanddscteamchanne5739' ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-11-read-and-write-excel-spreadsheets-with-importexcel.ps1 b/src/PowerShellTips/2023-09-11-read-and-write-excel-spreadsheets-with-importexcel.ps1 index 3986014..44e4fdc 100644 --- a/src/PowerShellTips/2023-09-11-read-and-write-excel-spreadsheets-with-importexcel.ps1 +++ b/src/PowerShellTips/2023-09-11-read-and-write-excel-spreadsheets-with-importexcel.ps1 @@ -24,3 +24,4 @@ $tip.Urls = @( 'https://github.com/dfinke/ImportExcel' ) $tip.Category = [tiPS.TipCategory]::Module # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-12-get-text-file-updates-in-realtime-with-get-content.ps1 b/src/PowerShellTips/2023-09-12-get-text-file-updates-in-realtime-with-get-content.ps1 index 3e797b0..0d68bab 100644 --- a/src/PowerShellTips/2023-09-12-get-text-file-updates-in-realtime-with-get-content.ps1 +++ b/src/PowerShellTips/2023-09-12-get-text-file-updates-in-realtime-with-get-content.ps1 @@ -14,3 +14,4 @@ $tip.Urls = @( 'https://4sysops.com/archives/parse-log-files-with-powershell/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-16-use-out-gridview-to-view-and-select-tabular-data.ps1 b/src/PowerShellTips/2023-09-16-use-out-gridview-to-view-and-select-tabular-data.ps1 index c21badf..9c7e236 100644 --- a/src/PowerShellTips/2023-09-16-use-out-gridview-to-view-and-select-tabular-data.ps1 +++ b/src/PowerShellTips/2023-09-16-use-out-gridview-to-view-and-select-tabular-data.ps1 @@ -12,3 +12,4 @@ $tip.Urls = @( 'https://woshub.com/using-out-gridview-table-powershell/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-17-use-f2-to-toggle-psreadline-predictions-to-list-view.ps1 b/src/PowerShellTips/2023-09-17-use-f2-to-toggle-psreadline-predictions-to-list-view.ps1 index 2d51043..b1dbef7 100644 --- a/src/PowerShellTips/2023-09-17-use-f2-to-toggle-psreadline-predictions-to-list-view.ps1 +++ b/src/PowerShellTips/2023-09-17-use-f2-to-toggle-psreadline-predictions-to-list-view.ps1 @@ -14,3 +14,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/psreadline/' ) $tip.Category = [tiPS.TipCategory]::Terminal # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-18-split-long-lines-of-code-into-multiple-lines.ps1 b/src/PowerShellTips/2023-09-18-split-long-lines-of-code-into-multiple-lines.ps1 index 1968c34..9511a49 100644 --- a/src/PowerShellTips/2023-09-18-split-long-lines-of-code-into-multiple-lines.ps1 +++ b/src/PowerShellTips/2023-09-18-split-long-lines-of-code-into-multiple-lines.ps1 @@ -36,3 +36,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_parsing?view=powershell-7.3#line-continuation' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-19-use-splatting-for-nicer-code-and-dynamic-parameters.ps1 b/src/PowerShellTips/2023-09-19-use-splatting-for-nicer-code-and-dynamic-parameters.ps1 index 386f62c..0d734cc 100644 --- a/src/PowerShellTips/2023-09-19-use-splatting-for-nicer-code-and-dynamic-parameters.ps1 +++ b/src/PowerShellTips/2023-09-19-use-splatting-for-nicer-code-and-dynamic-parameters.ps1 @@ -27,3 +27,4 @@ $tip.Urls = @( 'https://4sysops.com/archives/use-splatting-and-psboundparameters-to-pass-parameters-in-powershell/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-21-use-here-strings-for-hardcoded-multiline-strings.ps1 b/src/PowerShellTips/2023-09-21-use-here-strings-for-hardcoded-multiline-strings.ps1 index 70ea4cb..638b042 100644 --- a/src/PowerShellTips/2023-09-21-use-here-strings-for-hardcoded-multiline-strings.ps1 +++ b/src/PowerShellTips/2023-09-21-use-here-strings-for-hardcoded-multiline-strings.ps1 @@ -30,3 +30,4 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-21-use-psboundparameters-to-check-if-a-parameter-was-provided.ps1 b/src/PowerShellTips/2023-09-21-use-psboundparameters-to-check-if-a-parameter-was-provided.ps1 index ff30b96..6c6e687 100644 --- a/src/PowerShellTips/2023-09-21-use-psboundparameters-to-check-if-a-parameter-was-provided.ps1 +++ b/src/PowerShellTips/2023-09-21-use-psboundparameters-to-check-if-a-parameter-was-provided.ps1 @@ -25,3 +25,4 @@ $tip.Urls = @( 'https://www.reza-aghaei.com/how-to-determine-if-a-parameter-is-passed-to-a-powershell-cmdlet/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-22-avoid-array-addition.ps1 b/src/PowerShellTips/2023-09-22-avoid-array-addition.ps1 index acc360a..f6a0150 100644 --- a/src/PowerShellTips/2023-09-22-avoid-array-addition.ps1 +++ b/src/PowerShellTips/2023-09-22-avoid-array-addition.ps1 @@ -28,3 +28,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/scripting/dev-cross-plat/performance/script-authoring-considerations?view=powershell-7.3#array-addition' ) $tip.Category = [tiPS.TipCategory]::Performance # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Santiago Squarzon (santisq)' diff --git a/src/PowerShellTips/2023-09-23-define-hardcoded-array-items-on-new-lines-without-commas.ps1 b/src/PowerShellTips/2023-09-23-define-hardcoded-array-items-on-new-lines-without-commas.ps1 index 292621f..4e1123e 100644 --- a/src/PowerShellTips/2023-09-23-define-hardcoded-array-items-on-new-lines-without-commas.ps1 +++ b/src/PowerShellTips/2023-09-23-define-hardcoded-array-items-on-new-lines-without-commas.ps1 @@ -19,3 +19,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/scripting/learn/deep-dives/everything-about-arrays?view=powershell-7.3#create-an-array' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-23-use-flags-to-allow-multiple-enum-values.ps1 b/src/PowerShellTips/2023-09-23-use-flags-to-allow-multiple-enum-values.ps1 index e498ca1..7715e84 100644 --- a/src/PowerShellTips/2023-09-23-use-flags-to-allow-multiple-enum-values.ps1 +++ b/src/PowerShellTips/2023-09-23-use-flags-to-allow-multiple-enum-values.ps1 @@ -31,3 +31,4 @@ $tip.Urls = @( 'https://arcanecode.com/2021/12/06/fun-with-powershell-enum-flags/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-23-use-psversiontable-to-get-powershell-session-info.ps1 b/src/PowerShellTips/2023-09-23-use-psversiontable-to-get-powershell-session-info.ps1 index 4c5b94c..9e28fdb 100644 --- a/src/PowerShellTips/2023-09-23-use-psversiontable-to-get-powershell-session-info.ps1 +++ b/src/PowerShellTips/2023-09-23-use-psversiontable-to-get-powershell-session-info.ps1 @@ -14,3 +14,4 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_automatic_variables#psversiontable' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-09-29-use-dynamic-values-in-validateset-while-maintaining-tab-completion.ps1 b/src/PowerShellTips/2023-09-29-use-dynamic-values-in-validateset-while-maintaining-tab-completion.ps1 index ab65f10..7fe569b 100644 --- a/src/PowerShellTips/2023-09-29-use-dynamic-values-in-validateset-while-maintaining-tab-completion.ps1 +++ b/src/PowerShellTips/2023-09-29-use-dynamic-values-in-validateset-while-maintaining-tab-completion.ps1 @@ -29,3 +29,4 @@ $tip.Urls = @( 'https://www.linkedin.com/feed/update/urn:li:activity:7113300637735407618/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' diff --git a/src/PowerShellTips/2023-10-02-quickly-create-temporary-file.ps1 b/src/PowerShellTips/2023-10-02-quickly-create-temporary-file.ps1 index 638206d..20b2f8b 100644 --- a/src/PowerShellTips/2023-10-02-quickly-create-temporary-file.ps1 +++ b/src/PowerShellTips/2023-10-02-quickly-create-temporary-file.ps1 @@ -24,6 +24,7 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/dotnet/api/system.io.path.gettempfilename#system-io-path-gettempfilename' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Manjunath Beli (belibug)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-02-use-powershell-classes-for-strongly-typed-objects.ps1 b/src/PowerShellTips/2023-10-02-use-powershell-classes-for-strongly-typed-objects.ps1 index 37298dc..b6817cf 100644 --- a/src/PowerShellTips/2023-10-02-use-powershell-classes-for-strongly-typed-objects.ps1 +++ b/src/PowerShellTips/2023-10-02-use-powershell-classes-for-strongly-typed-objects.ps1 @@ -42,6 +42,7 @@ $tip.Urls = @( 'https://blog.danskingdom.com/PowerShell-class-definition-pros-cons-and-performance-comparison/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-03-powershell-devops-global-summit-2024.ps1 b/src/PowerShellTips/2023-10-03-powershell-devops-global-summit-2024.ps1 index c0a8d46..8a4a0e5 100644 --- a/src/PowerShellTips/2023-10-03-powershell-devops-global-summit-2024.ps1 +++ b/src/PowerShellTips/2023-10-03-powershell-devops-global-summit-2024.ps1 @@ -13,6 +13,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. $tip.ExpiryDate = [DateTime]::Parse('2024-04-11') # Optional. If the tip is not relevant after a certain date, set the expiration date. e.g. Announcing a conference or event. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-03-process-file-lines-with-the-switch-statement.ps1 b/src/PowerShellTips/2023-10-03-process-file-lines-with-the-switch-statement.ps1 index 36ba698..7d47bc4 100644 --- a/src/PowerShellTips/2023-10-03-process-file-lines-with-the-switch-statement.ps1 +++ b/src/PowerShellTips/2023-10-03-process-file-lines-with-the-switch-statement.ps1 @@ -27,6 +27,7 @@ $tip.Urls = @( 'https://twitter.com/dfinke/status/1698733677285388581' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-07-store-and-retrieve-secrets-securely-with-secretmanagement.ps1 b/src/PowerShellTips/2023-10-07-store-and-retrieve-secrets-securely-with-secretmanagement.ps1 index e47ec76..b6e1e41 100644 --- a/src/PowerShellTips/2023-10-07-store-and-retrieve-secrets-securely-with-secretmanagement.ps1 +++ b/src/PowerShellTips/2023-10-07-store-and-retrieve-secrets-securely-with-secretmanagement.ps1 @@ -26,6 +26,7 @@ $tip.Urls = @( 'https://www.pdq.com/blog/how-to-manage-powershell-secrets-with-secretsmanagement/' ) $tip.Category = [tiPS.TipCategory]::Security # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-08-prompt-users-for-credentials-and-secrets-securely.ps1 b/src/PowerShellTips/2023-10-08-prompt-users-for-credentials-and-secrets-securely.ps1 index 0288d8a..50cbdef 100644 --- a/src/PowerShellTips/2023-10-08-prompt-users-for-credentials-and-secrets-securely.ps1 +++ b/src/PowerShellTips/2023-10-08-prompt-users-for-credentials-and-secrets-securely.ps1 @@ -26,6 +26,7 @@ $tip.Urls = @( 'https://www.pdq.com/blog/secure-password-with-powershell-encrypting-credentials-part-1/' ) $tip.Category = [tiPS.TipCategory]::Security # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-09-powershell-conference-europe-2024.ps1 b/src/PowerShellTips/2023-10-09-powershell-conference-europe-2024.ps1 index cc8ed6d..5eef13c 100644 --- a/src/PowerShellTips/2023-10-09-powershell-conference-europe-2024.ps1 +++ b/src/PowerShellTips/2023-10-09-powershell-conference-europe-2024.ps1 @@ -12,6 +12,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. $tip.ExpiryDate = [DateTime]::Parse('2024-06-27') # Optional. If the tip is not relevant after a certain date, set the expiration date. e.g. Announcing a conference or event. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1 b/src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1 index 8b52dcf..311cfd0 100644 --- a/src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1 +++ b/src/PowerShellTips/2023-10-09-psconfeu-2023-minicon.ps1 @@ -13,6 +13,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. $tip.ExpiryDate = [DateTime]::Parse('2023-10-24') # Optional. If the tip is not relevant after a certain date, set the expiration date. e.g. Announcing a conference or event. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-11-create-test-files-of-arbitrary-size.ps1 b/src/PowerShellTips/2023-10-11-create-test-files-of-arbitrary-size.ps1 index a28efc3..77d3e62 100644 --- a/src/PowerShellTips/2023-10-11-create-test-files-of-arbitrary-size.ps1 +++ b/src/PowerShellTips/2023-10-11-create-test-files-of-arbitrary-size.ps1 @@ -25,6 +25,7 @@ $tip.Urls = @( 'https://claytonerrington.com/blog/creating-a-test-file' ) $tip.Category = [tiPS.TipCategory]::Other # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-11-get-file-name-from-url.ps1 b/src/PowerShellTips/2023-10-11-get-file-name-from-url.ps1 index 4dc421d..4355e74 100644 --- a/src/PowerShellTips/2023-10-11-get-file-name-from-url.ps1 +++ b/src/PowerShellTips/2023-10-11-get-file-name-from-url.ps1 @@ -29,6 +29,7 @@ $tip.Urls = @( 'https://twitter.com/devopsjeremy/status/1709773064563744888?s=46&t=-Ox1iPV67-4Vqb8wIZ275A' ) $tip.Category = [tiPS.TipCategory]::Other # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-14-create-new-objects-with-dynamic-properties-using-calculated-properties.ps1 b/src/PowerShellTips/2023-10-14-create-new-objects-with-dynamic-properties-using-calculated-properties.ps1 index cf4ddc8..8037d07 100644 --- a/src/PowerShellTips/2023-10-14-create-new-objects-with-dynamic-properties-using-calculated-properties.ps1 +++ b/src/PowerShellTips/2023-10-14-create-new-objects-with-dynamic-properties-using-calculated-properties.ps1 @@ -36,6 +36,7 @@ $tip.Urls = @( 'https://4sysops.com/archives/add-a-calculated-property-with-select-object-in-powershell/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-20-use-out-consolegridview-for-a-cross-platform-grid-view.ps1 b/src/PowerShellTips/2023-10-20-use-out-consolegridview-for-a-cross-platform-grid-view.ps1 index 1ea5d31..96d6a7d 100644 --- a/src/PowerShellTips/2023-10-20-use-out-consolegridview-for-a-cross-platform-grid-view.ps1 +++ b/src/PowerShellTips/2023-10-20-use-out-consolegridview-for-a-cross-platform-grid-view.ps1 @@ -15,6 +15,7 @@ $tip.Urls = @( 'https://github.com/PowerShell/GraphicalTools/' ) $tip.Category = [tiPS.TipCategory]::Module # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-21-get-the-net-version-your-code-is-running-on.ps1 b/src/PowerShellTips/2023-10-21-get-the-net-version-your-code-is-running-on.ps1 index b0abca3..eb48147 100644 --- a/src/PowerShellTips/2023-10-21-get-the-net-version-your-code-is-running-on.ps1 +++ b/src/PowerShellTips/2023-10-21-get-the-net-version-your-code-is-running-on.ps1 @@ -18,6 +18,7 @@ $tip.Urls = @( 'https://twitter.com/JeffHicks/status/1705007619499237525' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-21-learn-about-a-random-powershell-cmdlet-or-topic.ps1 b/src/PowerShellTips/2023-10-21-learn-about-a-random-powershell-cmdlet-or-topic.ps1 index dfce429..2723b8e 100644 --- a/src/PowerShellTips/2023-10-21-learn-about-a-random-powershell-cmdlet-or-topic.ps1 +++ b/src/PowerShellTips/2023-10-21-learn-about-a-random-powershell-cmdlet-or-topic.ps1 @@ -27,6 +27,7 @@ $tip.Urls = @( 'https://jdhitsolutions.com/blog/essential-powershell-resources/' ) $tip.Category = [tiPS.TipCategory]::Other # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-24-use-trap-to-catch-unhandled-exceptions.ps1 b/src/PowerShellTips/2023-10-24-use-trap-to-catch-unhandled-exceptions.ps1 index 2e1908a..994c752 100644 --- a/src/PowerShellTips/2023-10-24-use-trap-to-catch-unhandled-exceptions.ps1 +++ b/src/PowerShellTips/2023-10-24-use-trap-to-catch-unhandled-exceptions.ps1 @@ -29,6 +29,7 @@ $tip.Urls = @( 'https://www.sconstantinou.com/powershell-trap/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-28-write-events-to-the-windows-event-viewer-with-write-eventlog.ps1 b/src/PowerShellTips/2023-10-28-write-events-to-the-windows-event-viewer-with-write-eventlog.ps1 index b4684eb..cea4813 100644 --- a/src/PowerShellTips/2023-10-28-write-events-to-the-windows-event-viewer-with-write-eventlog.ps1 +++ b/src/PowerShellTips/2023-10-28-write-events-to-the-windows-event-viewer-with-write-eventlog.ps1 @@ -24,6 +24,7 @@ $tip.Urls = @( 'https://devblogs.microsoft.com/scripting/how-to-use-powershell-to-write-to-event-logs/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-10-31-use-select-object--to-see-all-object-properties.ps1 b/src/PowerShellTips/2023-10-31-use-select-object--to-see-all-object-properties.ps1 index 294fc3f..4f746eb 100644 --- a/src/PowerShellTips/2023-10-31-use-select-object--to-see-all-object-properties.ps1 +++ b/src/PowerShellTips/2023-10-31-use-select-object--to-see-all-object-properties.ps1 @@ -22,6 +22,7 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.utility/select-object' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-11-01-use-get-member-to-see-an-objects-type-methods-and-properties.ps1 b/src/PowerShellTips/2023-11-01-use-get-member-to-see-an-objects-type-methods-and-properties.ps1 index 62220dc..cbce32f 100644 --- a/src/PowerShellTips/2023-11-01-use-get-member-to-see-an-objects-type-methods-and-properties.ps1 +++ b/src/PowerShellTips/2023-11-01-use-get-member-to-see-an-objects-type-methods-and-properties.ps1 @@ -22,6 +22,7 @@ $tip.Urls = @( 'https://linuxhint.com/use-get-member-powershell/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-11-05-get-and-set-the-clipboard-contents.ps1 b/src/PowerShellTips/2023-11-05-get-and-set-the-clipboard-contents.ps1 index c6c1c68..477f963 100644 --- a/src/PowerShellTips/2023-11-05-get-and-set-the-clipboard-contents.ps1 +++ b/src/PowerShellTips/2023-11-05-get-and-set-the-clipboard-contents.ps1 @@ -21,6 +21,7 @@ $tip.Urls = @( 'https://adamtheautomator.com/powershell-copy-to-clipboard/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-11-10-use-add-member-to-add-custom-properties-and-methods-to-an-object.ps1 b/src/PowerShellTips/2023-11-10-use-add-member-to-add-custom-properties-and-methods-to-an-object.ps1 index 44bcb68..95107ce 100644 --- a/src/PowerShellTips/2023-11-10-use-add-member-to-add-custom-properties-and-methods-to-an-object.ps1 +++ b/src/PowerShellTips/2023-11-10-use-add-member-to-add-custom-properties-and-methods-to-an-object.ps1 @@ -33,6 +33,7 @@ $tip.Urls = @( 'https://ilovepowershell.com/powershell-modern/ultimate-guide-to-using-powershell-add-member-cmdlet/' ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2023-11-18-the-ternary-operator-can-replace-if-else-statements.ps1 b/src/PowerShellTips/2023-11-18-the-ternary-operator-can-replace-if-else-statements.ps1 index 4f0a5af..e88620c 100644 --- a/src/PowerShellTips/2023-11-18-the-ternary-operator-can-replace-if-else-statements.ps1 +++ b/src/PowerShellTips/2023-11-18-the-ternary-operator-can-replace-if-else-statements.ps1 @@ -29,6 +29,7 @@ $tip.Urls = @( 'https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_if#using-the-ternary-operator-syntax' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2024-01-07-use-null-coalescing-to-avoid-nulls-and-null-checks.ps1 b/src/PowerShellTips/2024-01-07-use-null-coalescing-to-avoid-nulls-and-null-checks.ps1 index c41e922..849c5a4 100644 --- a/src/PowerShellTips/2024-01-07-use-null-coalescing-to-avoid-nulls-and-null-checks.ps1 +++ b/src/PowerShellTips/2024-01-07-use-null-coalescing-to-avoid-nulls-and-null-checks.ps1 @@ -37,6 +37,7 @@ $tip.Urls = @( 'https://toastit.dev/2020/03/10/ps7now-null-conditional/' ) $tip.Category = [tiPS.TipCategory]::Syntax # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Daniel Schroeder (deadlydog)' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2024-01-17-powershell-has-a-discord-community.ps1 b/src/PowerShellTips/2024-01-17-powershell-has-a-discord-community.ps1 index 202286e..df7a77a 100644 --- a/src/PowerShellTips/2024-01-17-powershell-has-a-discord-community.ps1 +++ b/src/PowerShellTips/2024-01-17-powershell-has-a-discord-community.ps1 @@ -9,6 +9,7 @@ $tip.Urls = @( 'https://discord.gg/powershell' ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. +$tip.Author = 'Dwayne Gibbs' # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. # Editor: Editor tips and extensions. e.g. VSCode, ISE, etc. diff --git a/src/PowerShellTips/2024-02-11-get-web-request-from-browser-dev-tools.ps1 b/src/PowerShellTips/2024-02-11-get-web-request-from-browser-dev-tools.ps1 index ce84056..87f7dd2 100644 --- a/src/PowerShellTips/2024-02-11-get-web-request-from-browser-dev-tools.ps1 +++ b/src/PowerShellTips/2024-02-11-get-web-request-from-browser-dev-tools.ps1 @@ -12,6 +12,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Other # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. diff --git a/src/PowerShellTips/2024-02-11-play-powershelldle-to-test-and-expand-your-powershell-knowledge.ps1 b/src/PowerShellTips/2024-02-11-play-powershelldle-to-test-and-expand-your-powershell-knowledge.ps1 index c972020..d93c9e4 100644 --- a/src/PowerShellTips/2024-02-11-play-powershelldle-to-test-and-expand-your-powershell-knowledge.ps1 +++ b/src/PowerShellTips/2024-02-11-play-powershelldle-to-test-and-expand-your-powershell-knowledge.ps1 @@ -12,6 +12,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Community # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. diff --git a/src/PowerShellTips/2024-02-18-see-variable-values-inline-while-debugging.ps1 b/src/PowerShellTips/2024-02-18-see-variable-values-inline-while-debugging.ps1 index 2063b1b..41a7605 100644 --- a/src/PowerShellTips/2024-02-18-see-variable-values-inline-while-debugging.ps1 +++ b/src/PowerShellTips/2024-02-18-see-variable-values-inline-while-debugging.ps1 @@ -14,6 +14,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Editor # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. diff --git a/src/PowerShellTips/2024-02-18-use-get-help--online-to-view-the-help-in-your-web-browser.ps1 b/src/PowerShellTips/2024-02-18-use-get-help--online-to-view-the-help-in-your-web-browser.ps1 index a26c51b..dcf1ce2 100644 --- a/src/PowerShellTips/2024-02-18-use-get-help--online-to-view-the-help-in-your-web-browser.ps1 +++ b/src/PowerShellTips/2024-02-18-use-get-help--online-to-view-the-help-in-your-web-browser.ps1 @@ -20,6 +20,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. diff --git a/src/PowerShellTips/2024-02-26-vs-code-keybinding-to-always-run-powershell.ps1 b/src/PowerShellTips/2024-02-26-vs-code-keybinding-to-always-run-powershell.ps1 index fd74284..9a5ae99 100644 --- a/src/PowerShellTips/2024-02-26-vs-code-keybinding-to-always-run-powershell.ps1 +++ b/src/PowerShellTips/2024-02-26-vs-code-keybinding-to-always-run-powershell.ps1 @@ -19,6 +19,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::Editor # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc. diff --git a/src/PowerShellTips/2024-03-04-get-filesystem-friendly-datetime-with-get-date.ps1 b/src/PowerShellTips/2024-03-04-get-filesystem-friendly-datetime-with-get-date.ps1 index 1239a41..106891c 100644 --- a/src/PowerShellTips/2024-03-04-get-filesystem-friendly-datetime-with-get-date.ps1 +++ b/src/PowerShellTips/2024-03-04-get-filesystem-friendly-datetime-with-get-date.ps1 @@ -25,6 +25,7 @@ $tip.Urls = @( ) $tip.Category = [tiPS.TipCategory]::NativeCmdlet # Community, Editor, Module, NativeCmdlet, Performance, Security, Syntax, Terminal, or Other. #$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.Author = 'Daniel Schroeder (deadlydog)' # Category meanings: # Community: Social events and community resources. e.g. PowerShell Summit, podcasts, etc.