Public/Functions/split/Get-Volume.fixed.ps1
1 2 3 4 5 6 7 8 9 10 |
function Get-Volume.fixed { [CmdletBinding()] param () #================================================= # Return #================================================= Return (Get-Volume.osd | Where-Object {$_.IsUSB -eq $false}) #================================================= } |