Package Install.

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1472
    mikev
    Member
    • Total Post: 147
    • Legend in Own LunchBox
    • ★★★★★

    Hi Guys,

    I have got two packages – exe and msi and want to deploy it on all Wyse units. Do i need to copy the packages first on the Wyse and then execute it?

    Can someone please help with a sample script to deploy these two packages?

    Thanks.

    #13955
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    Hi,

    yes, you have to push the files to the client, execute them and delete afterwards.
    As installer packages quite often extract themselves while installing I would recommend to push the extracted files to the clients instead of the exe or msi file. This saves rare flash memory. But this depends on the installer routines, of course.
    A sample scripte yould look like:

    [Version]
    Number=myScript
    Description=Installer demo script
    OS=XP
    Category=XPe Add-Ons

    [Script]
    ;Lock user
    LU*
    ;Xcopy all files in your package to drive C of the client
    XC “*” “C:”
    ;optional merge some registry files if needed
    MR “Reg_filesregistry_all.reg”
    ;Execute both setup files
    EX “C:setup.msi”
    EX “C:setup.exe”
    ;delete the setup files
    DF “C:Setup.msi”
    DF “C:Setup.exe”
    ;end lockout of user
    EL*
    ;maybe a reboot has to follow
    RB

    #13958
    mikev
    Member
    • Total Post: 147
    • Legend in Own LunchBox
    • ★★★★★

    Thanks CG.

    #14039
    mikev
    Member
    • Total Post: 147
    • Legend in Own LunchBox
    • ★★★★★

    Hi CG,

    I tried the script to install the package and it is working all good except for one small issue – when the script is pushed from Rapport to the Wyse, update now screen appears on Wyse and when you hit update now as usual you get the screen “Updating…Do not shutdown” etc etc.

    But what happens is, the above screen disappears in 5 secs and then you see the desktop and at this stage the exe actually runs and installs the program (exe which is copied from the script to the wyse locally).

    I never had this issue before – usually the script should run in the background and the user should only see the blue updating screen till it finishes installing the program and then reboot.

    Can you please help how do i fix this?

    Thanks.

    #14045
    ConfGen
    Keymaster
    • Total Post: 10696
    • Jedi Master
    • ★★★★★★★

    Looks like the problem is that the installer was started by the rsp script and WDM gors further to the next command, eg EL. But at this time the installer is not finished. Maybe you should copy a batch file to the client and execute this instead of directly the installer. Or use a LP “30” command to do a 30 seconds (or more) loop.

    CG

    #14057
    mikev
    Member
    • Total Post: 147
    • Legend in Own LunchBox
    • ★★★★★

    Thanks CG. I am using LP command in the script and it is all fixed now.

    Thanks.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.