After you configure your first ADFS application like here: https://rzetelnekursyold.dev/adfs-some-useful-information-sample-app-debug-etc/ You can Do it as a multi tenant application using this scenario: Step by step described here: https://blog.matrixpost.net/creating-an-ad-fs-federation-trust-between-two-organizations/
Month: September 2023
PerfMon – Import User Defined Data Collector Set via CI/CD (PowerShell)
Sometime you need to import User Defined Data Collector Set via CI/CD via pipeline – this one do the job: $datacollectorset = New-Object -COM Pla.DataCollectorSet$xml = Get-Content C:ExportTemplatPerfmonFilespal.xml$datacollectorset.SetXml($xml)$datacollectorset.Commit(“PAL002” , $null , 0x0003) Especially helpful for analyses to be done via Performance Analysis of Logs (PAL) Tool. Please remember that PerfMon can be run only when Task Scheduler is enabled – https://mohammaddarab.com/perfmon-create-new-data-collector-set-grayed-out-fix/.
ADFS – Some useful information – Sample App, Debug, etc.
ADFS Debugs Tools: https://adfshelp.microsoft.com/Tools/ShowTools ADFS Config Tool: https://adfshelp.microsoft.com/ClaimsXray/TokenRequest How to create Sample ADFS Application: https://blogs.technet.microsoft.com/tangent_thoughts/2015/02/20/install-and-configure-a-simple-net-4-5-sample-federated-application-samapp/ The same for backup purposes: https://jianmingli.com/wp/?p=12286 https://courses.edx.org/asset-v1:Microsoft+INF218x+4T2017+type@asset+block@Module_1_-_Web_Application_Proxy__WAP__Practical_Exercise.pdf https://technet440.rssing.com/chan-6827930/article14228.html And the most important everywhere the file is missed SampApp and Rules.zip – but you can download it from: https://publicbinaries.blob.core.windows.net/bins/SampApp%20and%20Rules.zip Some others examples: https://github.com/ahelland/AADGuide-CodeSamples