Deployment of Single Server License Software via Batch Script

Deployment of Single Server License Software via Batch Script

Anonymous
Not applicable
1,513 Views
7 Replies
Message 1 of 8

Deployment of Single Server License Software via Batch Script

Anonymous
Not applicable

Good Morning,

 

I’m deploying Autocad 2017 and the Building Design Suite to a small office via batch script.  I have to install other software alongside the Autodesk products and unfortunately group policies are not an option.  My trouble lies with the Building Design Suite.  I’ve managed to get Autocad to install silently via the batch script (it’s a standalone license) but cannot get the building design suite to install (it’s a single server license).  Since the parameters are the same for the most part, I’m thinking my problem is with the following:

 

ACADSERVERPATH=“<FlexLicenseServer> 000000000000”

 

Is the FlexLicenseServer parameter the UNC path to the license server ie ‘//OSCO-1’ or is it simply the server name ‘OSCO-1’?  Also, what do the zeroes represent?  I tried leaving it as is and putting in the ip address of our license server but was just taking a shot in the dark.  For reference, here is the entire batch script command.

 

"F:\Source Files\Navis and Revit 2017\Setup.exe" /t /qb /language en-us /c NW: ACADSERIALPREFIX=xxx ACADSERIALNUMBER=xxxxxxxx ADLM_PRODKEY=766I1 ADLM_EULA_COUNTRY=US InstallLevel=5 ACADSTANDALONENETWORKTYPE="3" ACADLICENSESERVERTYPE="Single Server License" ACADLICENSETYPE="Network License" ACADSERVERPATH="OSCO-1 000000000000" /c RVT: ACADSERIALPREFIX=xxx ACADSERIALNUMBER=xxxxxxxx ADLM_PRODKEY=766I1 ADLM_EULA_COUNTRY=<eula_lang>  InstallLevel=5 ACADSTANDALONENETWORKTYPE="3" ACADLICENSESERVERTYPE="Single Server License" ACADLICENSETYPE="Network License" ACADSERVERPATH="OSCO-1 000000000000"

 

If anyone has any insight to what I'm doing wrong I would appreciate the help.

 

Thank you

Accepted solutions (1)
1,514 Views
7 Replies
Replies (7)
Message 2 of 8

Otto
Alumni
Alumni
Hello cvinciguerra and welcome to the Autodesk community!

If you’re having trouble with the activation email, please note that sometimes the email can be accidentally routed to your spam or junk folder. Please check there.

Also, please note that you should be able to access your download and activation information by logging into Autodesk Accounts.

If you cannot access software in your account and need to download it now, please go to the Virtual Agent.

If none of those items helped, please submit a support request as follows: 

Students should request to have the confirmation email resent via this form.

If you are having trouble with your Autodesk Account or an eStore purchase, please visit our order support page where you will be able to chat with a representative or submit a support request.

If this information was helpful, please consider marking it as an Accepted Solution by clicking on the "Accept as Solution" link, below. Taking a moment to do this will help others with similar questions find useful answers. Thank you!

Kudos (click on the link or the "thumbs-up!" icon), are also gratefully received! (Even a bot likes praise.)

If this answer missed the mark, please let us know so that other community members can lend a hand. Any additional details might help, too: consider including relevant screenshots, log files, error messages, or system specs.


I'm a software-based HelpBot, designed to provide the information you need to get up and running with Autodesk products—any time, day or night. Your feedback will help train me to deliver more accurate and helpful answers. Thanks in advance! Also, please note that I'm only set up to respond to the first post of a topic, not to any replies. Thank you!

Helpful links: Find Serial Numbers and Product Keys | Find Downloads and Service Packs | Activate Autodesk software
0 Likes
Message 3 of 8

Mark.Lancaster
Consultant
Consultant

@Anonymous

 

Welcome to the community...

 

I will inform the big guns of this forum and they should be able to assist you...

 

Paging

 

@TravisNave

 

@Darin.Green

Mark Lancaster


  &  Autodesk Services MarketPlace Provider


Autodesk Inventor Certified Professional & not an Autodesk Employee


Likes is much appreciated if the information I have shared is helpful to you and/or others


Did this resolve your issue? Please accept it "As a Solution" so others may benefit from it.

0 Likes
Message 4 of 8

Darin.Green
Mentor
Mentor
Accepted solution

Thanks for the notification @Mark.Lancaster!

 

@Anonymous,

 

The best way to approach this is to build a network deployment onto a network share, then use the following line to install the software from the deployment:

 

\\SERVER\SHARE\BDSU2017\Img\Setup.exe /qb /I \\SERVER\SHARE\BDSU2017\Img\BDSU2016.ini /language en-us

 

That one line will install everything it needs for that deployment including prerequisites because it's referencing the INI file that contains the configurations. 

 

 

---EDIT---

Change SERVER\SHARE\BDSU2017 to the correct location for your deployment.

 

For assistance with creating network deployment go here



If this information was helpful, please consider using the Accept Solution


Message 5 of 8

Anonymous
Not applicable

Thanks for the reply Darin.  That's a much cleaner option than writing a block of text for each program in the suite!  However, I ran that command and a blank command prompt window opened (I had @Anonymous off) before closing out a few seconds later.  No error or feedback of any kind.  The silent install should still pop up a box at least that shows the current progress, correct?

 

-Chris

0 Likes
Message 6 of 8

TravisNave
Mentor
Mentor

That is correct.  Smiley Happy

 

Sorry for the delay today.  So busy at work.  But Darin is right on with his explanation. 

 

Good Luck!



Travis Nave Send TravisNave a Private Message                                             Need help in your post? Mention me with @TravisNave



My Expert Contributions to the
Autodesk Forums:
FLEXnet License Admin | MSI Cleanup Utility | .NET Framework Cleanup Tool | IPv6 NLM Fix | adskflex.opt Options File | Combine .LIC Files
0 Likes
Message 7 of 8

Anonymous
Not applicable

Thanks Travis.  It must be something to do with the computer's connection to the server then since it's still not installing.  I'll leave that section of code as Darin said and see if I can narrow the problem down further.

 

Thanks again for the help guys, I really appreciate it!

 

-Chris

0 Likes
Message 8 of 8

Anonymous
Not applicable

For future reference in case anyone else is running into a similar problem, with Darin's code the path to the setup.exe can be in quotes if necessary.  However, the path to the ini file should not be in quotes even if there are spaces in the path name.  I'm not sure why this is the case but it's how I was able to get things working properly.

 

Thanks again everyone,

 

-Chris