zettelkasten/OneNoteExport/Schnelle_Notizen/Sammel_Infos/23_Links für Sharepoint.md

386 lines
7.4 KiB
Markdown
Raw Normal View History

2023-08-17 19:32:37 +02:00
Links für Sharepoint
Donnerstag, 4. Oktober 2018
19:12
 
get-spsite \|foreach {\$\_ \|get-spweb}
get-spsite \|foreach {\$\_ \|get-spweb \|fl title}
Get-SPSite \|get-spweb \|foreach {\$\_.folders \|fl name , parentweb}
 
<https://serverfault.com/questions/676916/adfs-restrict-to-ad-group>
Caching des Windows Anmelde Tokens
 
<http://blogs.myfirstsharepoint.de/technikblog/sharepoint-claims-authentifizierung-und-ad-gruppen-wenn-berechtigungen-erst-nach-10h-angewendet-werden>
 
 
This can be done by adding a so-called *Issuance Authorization Rule*.
Step-by-step:
- Open AD FS Management Center
- Expand *Trust Relationsships*
- Select *Relying Party Trusts*
- Right click the required trust
- Click *Edit Claim Rules*
- Goto the *Issuance Authorization Rules* tab
- Delete the default *Permit Access To All Users* rule
- Click *Add Rule*
- Select *Permit or Deny Users Based on an Incoming Claim*
- Incoming Claim Type, select *Group SID*
- Click *Browse* at *Incoming claim value*
- Select the required group
- You\'re done
**ADFS claim rules to filter group membership**
 
 
<http://www.molikop.com/2014/04/adfs-claim-rules-filtering-groups/>
 
 
**Beginners Guide to Claims-based Authentication**
 
<https://info.summit7systems.com/blog/beginners-guide-to-claims-based-authentication-ad-fs-3-0-and-sharepoint-2013-part-iii-configuring-sharepoint-2013-for-ad-fs>
 
 
Erst bei der zweiten eingabe der Pin erreichbar
 
SCCM Blog
 
<https://thesystemcenterblog.com/page/2/>
 
**Sharing a SharePoint site with AD Group using ADFS/SSO**
 
<https://www.epmpartners.com.au/blog/sharing-a-sharepoint-site-with-ad-group-using-adfs-sso/>
 
Workflow Manager installation offline :
 
<https://social.technet.microsoft.com/wiki/contents/articles/31477.installing-workflow-manager-offline.aspx>
 
**Stresstest mit Visual Studio:**
 
<https://docs.microsoft.com/en-us/previous-versions/jj710162(v=vs.140)>
 
 
<https://docs.microsoft.com/de-de/visualstudio/test/quickstart-create-a-load-test-project?view=vs-2017>
Kemp Load Balancer Links :
 
<https://support.kemptechnologies.com/hc/en-us/articles/115001659626-How-To-Re-Encrypt-Multiple-SNIs>
 
 
 
<https://docs.microsoft.com/de-de/azure/devops/test/load-test/run-performance-tests-app-before-release?view=vsts>
 
<https://blogs.msdn.microsoft.com/malte_lantin/2014/02/13/lasttests-load-tests-leicht-gemacht-mit-visual-studio-online/>
 
<https://blogs.msdn.microsoft.com/testingspot/2017/02/23/guide-to-get-started-with-visual-studio-web-load-testing-and-automation/>
Ralkohome.de
 
Mysite Konfigurieren
 
<https://docs.microsoft.com/de-de/SharePoint/install/configure-my-sites>
 
Viele Sharepointartikel :
<https://sharepointmaven.com/category/step-by-step-instructions/>
 
<https://sharepointmaven.com/how-to-create-hub-sites-in-sharepoint-online/>
 
 
 
 
 
<https://collab365.community/performance-testing-sharepoint-with-25-page-sample-report/>
 
 
Load Test Settings in VS 2019 :
 
<https://docs.microsoft.com/de-de/visualstudio/test/load-test-run-settings-properties?view=vs-2019>
 
Benutzer Definierte Kacheln :
<https://docs.microsoft.com/de-de/sharepoint/administration/custom-tiles-in-sharepoint-server-2016>
 
 
(Invoke-WebRequest \"<https://portal.ralfkoop.de/sites/zuhause/SitePages/Startseite.aspx>\" -UseDefaultCredentials ).links \|where {\$\_.href -like \"\*file:/\*\"}
 
Iframe :
A Page from SharePoint 2013 (on premise) can be displayed in an iframe from a Page hosted on another domain, if the following control is added to the head of the master page:
\<WebPartPages:AllowFraming runat=\"server\" /\>
However if this control is not added to the master-page, then we also get the above mentioned error
 
Aus \<<https://sharepoint.stackexchange.com/questions/140253/display-sharepoint-online-in-an-iframe-on-different-domain>\>
 
<http://sadomovalex.blogspot.com/2015/12/remove-x-frame-options-sameorigin-http.html>
 
Solution for Sharepoint :
<https://github.com/SharePoint/sp-dev-docs/tree/master/docs/solution-guidance>
 
 
 
Hier muss generell eine Einstellung im IIS
Konfiguriert werden, und zwar X-FrameOrigin oder so
ähnlich
 
 
 
**Grundlagen SharePoint-Webpart für Inhaltssuche**
 
Aus \<<https://sharepoint360.de/grundlagen-sharepoint-webpart-fuer-inhaltssuche-teil-1-uebersicht/>\>
Man kann dies auch direkt in der ASPX Seite machen die als Iframe angezeig soll :
 
 
asp:Content ContentPlaceHolderId=\"PlaceHolderPageTitleInTitleArea\" runat=\"server\"\>
> \<SharePointWebControls:FieldValue ID=\"FieldValue2\" FieldName=\"Title\" runat=\"server\"/\>
>
> \<WebPartPages:AllowFraming runat=\"Server\" /\>
 
 
 
 
Sharepoint Zugriffanforderung :
 
Allow members to share the site and individual files and folders.
 
\$web.MembersCanShare = \$false
 
 
Allow members to invite others to the site members group
 
\$Group = \$web.SiteGroups\[\"Zuhause Members\"\]
\$Group.AllowMembersEditMembership = \$false
2023-08-25 23:29:11 +02:00
\$Group.Update() \#Eventuell noch
2023-08-17 19:32:37 +02:00
\$web.Update()
 
 
 
| Allow access requests |
|---------------------------------------------------------------|
| Send all requests for access to the following e-mail address: |
Wenn dies aktiviert ist, kann man einfach die Email leer machen, dann ist es automatisch deaktiviert.
 
\$web.RequestAccessEmail =\"\"
RequestAccessEmail :
RequestAccessEnabled : False
 
 
Ich will aber noch prüfen wie man das generell erlaubt, dies soll über die Masterpage gehen, aber Sicherheit beachten!!!
 
UE50MU6179
 
<https://www.sharepointdiary.com/2015/11/open-documents-in-client-application-in-sharepoint-2013.html>
 
Video presentations about SharePoint hybrid include [channel9.msdn.com/Events/SharePoint-Conference/2014/SPC339](http://channel9.msdn.com/Events/SharePoint-Conference/2014/SPC339) and [channel9.msdn.com/Events/SharePoint-Conference/2014/SPC320](http://channel9.msdn.com/Events/SharePoint-Conference/2014/SPC320).
 
Aus \<<https://www.directionsonmicrosoft.com/research/2014/09/integrating-sharepoint-online-and-premises>\>
 
 
/\_layouts/15/DocIdRedir.aspx?ID=\<Document ID\>
 
Aus \<<https://joannecklein.com/2018/11/16/sharepoint-online-and-document-id-the-goods/>\>
 
 
\[16.07.2020 10:38\]  Andreas Maiwald: 
[https://docs.microsoft.com/en-us/sharepoint/install/hardware-and-software-requirements-2019#:\~:text=Hardware%20and%20software%20requirements%20for%20SharePoint%20Server%202019,deployment%20in%20SharePoint%20Server%202019.%20Weitere%20Artikel\...%20](https://docs.microsoft.com/en-us/sharepoint/install/hardware-and-software-requirements-2019#:~:text=Hardware%20and%20software%20requirements%20for%20SharePoint%20Server%202019%2cdeployment%20in%20SharePoint%20Server%202019.%20Weitere%20Artikel...%20)
 
 
 
<https://docs.microsoft.com/en-us/sharepoint/install/software-boundaries-and-limits-0>
 
 
<https://seroter.com/2008/07/24/infopath-rules-grouping-behavior-and-new-biztalk-posters/>
infopath 2013 Regel für and und or erklärt
 
 
<https://global-sharepoint.com/sharepoint-2/add-more-than-5-conditions-in-infopath-forms-rule/>
 
infopath2013 mehr als 5 Bedingungen pro Regel
 
**Konto Berechtigungen und Sicherheitseinstellungen in SharePoint-Servern**
 
 
<https://docs.microsoft.com/de-de/SharePoint/install/account-permissions-and-security-settings-in-sharepoint-server-2016>