I have a remote server where I should test work of some application with USB drive. Unfortunately, there is no ability to install any USB drive there. So, I need to emulate a virtual USB drive in Windows. Application checks the disks that are on USB bus type:
Get-Disk | Where-Object { ($_.BusType -eq "usb")
Is there any way to emulate a virtual USB drive in Windows?