javascript - How to automate text file update in windows 7 -



javascript - How to automate text file update in windows 7 -

i have file called environment text file

path: c:\program files (x86)\cpw\cpw.ini

its has info

port : 2012

now want create exe or programme straight run on scheme , update particular text file new data.

port : 2014.

i have around 6000 users, need broadcast programme of them , file can updated automated running mailed program.

please help ashu

if utilize c#, can utilize file.writealltext overwrite text within file. encased within main function end with:

using system.io; using system; class programme { static void main() { file.writealltext(@"c:\program files (x86)\cpw\cpw.ini", "port : 2014"); } }

javascript window

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -