Categories
- Blog (1)
- Grandstream UCM (1)
- IP Telephony (45)
- KVM (1)
- Linux (54)
- Microsoft (5)
- Mikrotik (14)
- Network (16)
- Paloalto Firewall (1)
- Uncategorized (196)
- Vicidial (6)
- VMware (67)
-
Recent Posts
- Integrating VICIdial with CRM: Solving Custom Field and Data Sync Issues
- How to Remove +91 / 91 from Incoming Caller ID in VICIdial (Fix Lead Matching Issue)
- How to Retrieve VICIdial Admin Password from MySQL Database
- How to Manage KVM Virtual Machines on Ubuntu Server Using virsh
- Palo Alto UNAT Configuration – Step-by-Step Lab Guide (LAN → DMZ via WAN)
Tag Archives: List all datastores and disk names
List all datastores and disk names
List all datastores and disk names Get-Datastore | Where-Object {$_.ExtensionData.Info.GetType().Name -eq “VmfsDatastoreInfo”} | ForEach-Object { if ($_) { $Datastore = $_ $Datastore.ExtensionData.Info.Vmfs.Extent | Select-Object -Property @{Name=”Name”;Expression={$Datastore.Name}}, DiskName } }