powershell - Open command prompt to access folders of a USB connected windows phone -
i trying open command prompt access folders of usb connected windows phone. have tried several commands following no avail.
wmic logicaldisk name get-wmiobject win32_diskdrive | { $_.interfacetype -eq 'usb' }
could suggest me best way accomplish without using tool? task access mobile device adjust language settings using powershell commands.
phone : lumia 1020 running windows phone 8.
to list of usb drives attached pc, execute command.
get-wmiobject win32_volume -filter "drivetype='2'"
if mobile attached usb disk, should show up. data back, should able extract things caption, label, name , driveletter. can automate things little bit further:
cd (get-wmiobject win32_volume -filter "drivetype='2'" | where-object label -eq "yourdiskname").driveletter
Comments
Post a Comment