Matt Cargile
Matt Cargile
This binary was removed as of [_2.11_](https://pandoc.org/releases.html#pandoc-2.11-2020-10-11). Prevent broken shim from being generated.  I assume this is the straightforward line to modify? https://github.com/majkinetor/au-packages/blob/e97e838e8ca006054383cb650886045f3c5e5f3d/pandoc/tools/chocolateyInstall.ps1#L22 The below uninstall seems less straightforward...
**Is your feature request related to a problem? Please describe.** It would be nice to see the autocomplete script use the `ShellCompDirectiveDefault` instead of `ShellCompDirectiveNoFileComp` on completion of the first...
Fixes #104 Add logic if `pwd` is a UNC path. Starting a `cmd.exe` process from a UNC path displays an unecessary warning message so ensuring the `pwd` is set to...
Paths with a dollar sign ( $ ) do not parse correctly when passed in it appears. I haven't looked in depth at the code but I think this is...
## Bug Report #### Current Behavior `Summary` property is not ever displayed at this piece of code. I've tried various forms of `scoop alias list -v` or `scoop alias list...
### Summarize Command's Functionality Potentially add a new `Get-DbaUda` and `Remove-DbaUda` *or* add `Database.UserDefinedAggregates` to `Get-DbaUdf`. Off the jump, I _think_ I would prefer the latter. My initial assumption was...
Are you willing to put up the source code for the compiled portion of this code base. It would certainly help as community members and I have often wondered about...
I'm exploring decrypting `dtsx` files using the same logic in the aforementioned method found below. I'm using `pwsh.exe` and I can only decrypt mostly successfully if I use `[System.Security.Cryptography.PaddingMode]::ISO10126` otherwise...
Usage like `ig -CustomData @{ pwd = 'a', 'B' } '[pwd]'` returns the present working directory because there is an [_Alias_](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_command_precedence?view=powershell-7.3#using-wildcards-in-execution) with this name already. Maybe one could use execution...
Line below returns a path like `\\server\path\to\file` while the `prompt` function uses `$pwd` which returns `Microsoft.PowerShell.Core\FileSystem::\\server\path\to\file` https://github.com/vors/ZLocation/blob/d569d35db3d05d9b4d96d00bbc0ec0dbd105d844/ZLocation/ZLocation.psm1#L248 Not sure how to handle. One one hand the below code could `Resolve-Path`...