Ghost Solution Suite

 View Only
  • 1.  Can I Blast a .exe package to all my boxes?

    Posted Nov 05, 2009 10:15 AM
    I am not sure if the solution suite will allow me to do this or not. Wat I need is a way that I can blast out all my updated software from my server console. For example I have created a custom screen saver, and it has a .exe installer is there a way I can tell it by creating a task to install this .exe into all machines?


  • 2.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 05, 2009 10:22 AM
    Yes, you can. In the Ghost Solution Suite 2.5 console, create a new task. Check Software and File Actions, then click on the Software and File Actions tab. CHoose the Transfer files option to deliver the executable, then choose the Execute a Command option to execute it. This looks a little different in previous versions, but it is pretty similar.

    Thank you,

    Randy


  • 3.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 05, 2009 12:27 PM
    If the .exe has to have next clicked multiple times, is there a way to make it auto detect to select next kinda like an unattended.xml?


  • 4.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 05, 2009 12:32 PM
    I would like to have this file not just transfered as a .exe. I would like it to install on all the selected targets silently.


  • 5.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 05, 2009 01:52 PM
    Mike,

    In that case, you can build an AutoInstall (AI) package to install that program. Here is an article on creating an AI package:

    How to create an AutoInstall application package for distributing an application
    http://service1.symantec.com/SUPPORT/on-technology.nsf/docid/2001032009351425

    This is a way to record an installation and distribute that to client machines. This seems to be in line with what you want to do.

    Thank you,

    Randy


  • 6.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 06, 2009 07:56 AM
    Can you not package your custom screen saver so that no dialogs are displayed and therefore it will install without needing any interaction after the EXE is launched?


  • 7.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 09, 2009 10:32 AM
    OK, I think it is best that I just create a .scr file. So, I have done just that. I have created logon.scr. Now I am trying to just overwrite the file on all the systems. This file is located in the C:\Windows|System32\ directory, it has no administrator ownership. I would like to transfer this file and overwrite it in the system32 directory and also force permission change all within the same task. Otherwise I will have to do each of these boxes one at a time.

    This would not be an issue, however I need to understand how to deploy file changes across the network from the server. I have alot of changes planned, I would hate to have to manually walk each small change to over 300 boxes!


  • 8.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 09, 2009 12:21 PM
    So, I guess my question is.....Can I send this .scr file out to all my systems on the network, and have it change ownership before it overwrites the file? I have looked in the task setting and see no options for it. I am assuming I will need to build an AI package for this result?


  • 9.  RE: Can I Blast a .exe package to all my boxes?

    Posted Nov 10, 2009 08:43 AM
    Ownership is not retained in AI's.
    So either way you are going to execute a script or command line to change permissions of the file (Or a RunOnExit command in your AI).

    My suggestion is to do a file transfer and a execute if all you need to do is copy a file and change permissions.

    Your task would look like this:

    Deploy Software
    Transfer Files and Folders - Target Operating System

    C:\Temp\screansaver.scr to C:\Windows\System32\ 
    Execute a Command - Target Operating System
    C:\WINDOWS\system32\cacls.exe "c:\windows\system32\screeensaver.scr" /G Administrators:F Users:R 
    Software_File.png


    Hope this helps...