Specifications
dim productType
dim strADSKSNPrefix
dim strADSKSNNumber
dim strADSKProdKey
dim strLocale
dim strACADStandaloneNetworkType
dim strADSKLicenseServerType
dim strADSKLicenseType
dim strADSKServerName
dim strADSKServerPath
dim strADSKServerHostID
dim strADSKPath
dim strSourcePath
'
' Script initialization
Set shell = CreateObject("WScript.Shell")
productType = "ACAD"
' Serial Number information
strADSKSNPrefix = "123"
strADSKSNNumber = "12345678"
strADSKProdKey="ABCDE"
'Locale information, for example en-US = US English, de-DE
= Deutchland German, ja-JP = Japan Japanese
strLocale="en-US" ' en-US, de-DE, ja-JP
'
' Source to install from (e.g. D: is assumed to be Install
Media)
strSourcePath = "D:\"
'
' Destination to install to
strADSKPath =
Shell.ExpandEnvironmentStrings("%ProgramFiles%") +
"\Autodesk\" + "AutoCAD 2012"
If strLocale <> "" Then strADSKPath = strADSKPath + " " +
strLocale
strADSKPath = strADSKPath + "\"
' Uncomment the relevant version of your installation -
Default is Standalone
' For Standalone
RunStandaloneInstall()
'
Alternative Distribution Methods | 13