text
stringlengths
0
4.23k
fsutil wim
Provides functions to discover and manage WIM-backed files.
ftp append
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Appends a local file to a file on the remote computer using the current file type setting.
Syntax
append <localfile> [remotefile]
Parameters
Parameter
Description
<localfile>
Specifies the local file to add.
[remotefile]
Specifies the file on the remote computer to which <localfile> is added. If you don't use this parameter, the <localfile> name is used in place of the remote file name.
<localfile>
<localfile>
<localfile>
Examples
To append file1.txt to file2.txt on the remote computer, type:
append file1.txt file2.txt
To append the local file1.txt to a file named file1.txt on the remote computer.
append file1.txt
ftp ascii
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Sets the file transfer type to ASCII. The ftp command supports both ASCII (default) and binary image file transfer types, but we recommend using ASCII when transferring text files. In ASCII mode, character conversions to and from the network standard character set are performed. For example, end-of-line characters are converted as necessary, based on the target operating system.
Syntax
ascii
Examples
To set the file transfer type to ASCII, type:
ascii
404 - Page not found
We couldn't find this page. You can try signing in, or choosing from the relevant search results below:
We couldn't find this page. You can try changing directories, or choosing from the relevant search results below:
ftp binary
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Sets the file transfer type to binary. The ftp command supports both ASCII (default) and binary image file transfer types, but we recommend using binary when transferring executable files. In binary mode, files are transferred in one-byte units.
Syntax
binary
Examples
To set the file transfer type to binary, type:
binary
ftp bye
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Ends the ftp session on the remote computer, and then exits.
Note
This command is the same as the ftp quit command.
Syntax
bye
Examples
To end the ftp session with the remote computer and exit, type:
bye
ftp cd
Applies to: Windows Server 2022, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012
Changes the working directory on the remote computer.
Syntax
cd <remotedirectory>
Parameters
Parameter
Description
<remotedirectory>
Specifies the directory on the remote computer to which you want to change.
<remotedirectory>
Examples
To change the directory on the remote computer to Docs, type:
cd Docs