Public/OSDCloud/Get-OSDCloud.offline.path.ps1
function Get-OSDCloud.offline.path { [CmdletBinding()] param () $OSDCloudOfflinePath = @() $OSDCloudOfflinePath = Get-PSDrive -PSProvider FileSystem | Where-Object {$_.Name -ne 'C'} | ForEach-Object { Get-Item "$($_.Name):\OSDCloud" -Force -ErrorAction Ignore } $OSDCloudOfflinePath } |