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
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