Created
December 2, 2017 22:33
-
-
Save mczerniawski/355c812acba6fb1c9498a2a669bd9af5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $StorageJobIDs = Get-StorageJob | Select-Object ObjectID | Select-String -Pattern '([A-Za-z0-9]{8}\-?){1}([A-Za-z0-9]{4}\-?){3}([A-Za-z0-9]{12})' -AllMatches | | |
| Select-Object -ExpandProperty Matches | | |
| Select-Object -ExpandProperty Value -Last 1 | |
| foreach ($objectId in $StorageJobIDs) { | |
| Get-VirtualDisk | Where-Object {$_.ObjectId -match $objectID} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment