forfiles.exe ForFiles - 選択したファイルに対してコマンドを実行 ef063c7f984d75f8c142e06393a89540

File info

File name: forfiles.exe.mui
Size: 11264 byte
MD5: ef063c7f984d75f8c142e06393a89540
SHA1: ca69edf03329bbf36ea284e79e4809f58919bdad
SHA256: 13fc377d8c1064cc2ef72a4d63cbb894ebe1caccb843ca30a60e8731f4a7977a
Operating systems: Windows 10
Extension: MUI
In x64: forfiles.exe ForFiles - 選択したファイルに対してコマンドを実行 (32 ビット)

Translations messages and strings

If an error occurred or the following message in Japanese language and you cannot find a solution, than check answer in English. Table below helps to know how correctly this phrase sounds in English.

id Japanese English
151"FORFILES /?" と入力すると使用法が表示されます。
Type "FORFILES /?" for usage.
152構文が無効です。
Invalid syntax.
154指定した日時は無効です。
Invalid date specified.
155指定した検索条件でファイルが見つかりませんでした。
No files found with the specified search criteria.
161種類が Files of type
162のファイルが見つかりません。
not found.
163のファイルは有効な実行可能ファイルではありません。
is not a valid executable.
164TRUE TRUE
165FALSE FALSE
167次へのアクセスが拒否されました: Access is denied for
169.
.
170" "
171指定したディレクトリは存在しません。
The specified directory does not exist.
172UNC パス (\\コンピューター名\共有名) はサポートされていません。
UNC paths (\\machine\share) are not supported.
173MM%sdd%syyyy MM%sdd%syyyy
174MM%syyyy%sdd MM%syyyy%sdd
175dd%sMM%syyyy dd%sMM%syyyy
176dd%syyyy%sMM dd%syyyy%sMM
177yyyy%sdd%sMM yyyy%sdd%sMM
178yyyy%sMM%sdd yyyy%sMM%sdd
201

202FORFILES [/P パス名] [/M 検索マスク] [/S]
FORFILES [/P pathname] [/M searchmask] [/S]
203[/C コマンド] [/D [+ | -] {%s | dd}]

[/C command] [/D [+ | -] {%s | dd}]

204説明:
Description:
205ファイル (または、ファイルのセット) を選んで、そのファイル上の
Selects a file (or set of files) and executes a
206コマンドを実行します。これはバッチ ジョブの使用に便利です。

command on that file. This is helpful for batch jobs.

207パラメーター一覧:
Parameter List:
208/P パス名 検索を開始するパスを示します。
/P pathname Indicates the path to start searching.
209既定のフォルダーは現在実行中の
The default folder is the current working
210ディレクトリ (.) です。

directory (.).

211/M 検索マスク 検索マスクによってファイルを検索します。
/M searchmask Searches files according to a searchmask.
212既定の検索マスクは '*' です。

The default searchmask is '*' .

213/S サブディレクトリに対しても処理を行うように forfiles に
/S Instructs forfiles to recurse into
214指示します (例: "DIR /S")。

subdirectories. Like "DIR /S".

215/C コマンド 各ファイルの実行するコマンドを示します。
/C command Indicates the command to execute for each file.
216コマンドの文字列は二重引用符で囲んでくだ
Command strings should be wrapped in double
217さい。

quotes.

218既定のコマンドは "cmd /c echo @file" です。

The default command is "cmd /c echo @file".

219次の変数をコマンドの文字列に使用することができ
The following variables can be used in the
220ます:
command string:
221@file - フィルの名前を返します。
@file - returns the name of the file.
222@fname - 拡張子なしのファイル名を
@fname - returns the file name without
223返します。
extension.
224@ext - ファイルの拡張子だけを返し
@ext - returns only the extension of the
225ます。
file.
226@path - ファイルの完全なパスを返します。
@path - returns the full path of the file.
227@relpath - ファイルの相対パスを返し
@relpath - returns the relative path of the
229@isdir - ファイルの種類がディレクトリの場合
@isdir - returns "TRUE" if a file type is
230は "TRUE"を、ファイルの場合は
"FALSE" を返します。
a directory, and "FALSE" for files.
231@fsize - ファイルのサイズをバイトで返し
@fsize - returns the size of the file in
233@fdate - ファイルの最終更新日を返し
@fdate - returns the last modified date of the
235@ftime - ファイルの最終更新時刻を返し
@ftime - returns the last modified time of the
236ます。

file.

237コマンド ラインに特殊文字を使用する場合は、
To include special characters in the command
238文字を 16 進数コードで 0xHH 形式で (例:
line, use the hexadecimal code for the character
239タブは 0x09) 指定してください。CMD.EXE の
in 0xHH format (ex. 0x09 for tab). Internal
240内部コマンドの前には "cmd /c" が必要
CMD.exe commands should be preceded with
241です。

"cmd /c".

242/D 日付 最終更新日が指定された日かもしくはそれ
/D date Selects files with a last modified date greater
243以降 (+)、または指定された日またはそれ
than or equal to (+), or less than or equal to
245以前 (-) であるファイルを "%s" 形式を使っ
"%s" format; or selects files with a
246て選択します。または、最終更新日が現在
last modified date greater than or equal to (+)
247の日にちより "dd" 日あと、もしくは "dd" 日
the current date plus "dd" days, or less than or
248前であるファイルを選択します。有効な "dd"
equal to (-) the current date minus "dd" days. A
249値は 0 から 32768 の間です。
valid "dd" number of days can be any number in
250指定がない場合は、"+" が既定で使用さ
the range of 0 - 32768.
251れます。
"+" is taken as default sign if not specified.

252/? ヘルプまたは使用法を表示します。

/? Displays this help message.

253例:
Examples:
254FORFILES /?
FORFILES /?
255FORFILES
FORFILES
256FORFILES /P C:\WINDOWS /S /M DNS*.*
FORFILES /P C:\WINDOWS /S /M DNS*.*
257FORFILES /S /M *.txt /C "cmd /c type @file | more"
FORFILES /S /M *.txt /C "cmd /c type @file | more"
258FORFILES /P C:\ /S /M *.bat
FORFILES /P C:\ /S /M *.bat
259FORFILES /D -30 /M *.exe
FORFILES /D -30 /M *.exe
260/C "cmd /c echo @path 0x09 was changed 30 days ago"
/C "cmd /c echo @path 0x09 was changed 30 days ago"
261FORFILES /D %s
FORFILES /D %s
262/C "cmd /c echo @fname is new since Jan 1st 2001"
/C "cmd /c echo @fname is new since Jan 1st 2001"
263FORFILES /D +%s /C "cmd /c echo @fname is new today"
FORFILES /D +%s /C "cmd /c echo @fname is new today"
264FORFILES /M *.exe /D +1
FORFILES /M *.exe /D +1
265FORFILES /S /M *.doc /C "cmd /c echo @fsize"
FORFILES /S /M *.doc /C "cmd /c echo @fsize"
266FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file" FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file"
5001エラー: ERROR:
5002警告: WARNING:
5003成功: SUCCESS:
5004情報: INFO:
5005N/A N/A
5501%s のパスワードを入力してください: Type the password for %s:
5502ローカル接続のユーザー資格情報を送信しています。
Passing the user credential for local connection.
5503対象のシステムは Windows XP かそれ以降のバージョンを実行している必要があります。
The target system must be running Windows XP or above.
5504リモート システムは Windows 2000 かそれ以降のバージョンを実行している必要があります。
The remote system must be running Windows 2000 or above.
5601構文が無効です。'%s' の値は '%s' のオプションでは許可されていません。
%s
Invalid syntax. '%s' value is not allowed for '%s' option.
%s
5602構文が無効です。'%s' に有効な数値を指定してください。
%s
Invalid syntax. Specify valid numeric value for '%s'.
%s
5603構文が無効です。'%s' に有効な浮動少数値を指定してください。
%s
Invalid syntax. Specifiy valid floating point value for '%s'.
%s
5604構文が無効です。必須のオプション '%s' が指定されていません。
%s
Invalid syntax. Mandatory option '%s' is missing.
%s
5605構文が無効です。'%s' は '%d' 回より多く使用することはできません。
%s
Invalid syntax. '%s' option is not allowed more than '%d' time(s).
%s
5607無効な引数またはオプションです - '%s'。
%s
Invalid argument/option - '%s'.
%s
5608構文が無効です。既定の引数が指定されていません。
%s
Invalid syntax. Default argument is missing.
%s
5609コマンド ラインの引数の長さは 255 文字までです。
Length of the command line argument should not exceed 255 characters.
5610構文が無効です。既定のオプションは '%d' 回より多く使用することはできません。
%s
Invalid syntax. Default option is not allowed more than '%d' time(s).
%s
5611構文が無効です。'%s' に値を指定してください。
%s
Invalid syntax. Value expected for '%s'.
%s
5612構文が無効です。'%s' の値は既定の引数として許可されていません。
%s
Invalid syntax. '%s' value is not allowed as default argument.
%s
5613"%s /?" と入力すると使用法が表示されます。 Type "%s /?" for usage.
5614'%s' オプションの値は空にはできません。
%s
Value for '%s' option cannot be empty.
%s
5615既定のオプションの値は空にはできません。
%s
Value for default option cannot be empty.
%s
5616構文が無効です。既定値として有効な数値を指定してください。
%s
Invalid syntax. Specify valid numeric value for default.
%s
5617構文が無効です。既定値として有効な浮動少数値を指定してください。
%s
Invalid syntax. Specifiy valid floating point value for default.
%s
5618既定のオプションの値を %d 文字より多い文字で指定することはできません。
Value for default option cannot be more than %d character(s).
5619構文が無効です。値は '%s' オプションと同時に指定できません。
%s
Invalid syntax. Value cannot be specified with '%s' option.
%s
5620'%s' のオプションの値を %d 文字より多い文字で指定することはできません。
Value for '%s' option cannot be more than %d character(s).

EXIF

File Name:forfiles.exe.mui
Directory:%WINDIR%\WinSxS\amd64_microsoft-windows-forfiles.resources_31bf3856ad364e35_10.0.15063.0_ja-jp_1892eb70e045b4fd\
File Size:11 kB
File Permissions:rw-rw-rw-
File Type:Win32 DLL
File Type Extension:dll
MIME Type:application/octet-stream
Machine Type:Intel 386 or later, and compatibles
Time Stamp:0000:00:00 00:00:00
PE Type:PE32
Linker Version:14.10
Code Size:0
Initialized Data Size:10752
Uninitialized Data Size:0
Entry Point:0x0000
OS Version:10.0
Image Version:10.0
Subsystem Version:6.0
Subsystem:Windows GUI
File Version Number:10.0.15063.0
Product Version Number:10.0.15063.0
File Flags Mask:0x003f
File Flags:(none)
File OS:Windows NT 32-bit
Object File Type:Executable application
File Subtype:0
Language Code:Japanese
Character Set:Unicode
Company Name:Microsoft Corporation
File Description:ForFiles - 選択したファイルに対してコマンドを実行
File Version:10.0.15063.0 (WinBuild.160101.0800)
Internal Name:forfiles.exe
Legal Copyright:© Microsoft Corporation. All rights reserved.
Original File Name:forfiles.exe.mui
Product Name:Microsoft® Windows® Operating System
Product Version:10.0.15063.0
Directory:%WINDIR%\WinSxS\x86_microsoft-windows-forfiles.resources_31bf3856ad364e35_10.0.15063.0_ja-jp_bc744fed27e843c7\

What is forfiles.exe.mui?

forfiles.exe.mui is Multilingual User Interface resource file that contain Japanese language for file forfiles.exe (ForFiles - 選択したファイルに対してコマンドを実行).

File version info

File Description:ForFiles - 選択したファイルに対してコマンドを実行
File Version:10.0.15063.0 (WinBuild.160101.0800)
Company Name:Microsoft Corporation
Internal Name:forfiles.exe
Legal Copyright:© Microsoft Corporation. All rights reserved.
Original Filename:forfiles.exe.mui
Product Name:Microsoft® Windows® Operating System
Product Version:10.0.15063.0
Translation:0x411, 1200