Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

PENDING Copy Multiple .XML file on Client system

Abhishek Jaiswal

New Member
Messages
1
Reaction score
0
Points
1
Hello,

We are in phase of moving our SAP production server to another location. Due to which we want to replace multiple XML file related to SAP on client system.

Request a help to share the command and step to copy multiple XML file in a single go through SCCM 1806.

Regards
Abhishek Jaiswal
 
use a batch file to copy files to another machine.
Code:
@ECHO OFF
SETLOCAL
SET THISDIR=%~dp0
xcopy "source" "destination" /y /c /i
pause
EXIT 0

For xcopy switches refer this article.
 
Back
Top