Install
openclaw skills install @nextaltair/windows-usb-volume-triageDiagnose missing Windows USB volumes or mount paths safely with read-only disk, partition, volume, and PnP correlation.
openclaw skills install @nextaltair/windows-usb-volume-triageUse when Windows detects a USB disk or enclosure but an expected drive letter or directory mount is missing.
Get-Disk. Capture Number, FriendlyName, SerialNumber, UniqueId, Guid, Size, PartitionStyle, NumberOfPartitions, LargestFreeExtent, OperationalStatus, and HealthStatus.Get-Partition. Capture DiskNumber, PartitionNumber, Type, Size, Guid, and AccessPaths.Get-Volume -FilePath <path>. Record volume path, label, filesystem, and health. Treat Test-Path only as a directory/reparse-point check; it can succeed when no volume resolves there.UniqueId alone when several enclosure disks expose the same value or Windows logs duplicate-identifier events.Get-Disk -Number <n> and Get-Partition -DiskNumber <n>. A physical disk marked Healthy does not prove its partitions or mounted volume are visible.Get-PnpDevice and Get-PnpDeviceProperty. Capture the disk instance ID, parent USB instance, location, and bus-reported description.Update-HostStorageCache, then Update-Disk -Number <n>. Re-run the exact disk, partition, and mount checks.foreach output before piping to Format-Table; piping a statement directly can produce ParserError: EmptyPipeElement.Compare before and after refresh:
Get-Disk -Number <n>: NumberOfPartitions and LargestFreeExtent.Get-Partition -DiskNumber <n>: expected partition presence and access paths.Get-Volume -FilePath <path>: resolved volume path, filesystem, and health.Call recovery successful only when the expected partition and exact mount resolve. Otherwise state that refresh did not restore visibility and preserve the no-initialize/no-format warning.