Luc Fullenwarth
Blogs, Articles, and Posts
Concatenate PowerShell arrays on the fly
(itluke.online)
Here is a method to build a global array at the same time you collect data from various parts of a
By: Luc FULLENWARTH submitted:Mar 24 2023
Here is a method to build a global array at the same time you collect data from various parts of a
tree.
By: Luc FULLENWARTH submitted:Mar 24 2023
How to easily sign PowerShell scripts
(itluke.online)
I am a SysAdmin and whenever I need to type interactive commands I use ISE because I can work
By: Luc Fullenwarth submitted:Jun 15 2022
I am a SysAdmin and whenever I need to type interactive commands I use ISE because I can work
simultaneously on several servers from several script panes. However, when I write scripts, functions or modules I use VSCode. Unfortunately, at the time of this writing, in VSCode there is no builtin feature, nor extension to assist us in signing PowerShell code
By: Luc Fullenwarth submitted:Jun 15 2022
PowerShell ternary operator tips
(itluke.online)
Like you probably know, the PowerShell ternary operator ? : is the equivalent of the If/Then/Else
By: Luc Fullenwarth submitted:Jun 15 2022
Like you probably know, the PowerShell ternary operator ? : is the equivalent of the If/Then/Else
statement.
By: Luc Fullenwarth submitted:Jun 15 2022
Use cases for PowerShell Help Messages
(itluke.online)
If you are like me, when you type a command line, you hit the TAB key to auto-fill parameters'
By: Luc Fullenwarth submitted:Jun 15 2022
If you are like me, when you type a command line, you hit the TAB key to auto-fill parameters'
values. Or, when you don't know which value to enter, you hit CTRL + C and you use a search engine or the Get-Help -Name CmdletName -Parameter ParameterName command line to find out which value to enter.
By: Luc Fullenwarth submitted:Jun 15 2022
Use cases for the new null coalescing operator in PowerShell 7
(itluke.online)
I was just watching the recent presentation from the Research Triangle PowerShell Users Group, in
By: Luc FULLENWARTH submitted:Jun 15 2022
I was just watching the recent presentation from the Research Triangle PowerShell Users Group, in
which there is a demo about the new null coalescing operator in PowerShell 7 (by the way you should really subscribe to their Youtube channel!). And, someone asked what could be a use case for this operator.
By: Luc FULLENWARTH submitted:Jun 15 2022