2011

Table Of Contents
Function MakeCommand
dim retString
retString = DefaultCommand() & " "
retString = retString & "ACADSTANDALONENETWORKTYPE=" & """" &
strACADStandaloneNetworkType & """" & " "
retString = retString & "ACADLICENSESERVERTYPE=" & """" & strADSK
LicenseServerType & """" & " "
retString = retString & "ACADLICENSETYPE=" & """" & strADSKLicense
Type & """" & " "
retString = retString & "ACADSERVERPATH=" & """" & strADSKServer
Path & """" & " "
MakeCommand = retString
end function
Scripted installation for AutoCAD LT
' Scripted installation for AutoCAD LT 2011
option explicit
'
' Create variables
dim shell
dim productType
dim strADSKFirstName
dim strADSKLastName
dim strADSKOrganization
dim strADSKSNPrefix
dim strADSKSNNumber
dim strADSKProdKey
dim strADSKPath
dim strSourcePath
'
' Script initialization
Set shell = CreateObject("WScript.Shell")
productType = "ACADLT"
'
A Sample Installation Script | 71