This commit is contained in:
Ralf Koop 2023-09-28 19:42:18 +02:00
commit ee68ec3571
4 changed files with 59 additions and 0 deletions

3
Eingang/2023-09-24.md Normal file
View File

@ -0,0 +1,3 @@
# 2023-09-24
https://www.youtube.com/watch?v=eWLDAAMsD-c

6
Eingang/Csharp.md Normal file
View File

@ -0,0 +1,6 @@
# C\# oder Csharp
Operatoren = ??
?? und ??=: die NULL-Sammeloperatoren
siehe hierzu https://learn.microsoft.com/de-de/dotnet/csharp/language-reference/operators/null-coalescing-operator

View File

@ -0,0 +1,26 @@
# Parallel Desktop
Parallels Desktop may upload client info or logs to server.
You can use a firewall block there domains.
Or use Hosts, AdGuardHome filter DNS resolve.
download.parallels.com
update.parallels.com
desktop.parallels.com
download.parallels.com.cdn.cloudflare.net
update.parallels.com.cdn.cloudflare.net
desktop.parallels.com.cdn.cloudflare.net
www.parallels.cn
www.parallels.com
reportus.parallels.com
parallels.com
parallels.cn
pax-manager.myparallels.com
myparallels.com
my.parallels.com
PD -Patcher v18.1.1r1

View File

@ -0,0 +1,24 @@
Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
#Any web application associated with SSS proxy application or central admin
$WebAppURL="https://collaboration-int.bauer-de.bauermedia.group"
#Establish the Context
$Provider = New-Object Microsoft.Office.SecureStoreService.Server.SecureStoreProvider
$Provider.Context = Get-SPServiceContext -Site $WebAppURL
#Get All Target Applications
$TargetApps = $provider.GetTargetApplications()
foreach ($App in $TargetApps)
{
Write-Output $App.Name
#Get the credentials for the App
$Credentials = $provider.GetCredentials($App.Name)
foreach ($Cred in $Credentials)
{
$EncryptString = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($cred.Credential)
$DecryptString = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($EncryptString)
Write-Output "$($cred.CredentialType): $($DecryptString)"
}
}