Jump to content

mikerg

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

About mikerg

mikerg's Achievements

0

Reputation

  1. Thanks for the help foxyshadis. I shall try this theory over Christmas (If I can sneak away from the family) I have already learned something from you.... Its amazing... I have been writing .bat files since Dos 4.2 days and was not aware of the CD /D switch.. Saves an extra line of code Happy Christmas to you and all ~Mike~
  2. Hi everyone. I have read this thread through but I still need some help. Thank you all very much for your assistance so far.. I am a retired VB6 Programmer and am looking toward making the creation of an update sfx as automated as possible The Theory is.... A piece of software that, after selecting updated files from a list (Mainly a few exe's and help files), one click will Create an archive, convert it to an SFX and upload it to my web site for users to download and install. So far, with a vast amount of assistance from this thread (And lots of cussing), I have achieved my aim with one small problem... the archive carries the original path and installs to that directory. I have tried to find the switch that will prevent this but up to now, I haven't found it. The Method; The VB6 application;- Copies all files needed for the update, to a working folder, (C:\7-Zip\spUpdate\) Creates a .BAT file to create the archive and SFX file Runs the BAT File Uploads the resulting SFX file to the WebSite The BAT File @ echo off C: cd \7-Zip 7za a ".\spUpdate\spUpdate.7z" @".\spUpdate\spZip.txt" copy /b 7zsd.sfx + ".\spUpdate\spUpdateConfig.txt" + ".\spUpdate\spUpdate.7z" ".\spUpdate\spUpdate.exe The File Name List ("C:\7-Zip\spUpdate\spZip.txt") spUpdate\spDiary.exe spUpdate\SP Utilities.exe spUpdate\SPDIARY_TEMPLATE.MDB The Config File ("C:\7Zip\spUpdate\spUpdateConfig.txt") ;!@Install@!UTF-8! InstallPath="%PROGRAMFILES%\\spDiary" ExtractTitle="Preparing the installation..." ;!@InstallEnd@! There are probably faults with the above as I find all the different 7z and sfx versions a little confusing and have probably used conflicting versions of each. I am hoping someone can correct me on any mistakes I have made.. In saying this, It Actually works. My problem is;- On the Target Machine, although the sfx finds "C:\Program Files\spDiary\" as requested in the Config command: Installpath="%PROGRAMFILES%\\spDiary", it creates an additional "spUpdate\" folder and places the files in there. ie: "C:\Program Files\spDiary\spUpdate\" As a work around, I can use the root of one of the hard drives as a 'Work Folder' but don't like that idea. Your assistance with this will be greatly appreciated. ~Mike~
×
×
  • Create New...