zettelkasten/OneNoteExport/Kommunikationstechnologie/Sharepoint/Wizdom/12_Solution Installation.md
Ralf Koop 5a108aa2b4 .
2023-08-25 23:29:11 +02:00

2.3 KiB

Solution Installation

Dienstag, 23. Juli 2019

12:09

 

Installation der Soluztion per Powershell

 

 

Anzeigen der Installierten Solutions :

 

Get-SPUserSolution -Site https://kerbmobilnet.bkk-mobiloil.de/sites/it

 

Name SolutionId Status

---- ---------- ------

HanseVision.ClientToolkit.C... 1b3dc0f0-428c-4cc3-bca5-e39fe78ed060 Activated

BKK.ComposedLook.wsp 0bcd97c0-c603-44db-8276-9d3e1d8786ff Activated

BKK.Intranet.SharePoint.wsp dd84a1c2-473f-4211-954f-4e03c7d3d274 Activated

BKK.webparts.wsp d3b8cc00-0924-477d-8e95-d125110412bd Activated

 

 

 

 

 

 

$SolutionPath = "D:\SP\Tools\Wizdom\BKK Deploy2\HanseVision.ClientToolkit.Core.wsp"

Add-SPUserSolution -LiteralPath $SolutionPath -Site https://mobilnet.bkk-mobiloil.de/sites/fin

install-SPUserSolution -Identity HanseVision.ClientToolkit.Core.wsp -Site https://mobilnet.bkk-mobiloil.de/sites/fin

 

 

Name SolutionId Status

---- ---------- ------

HanseVision.ClientToolkit.C... 1b3dc0f0-428c-4cc3-bca5-e39fe78ed060 Activated

 

 

 

$SolutionPath = "D:\SP\Tools\Wizdom\BKK Deploy2\BKK.ComposedLook.wsp"

Add-SPUserSolution -LiteralPath $SolutionPath -Site https://mobilnet.bkk-mobiloil.de/sites/fin

install-SPUserSolution -Identity BKK.ComposedLook.wsp -Site https://mobilnet.bkk-mobiloil.de/sites/fin

 

Name SolutionId Status

---- ---------- ------

BKK.ComposedLook.wsp 0bcd97c0-c603-44db-8276-9d3e1d8786ff Activated

 

 

$SolutionPath = "D:\SP\Tools\Wizdom\BKK Deploy2\BKK.Intranet.SharePoint.wsp"

Add-SPUserSolution -LiteralPath $SolutionPath -Site https://mobilnet.bkk-mobiloil.de/sites/fin

install-SPUserSolution -Identity BKK.Intranet.SharePoint.wsp -Site https://mobilnet.bkk-mobiloil.de/sites/fin

 

 

Name SolutionId Status

---- ---------- ------

BKK.Intranet.SharePoint.wsp dd84a1c2-473f-4211-954f-4e03c7d3d274 Activated

 

 

 

 

 

BKK Look einstellen :(ComposedLook)

$WebURL="https://kerbmobilnet.bkk-mobiloil.de/sites/rkotest1"

$web = Get-SPWeb $WebURL

$ColorPaletteURL="/sites/rkotest1/_catalogs/theme/15/bkk.spcolor"

$FontSchemeURL="/sites/rkotest1/_catalogs/theme/15/bkk.spfont"

$BackgroundImgURL=""

 

$web.ApplyTheme($ColorPaletteURL, $FontSchemeURL, $BackgroundImgURL, $false)