/build/static/layout/Breadcrumb_cap_w.png

Installing Large Applications (> 2GB) from the RSA

For large applications (like Adobe CS4 and CS5) on the K2000 we're hosting the setup files on a shared server and we want to use the Remote Site Appliance itself as the server. We have 20+ RSAs in our school district. In the post installation task we need some way to build the drive mapping command so that it sets up the drive mapping based on the specific RSA on which the SI task is running.

Is there a way, in a batch file, to capture information about the RSA and use it to build this command? For example:

If machine name includes 'Bldg A' then the command is 'net use z: \\BldgA-Srv\apps . . . '

If machine name includes 'Bldg B' then the command is 'net use z: \\BldgB-Srv\apps . . . '

What we're trying to accomplish here is to avoid having to use the network to transport the huge collection of setup files for the task. We want the traffic to stay within the building where the RSA is located.

Has anyone ever done anything like this?

Thanks.

 


0 Comments   [ + ] Show comments

Answers (4)

Posted by: dchristian 12 years ago
Red Belt
1

Right a script to do it. From a high level

  • check machine name
  • mount correct drive
  • install app

Comments:
  • Isn't that just a restatement of what he's asking? - lcadhelpdesk 12 years ago
Posted by: lcadhelpdesk 12 years ago
Second Degree Blue Belt
1

Pumba, have you considered a local fileserver at each site, i.e. a NAS of some sort? I'd do a lot to alleviate network overhead. If you utilize Adobe's Enterprise installation toolkit you can build a single-file silent installer, but that still doesn't fully resolve the issue... I'll play with my K2000 and follow this topic to see what I can cook up. I'm in a bit of downtime, and I suppose I'll eventually need to do the same, so I'll post the results of my research back here. Followed.

 


Comments:
Posted by: cserrins 12 years ago
Red Belt
0

I would do it my IP subnet personally, if the 3rd octet is 10, then its site A, get files from here.

Just an example.


Comments:
  • This is exactly how I plan on doing it. I might use 2nd octet. But what do I use to sync/replicate the drives should I just manually sync using ROBOCOPY. I just need to take the stress of deploying adobe cs off a single centralized file server across the WAN - stagebooms 11 years ago
Posted by: andibogard 12 years ago
Blue Belt
0

::Checks first 5 characters of %COMPUTERNAME% variable

 

If /i "%Computername:~0,5%" EQU "BLDGA" goto BldgA

:BldgB

net use z: \\server\path

install program x from Z:

goto end

 

:BldgA

net use z: \\server\path

install program x from Z:

 

:end

exit


Comments:
  • Something like that, you might need to Google the first command, I'm not sure I got it right. - andibogard 12 years ago

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ