2017-04-04 12 views
-7

Googleからダウンロードしたファイル(ダウンロードフォルダ内にあります) を持っていて、自動実行フォルダ(コンピュータの電源を入れたときにファイルが実行されるフォルダ)に移動します。cmdを使用してファイルを移動しますか?

私はCMDコマンド(USBラバーダッキーを使用して行うことになるだろうということである理由を使用してファイルを移動する必要があります。 私は窓に10 64ビットを使用しています、それは任意の助けである場合。

ファイルが

C:\Users\%USERPROFILE%\Downloads\Test.exe 

と私は

C:\Users\%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 

理由であるためにそれを移動したいパスをされているパスはなぜ%USERPROFILE%それがSHOということですuldはすべてのコンピュータで動作します。

+2

[tag:rubberduck]タグはこれとは関係ありません。それらを使用する前に、タグの説明をお読みください。 –

+0

「移動」コマンドがあります... – SomethingDark

+1

最近ダウンロードしたファイルを自動実行するために全コンピュータで動作する一般化されたソリューションがマルウェア/ウイルスのように聞こえるのはなぜですか? – abelenky

答えて

-1

ファイルを移動するには、moveコマンドを使用します。

move "C:\Users\%USERPROFILE%\Downloads\Test.exe" "C:\Users\%USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup" 

私はあなたには、いくつかの理由で、ユーザー名にスペースを持っている(とターゲットが「スタートメニュー」内のスペースのためにとにかくそれらを必要とする)その一人だ場合には、ソースとターゲットの周りに引用符を置きます。 move /?の出力から

Moves files and renames files and directories. 

To move one or more files: 
MOVE [/Y | /-Y] [drive:][path]filename1[,...] destination 

    [drive:][path]filename1 Specifies the location and name of the file 
          or files you want to move. 
    destination    Specifies the new location of the file. Destination 
          can consist of a drive letter and colon, a 
          directory name, or a combination. If you are moving 
          only one file, you can also include a filename if 
          you want to rename the file when you move it. 
    [drive:][path]dirname1 Specifies the directory you want to rename. 
    dirname2    Specifies the new name of the directory. 

    /Y      Suppresses prompting to confirm you want to 
          overwrite an existing destination file. 
    /-Y      Causes prompting to confirm you want to overwrite 
          an existing destination file. 
+0

ありがとうございました –

+1

なぜ私がdownvotedを得たか分かりませんが、大丈夫です... – SomethingDark

-2

ファイルを移動するにはmvを使用しますが、管理者でない場合は作業しないでください。どのようにハックすることができますか、Windowsのスーパーユーザーツールを試してみてください!

+0

*私は英語でnoobです* – ramyres110

+1

Windowsにはコマンド 'mv'がありません(PowerShellのエイリアスは除く)。質問には、vbscriptタグとバッチファイルタグが付けられています。 –

0

%username%代わりの%userprofile%を使用してみてください。

関連する問題