Modules.PSOneTools
Modules.PSOneTools copied to clipboard
Home of PSOneTools, an open-source PowerShell module with tids and bits taken from articles published at https://powershell.one
On the line: https://github.com/TobiasPSP/Modules.PSOneTools/blob/635fc55e71a92af51e3b13bd9d11720088e3584c/PSOneTools/2.4/Find-PSOneDuplicateFile.ps1#L50 `'*'` Should be changed to: `$Filter`: `[IO.DirectoryInfo]::new($Path).GetFiles($Filter, 'AllDirectories')` Without this change, the parameter $Filter is ignored.
Originally I was proposing https://github.com/TobiasPSP/Modules.PSOneTools/pull/9; then I remembered the unapproved verb warnings I've been suppressing from PowerShell 7. The functions have been renamed using the approved verb `Invoke`, and with...
Fix the release notes.
Group-ObjectFast output name value is not the key value. This is for issue #5
Shafix
First: I apologize for the formatting changes. My VSCode defaults are different than yours so when I saved the files the braces and such moved around. Second: the comparison for...
$vmObjs is an array of Azure VM objects ``` $vmObjs | Group-ObjectFast -Property osType | Select-Object -Property Count, Name, Values Count Name Values ----- ---- ------ 9482 Windows 292 Windows...
If you group multiple properties standard Group-Object uses ", " (comma + space) as delimiter in the `Name` field. Line 42 has an error in `join` operator argument ``` $key...
Method .send() takes time to resolve hostname if you pass not ipaddress. So if you pass a dead name you will get an exception. I would suggest this solution: ```...
Add a Filter in the "slow way" portion of both Find-PSOneDuplicateFile and Find-PSOneDuplicateFileFast