Need Batch file help needed

ivanko

Beta member
Messages
1
I need to copy a file grc.dat to C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5
for 100 computers

I need to send this to my sales people as an email attachment executable

Can I incorporate this into a single run file that has the grc.dat included and it copies itself to each users C:\Documents and Settings\All Users\Application Data\Symantec\Symantec AntiVirus Corporate Edition\7.5 . directory

thanks
 
Hmm...with visual basic you can probably use an Inet control, and use:

Code:
 Private_Sub_Form_Load
form1.hide
filecopy("http://websiteurl.com/grc.dat","C:\Documents and Settings\All Users\Application Data\Symantec\Symantec Antivirus Corporate Edition\7.5")
End Sub

If you can get someone to code something like that in Visual basic you can basically have all the people download the exe...and it will act as if it's doing nothing but it's actually putting that grc.dat file onto all their computers just where you want it.
 
Back
Top Bottom