ScriptingOptions.Indexes Property
Gets or sets the Boolean property value that specifies whether indexes are included in the generated script.
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
The following code example specifies that indexes will be scripted.
Visual Basic
Dim scOps As New ScriptingOptions() scOps.Indexes = true
PowerShell
$scOps = New-Object Microsoft.SqlServer.Management.Smo.ScriptingOptions $scOps.Indexes = $TRUE
Show: