Justin Grote

Results 875 comments of Justin Grote

@iSazonov I guess I meant more if someone is expecting certain information output on a script and now the script has a ton more information output than before and their...

To circle back on this, I think as an implementation: 1. Don't enable it by default due to breaking mention 2. New global variable `$WhatIfOutputPreference` to allow toggling whatif to...

@kilasuit I'm just trying to figure out how to make it a non-breaking change, albeit a rare edge case: `Invoke-CommandThatShows6InfoRecords -WhatIf 6>&1 | Should -HaveCount 6` would now fail. Inversely,...

> Just adding my usecase here. > > I am testing a script using -WhatIf. There are a lot of commands where WhatIf is used. I don't want those commands...

Related, @fMichaleczek or @SeeminglyScience is the CurrentUser module path exposed anywhere for modules to consume? Scenario: I want to use this config to cease the use of $HOME/Documents/PowerShell/Modules as a...

@PaulHigin any interest here? It's really hard to initialize the state of a job when you can't bring that state in from the caller's scope.

Thanks. To others as a workaround, you can append your init script to the main block and still be able to use USING ```powershell [scriptblock]::Create( [string]$initScript + [Environment]::NewLine + [string]$scriptblock...

@rdtechie I think it would be simple enough to do terraform style dependson where, if you reference the property of another object, an implicit DependsOn gets inserted there, though I'm...

@SydneyhSmith after several vault implementations I'm just calling Test-SecretVault in every single command as the first line basically, it would be nice to be a little less ham-fisted with it....