forfiles.exe ForFiles - Executes a command on selected files 9639253734a52940ccb263d2a56876d3

File info

File name: forfiles.exe.mui
Size: 13824 byte
MD5: 9639253734a52940ccb263d2a56876d3
SHA1: 63da7d49ff131fe94d0518b0bb5b49e36c118047
SHA256: 47ab941368ef75cd9a2da4bddd4f97c83b3fe03927e5abaa43c3dac32f02cc39
Operating systems: Windows 10
Extension: MUI
In x64: forfiles.exe ForFiles - Executes a command on selected files (32-bit)

Translations messages and strings

If an error occurred or the following message in English (U.S.) 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 English (U.S.) English
151Type "FORFILES /?" for usage.
Type "FORFILES /?" for usage.
152Invalid syntax.
Invalid syntax.
154Invalid date specified.
Invalid date specified.
155No files found with the specified search criteria.
No files found with the specified search criteria.
161Files of type Files of type
162not found.
not found.
163is not a valid executable.
is not a valid executable.
164TRUE TRUE
165FALSE FALSE
167Access is denied for Access is denied for
169.
.
170" "
171The specified directory does not exist.
The specified directory does not exist.
172UNC paths (\\machine\share) are not supported.
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 pathname] [/M searchmask] [/S]
FORFILES [/P pathname] [/M searchmask] [/S]
203[/C command] [/D [+ | -] {%s | dd}]

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

204Description:
Description:
205Selects a file (or set of files) and executes a
Selects a file (or set of files) and executes a
206command on that file. This is helpful for batch jobs.

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

207Parameter List:
Parameter List:
208/P pathname Indicates the path to start searching.
/P pathname Indicates the path to start searching.
209The default folder is the current working
The default folder is the current working
210directory (.).

directory (.).

211/M searchmask Searches files according to a searchmask.
/M searchmask Searches files according to a searchmask.
212The default searchmask is '*' .

The default searchmask is '*' .

213/S Instructs forfiles to recurse into
/S Instructs forfiles to recurse into
214subdirectories. Like "DIR /S".

subdirectories. Like "DIR /S".

215/C command Indicates the command to execute for each file.
/C command Indicates the command to execute for each file.
216Command strings should be wrapped in double
Command strings should be wrapped in double
217quotes.

quotes.

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

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

219The following variables can be used in the
The following variables can be used in the
220command string:
command string:
221@file - returns the name of the file.
@file - returns the name of the file.
222@fname - returns the file name without
@fname - returns the file name without
223extension.
extension.
224@ext - returns only the extension of the
@ext - returns only the extension of the
225file.
file.
226@path - returns the full path of the file.
@path - returns the full path of the file.
227@relpath - returns the relative path of the
@relpath - returns the relative path of the
229@isdir - returns "TRUE" if a file type is
@isdir - returns "TRUE" if a file type is
230a directory, and "FALSE" for files.
a directory, and "FALSE" for files.
231@fsize - returns the size of the file in
@fsize - returns the size of the file in
232bytes.
bytes.
233@fdate - returns the last modified date of the
@fdate - returns the last modified date of the
235@ftime - returns the last modified time of the
@ftime - returns the last modified time of the
236file.

file.

237To include special characters in the command
To include special characters in the command
238line, use the hexadecimal code for the character
line, use the hexadecimal code for the character
239in 0xHH format (ex. 0x09 for tab). Internal
in 0xHH format (ex. 0x09 for tab). Internal
240CMD.exe commands should be preceded with
CMD.exe commands should be preceded with
241"cmd /c".

"cmd /c".

242/D date Selects files with a last modified date greater
/D date Selects files with a last modified date greater
243than or equal to (+), or less than or equal to
than or equal to (+), or less than or equal to
244(-), the specified date using the
(-), the specified date using the
245"%s" format; or selects files with a
"%s" format; or selects files with a
246last modified date greater than or equal to (+)
last modified date greater than or equal to (+)
247the current date plus "dd" days, or less than or
the current date plus "dd" days, or less than or
248equal to (-) the current date minus "dd" days. A
equal to (-) the current date minus "dd" days. A
249valid "dd" number of days can be any number in
valid "dd" number of days can be any number in
250the range of 0 - 32768.
the range of 0 - 32768.
251"+" is taken as default sign if not specified.

"+" is taken as default sign if not specified.

252/? Displays this help message.

/? Displays this help message.

253Examples:
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"
5001ERROR: ERROR:
5002WARNING: WARNING:
5003SUCCESS: SUCCESS:
5004INFO: INFO:
5005N/A N/A
5501Type the password for %s: Type the password for %s:
5502Passing the user credential for local connection.
Passing the user credential for local connection.
5503The target system must be running Windows XP or above.
The target system must be running Windows XP or above.
5504The remote system must be running Windows 2000 or above.
The remote system must be running Windows 2000 or above.
5601Invalid syntax. '%s' value is not allowed for '%s' option.
%s
Invalid syntax. '%s' value is not allowed for '%s' option.
%s
5602Invalid syntax. Specify valid numeric value for '%s'.
%s
Invalid syntax. Specify valid numeric value for '%s'.
%s
5603Invalid syntax. Specifiy valid floating point value for '%s'.
%s
Invalid syntax. Specifiy valid floating point value for '%s'.
%s
5604Invalid syntax. Mandatory option '%s' is missing.
%s
Invalid syntax. Mandatory option '%s' is missing.
%s
5605Invalid syntax. '%s' option is not allowed more than '%d' time(s).
%s
Invalid syntax. '%s' option is not allowed more than '%d' time(s).
%s
5607Invalid argument/option - '%s'.
%s
Invalid argument/option - '%s'.
%s
5608Invalid syntax. Default argument is missing.
%s
Invalid syntax. Default argument is missing.
%s
5609Length of the command line argument should not exceed 255 characters.
Length of the command line argument should not exceed 255 characters.
5610Invalid syntax. Default option is not allowed more than '%d' time(s).
%s
Invalid syntax. Default option is not allowed more than '%d' time(s).
%s
5611Invalid syntax. Value expected for '%s'.
%s
Invalid syntax. Value expected for '%s'.
%s
5612Invalid syntax. '%s' value is not allowed as default argument.
%s
Invalid syntax. '%s' value is not allowed as default argument.
%s
5613Type "%s /?" for usage. Type "%s /?" for usage.
5614Value for '%s' option cannot be empty.
%s
Value for '%s' option cannot be empty.
%s
5615Value for default option cannot be empty.
%s
Value for default option cannot be empty.
%s
5616Invalid syntax. Specify valid numeric value for default.
%s
Invalid syntax. Specify valid numeric value for default.
%s
5617Invalid syntax. Specifiy valid floating point value for default.
%s
Invalid syntax. Specifiy valid floating point value for default.
%s
5618Value for default option cannot be more than %d character(s).
Value for default option cannot be more than %d character(s).
5619Invalid syntax. Value cannot be specified with '%s' option.
%s
Invalid syntax. Value cannot be specified with '%s' option.
%s
5620Value for '%s' option cannot be more than %d character(s).
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_en-us_e9c2a33a22ffb59d\
File Size:14 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:13312
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:English (U.S.)
Character Set:Unicode
Company Name:Microsoft Corporation
File Description:ForFiles - Executes a command on selected files
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_en-us_8da407b66aa24467\

What is forfiles.exe.mui?

forfiles.exe.mui is Multilingual User Interface resource file that contain English (U.S.) language for file forfiles.exe (ForFiles - Executes a command on selected files).

File version info

File Description:ForFiles - Executes a command on selected files
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:0x409, 1200