Installation guide

Table Of Contents
' Script initialization
Set shell = CreateObject("WScript.Shell")
productType = "ACAD"
'
' Name and Organization information
strADSKFirstName = "My First Name"
strADSKLastName = "My Last Name"
strADSKOrganization = "Organization"
'
' 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, 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 2011"
If strLocale <> "" Then strADSKPath = strADSKPath + " " + strLocale
strADSKPath = strADSKPath + "\"
'''''' Uncomment the relevant version of your installation - De
fault is Standalone
' For Standalone
RunStandaloneInstall()
'
' For Single Network License Server
'RunSingleLicenseServerInstall()
'
' End of Script
Wscript.quit()
'
76 | Chapter 4 Distributing an Autodesk Program