Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Asynchronously installs the specified add-in package from a client computer.
Namespace: Microsoft.WindowsServerSolutions.AddinInfrastructure
Assembly: AddinInfrastructure (in AddinInfrastructure.dll)
Syntax
public void InstallAddInRemoteAsync(
Package p,
ClientInstallFilter installOnClients,
string pathToPackageFile,
string fullUserName,
string password
)
public:
void InstallAddInRemoteAsync(
Package^ p,
ClientInstallFilter^ installOnClients,
String^ pathToPackageFile,
String^ fullUserName,
String^ password
)
Public Sub InstallAddInRemoteAsync (
p As Package,
installOnClients As ClientInstallFilter,
pathToPackageFile As String,
fullUserName As String,
password As String
)
Parameters
p
Type: Microsoft.WindowsServerSolutions.AddinInfrastructure.PackageThe add-in package to install.
installOnClients
Type: Microsoft.WindowsServerSolutions.AddinInfrastructure.ClientInstallFilterThe filter that defines the method for installing the add-in on client computers.
pathToPackageFile
Type: System.StringThe path to the .wssx file.
fullUserName
Type: System.StringThe user name in DOMAIN\USERNAME format, or null to use the built-in administrator account.
password
Type: System.StringThe 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