Deployment Solution

 View Only
  • 1.  Access is denied when pushing a job in Deployment Console 6.9

    Posted Jun 30, 2010 04:36 PM
    I am using Deployment Console 6.9 (build 365) SP1.  I created several new jobs and ran them over the weekend.  Some of the jobs weren't working and we were deleting the jobs from the computers.  It locked up Deployment Console and we shut down the server.  After we brought it back up, we tried to push the jobs again to some of the computers and it kept giving "access is denied" error.  When I look at the Schedule Status Details, it sent the script, transfer the file, executed the script, and then gave error "access is denied".  The error is status code 5 and module Win32.  I rebuilt all 3 jobs from scratch and 2 works fine now.  The one that I built for Silverlight does not.  The job consists of the following script:  @Echo off
    net use y: "\\altiris\altirisdata$\Packages\Silverlight 4"
    y:Silverlight.exe /q
    net use y: /delete

    Since this job worked fine before, is there anyway that I can get this script to work again?


  • 2.  RE: Access is denied when pushing a job in Deployment Console 6.9

    Posted Jun 30, 2010 05:34 PM
    Does the script work properly when locally executed by a logged on user?


  • 3.  RE: Access is denied when pushing a job in Deployment Console 6.9

    Posted Jul 27, 2010 04:20 AM
    We copy the install package to the c-drive of the computer.
    Map c:\install\xxxx
    Then in a job we run the installation from c:\install\xxxx\ (local system account)
    Afterwards we delete the c:\install map.

    We install like this because networktraffic can cause trouble while installing.
    If during installation from the share there is to much traffic the job can be cancelled.

    This works fine. You can even install multiple computers at a time.