Results 1 to 8 of 8

Thread: package and deployment

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2002
    Location
    VISAKHAPATNAM
    Posts
    8

    Cool package and deployment

    hi to all,

    i did a vb project in windows xp and compile to make a package thru package and deployment wizard till now it is okay
    when i try to execute the setup file in windows 2000 or other lower operating system it is giving message as files to be updated please restart when i restart and try to execute the same thing is happening ..

    so how to make a setup so that it execute in any operating system say 98,2000 or xp

    think abt it VB guys

    thanxs in advance
    kalyan
    kalyan

  2. #2
    Fanatic Member hothead's Avatar
    Join Date
    Mar 2002
    Location
    Missouri
    Posts
    692
    I don't even use the Package and Deployment wizard, it's a bit too fussy for me if you know what I mean, like most Microsoft products.

    I suggest going to some website like www.download.com and looking for Setup Factory. It's very customizable and works much better than the VB Package and Deployment wizard.

  3. #3
    Frenzied Member oh1mie's Avatar
    Join Date
    Sep 2001
    Location
    Finland
    Posts
    1,043
    Do not include msvcrt.dll because XP:s version is only for NT.
    Windows 98 crash with it

    You can let it away from package without problem.

    To fix problem with copying old msvcrt.dll to 98s system folger.
    oh1mie/Vic


  4. #4
    Junior Member
    Join Date
    Aug 2000
    Location
    Omaha, NE
    Posts
    18
    I use InstallShield for deployment. You have to shell out some money, but it works great for deployment across various OSes. The VB package and deployment wizard works well for basic installs, but it's a pain to deal with contingencies in it.

  5. #5
    PowerPoster
    Join Date
    Aug 2000
    Location
    IN SILENCE
    Posts
    6,441

    Well

    I use Visual Studio Installer 1.1. Excellent analyzer and works well for installations on Windows 2000 and XP systems.
    Remaining quiet down here !!!

    BRAD HAS GIVEN ME THE ULTIMATIVE. I have chosen to stay....

  6. #6
    Frenzied Member
    Join Date
    Jan 2000
    Location
    Brooklyn NY USA
    Posts
    1,258
    Delete all files that are operating system dll's from the package.

  7. #7
    Lively Member
    Join Date
    Nov 2002
    Location
    Delaware
    Posts
    126
    Windows 2000 will do that if SP2 or higher isn't installed.
    Dave

    [vbcode]

    Dim ScrewingAround as cIncessant.Need

    Set ScrewingAround = New cIncessant.Need

    If atWork = True then
    Call ScrewingAround.begin
    Else
    Call ScrewingAround.begin
    End If

    [/vbcode]

  8. #8
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385
    kalyan_sekhar1,

    your real problem is the the file OleAut32.dll is an outdated version. Download the correct version and replace the file and this problem will not happen.

    Actually, there are seven runtime files that VB installs that should be the latest version. This is in the Inno Setup format (excellent free install shield).

    VB Code:
    1. Source: "C:\WINNT\System32\VB6STKIT.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: restartreplace uninsneveruninstall
    2. Source: "i:\develop\VB 6 Redist Files\OLEPRO32.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: regserver restartreplace uninsneveruninstall
    3. Source: "i:\develop\VB 6 Redist Files\COMCAT.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: regserver restartreplace uninsneveruninstall
    4. Source: "i:\develop\VB 6 Redist Files\STDOLE2.TLB"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: regtypelib restartreplace uninsneveruninstall
    5. Source: "i:\develop\VB 6 Redist Files\ASYCFILT.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: restartreplace uninsneveruninstall
    6. Source: "i:\develop\VB 6 Redist Files\OLEAUT32.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: regserver restartreplace uninsneveruninstall
    7. Source: "i:\develop\VB 6 Redist Files\MSVBVM60.DLL"; DestDir: "{sys}"; CopyMode: alwaysskipifsameorolder; MinVersion: 0,4.0; Flags: regserver restartreplace uninsneveruninstall

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width