Share via


AddInManager.InstallAddInRemote Method (Package, ClientInstallFilter, String, String, String)

 

Installs the specified add-in package from a client computer.

Namespace:   Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly:  AddinInfrastructure (in AddinInfrastructure.dll)

Syntax

public void InstallAddInRemote(
    Package p,
    ClientInstallFilter installOnClients,
    string pathToPackageFile,
    string fullUserName,
    string password
)
public:
void InstallAddInRemote(
    Package^ p,
    ClientInstallFilter^ installOnClients,
    String^ pathToPackageFile,
    String^ fullUserName,
    String^ password
)
Public Sub InstallAddInRemote (
    p As Package,
    installOnClients As ClientInstallFilter,
    pathToPackageFile As String,
    fullUserName As String,
    password As String
)

Parameters

  • pathToPackageFile
    Type: System.String

    The path to the .wssx file.

  • fullUserName
    Type: System.String

    The user name in DOMAIN\USERNAME format, or null to use the built-in administrator account.

  • password
    Type: System.String

    The password for the user account.

Remarks

For more information about creating a .wssx file, see How to: Create the Add-In Package.

See Also

AddInManager Class
Microsoft.WindowsServerSolutions.AddinInfrastructure Namespace

Return to top