2013-07-02 18 views
5

私はMotorola MC67を使用しています(問題はありませんが、ポータブルデバイスです)、ファイルを移動するためのバッチスクリプトを書いています。問題は、マウントされていないためマウントできないため、デバイスパスを呼び出すことができないということです。私はグーグルでWindowsのGUIからではなく、デバイスに近づくことについて何も見つけられませんでした。私はどこかでactiveSyncをポータブルデバイスから同期することができますが、それは私の役に立たないものです。とにかく、私は繰り返す、私のコンピュータからマウントされていないポータブルデバイスにファイルを移動する方法が必要です。 私は、バッチファイルwindows7のバッチを使用してポータブルデバイスにファイルを移動する方法

+0

progrematicly使用できますか? – Endoro

+0

http://windows.microsoft.com/en-sg/windows-vista/mount-or-dismount-a-drive –

+0

最初に知るべきことは、デバイスに物理的な接続があるかどうかです。 USB?メモリカードを受け入れますか?他のどれか? – Aacini

答えて

8

最初に、このソリューションに依存するcecopyユーティリティが含まれているので、Windows Mobile Developer Power Toysをダウンロードする必要があります。

基本的に、すべてを行う必要がある。ここで

cecopy file.exe dev:\file.exe 

はcecopyのreadmeです。

INSTRUCTIONS: 
Usage: CeCopy [options] <Source_FileSpec> <Destination> 

Options: 

    /is     Copy file even if identical. 
    /s     Include subdirectories, hierarchy reproduced on device. 

Arguments: 

    Source_FileSpec  File specification denoting the source of the copy. 
    Destination   Where files should be copied to. 

For the source, wild cards or directory names may be specified, as may be single files. The destination can be either a directory or a file name, depending on the type of source specified. 

By default, an argument is assumed to live on a local file system. To indicate that either argument denotes a location on a device connected via ActiveSync, prepend 'dev:' to that argument. To articulate that a local file system is referenced, prepend 'desk:' to the argument. 

Examples: 
"cecopy readme.txt dev:\readme.txt" copies this readme to the device's root. 
"cecopy /s *.* dev:\" copies all files and subfolders of current directory to device's root. Generates new folders on device as needed. 
"cecopy /s *.dll dev:\windows" copies all dlls and dlls in subfolders of current directory to the device's root. Generates new folders on device as needed. 
+0

サー。 ** Motorola Mobile Phone **デバイスにはMicrosoft Windows Mobile **オペレーティングシステムが搭載されていますか? –

+0

@DanyBee申し訳ありませんが、私はあなたの質問を理解していません。 CECOPYは、Window Mobileを搭載したデバイスに依存しません。 "CECopy - デスクトップActiveSyncに現在接続されているデバイスにファイルをコピーするためのコマンドラインツール"それは明らかに尋問者が必要としたものです。 – Gray

+0

上記のMicrosoftのリンクは無効です(http://www.microsoft.com/en-us/download/details.aspx?id=10601)。 2016年8月現在、信頼できるソースからCecopyツールを見つけることができません。 https://www.google.com/webhp?q=%22cecopy%22+mtp&tbs=qdr:y – davidmneedham

3

井戸からもアクセスできるので、あまりにも良いだろうデバイスをマウントする方法は、あなたが自体デバイスマウントすることはできませんが、Windows Portable Devices APIを介してアクセスすることができます。アプリケーションサンプルの一部はhereですが、C++になっています。 scripting interfaceがありますが、それはデバイスステージの経験に限られているようですが、実際にPowershellから利用できるようには思われません。

2

総司令官は、してくださいデバイスを認識し、それを介してファイルを転送するために使用することができ、あなたは正確にmount` `とはどういう意味ですか

関連する問題