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 Modify an INI file through SCCM

Ashish Kumar

Member
Messages
12
Reaction score
0
Points
1
Hi all,

I have an .INI file for an application in all systems (Laptops & PC's.)

I want to use SCCM to push a change or update the .ini file in all machines (or replace the existing ini file with the current one).

Is there a way to do this via SCCM 2012 R2?

Thanks in advance.
Cheers
 
You could just replace the .ini with the updated one?

A batch script like the one below should do the trick:

Code:
copy /y "NEWINIFILE" "LOCATIONOFOLDINI"

This will over write the old file without prompting
 
You could just replace the .ini with the updated one?

A batch script like the one below should do the trick:

Code:
copy /y "NEWINIFILE" "LOCATIONOFOLDINI"

This will over write the old file without prompting


Thanks but how do I run this? Will this need to be run on single machine?
 
Back
Top