zberkshier91 wrote:
I ran into a similar need not too long ago trying to push new files from my package share to the client PC.
I ended up finding a VB script that so far has worked really well.
Dim fso
Const OverwriteExisting = True
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CopyFile "\\SERVERNAME\defaultpackageshare$\Scripts\Google files\master_preferences", "C:\Program Files (x86)\Google\Chrome\Application\master_preferences", OverwriteExisting
Nice!
Can you explain the steps you created the deployment with this script step by step?
Sory but I'm really new to the whole deployment stuff.
Thanks!