#Import-SPOAppPackage Adds a SharePoint Addin to a site ##Syntax
Import-SPOAppPackage -Path <String> [-Force [<SwitchParameter>]] [-LoadOnly [<SwitchParameter>]] [-Locale <Int32>] [-Web <WebPipeBind>]##Detailed Description This commands requires that you have an addin package to deploy
##Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Force | SwitchParameter | False | Will forcibly install the app by activating the addin sideloading feature, installing the addin, and deactivating the sideloading feature |
| LoadOnly | SwitchParameter | False | Will only upload the addin, but not install it |
| Locale | Int32 | False | Will install the addin for the specified locale |
| Path | String | True | Path pointing to the .app file |
| Web | WebPipeBind | False | The web to apply the command to. Omit this parameter to use the current web. |
| ##Examples |
###Example 1
PS:> Import-SPOAppPackage -Path c:\files\demo.app -LoadOnlyThis will load the addin in the demo.app package, but will not install it to the site.
###Example 2
PS:> Import-SPOAppPackage -Path c:\files\demo.app -ForceThis load first activate the addin sideloading feature, upload and install the addin, and deactivate the addin sideloading feature.