0

Windows 2003 サーバーでコマンド ライン コマンドを実行できません。

以下は、メモ帳に入れて.batとして保存し、RUNしても役に立たないパスです。

D:\Program Files(x86)\PH\Check This 7.11\ASD\ABC>sm -reportlic > D:\srini\test1.txt

上記のコマンドは、DOS プロンプトからコマンドを実行し、結果を txt ファイルに保存して、上記のパスの D:\ ドライブに保存するのに役立ちます。

しかし、同じことを実行するためのバッチファイルを作成することはできません。

助けていただければ幸いです。

よろしく、 スリ

4

1 に答える 1

0

You need to either change to the proper drive and folder to execute sm first, or call it directly using a full path. In either case, you need to quote the path because it contains spaces.

Changing drive and directory first:

cd /d "D:\Program Files(x86)\PH\Check This 7.11\ASD\ABC"
sm -reportlic > D:\srini\test1.txt

Using a full path:

"D:\Program Files(x86)\PH\Check This 7.11\ASD\ABC>sm" -reportlic > D:\srini\test1.txt
于 2013-08-30T15:26:12.573 に答える