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

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -