This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## GitLab configuration settings | |
##! This file is generated during initial installation and **is not** modified | |
##! during upgrades. | |
##! Check out the latest version of this file to know about the different | |
##! settings that can be configured, when they were introduced and why: | |
##! https://gitlab.com/gitlab-org/omnibus-gitlab/blame/master/files/gitlab-config-template/gitlab.rb.template | |
##! Locally, the complete template corresponding to the installed version can be found at: | |
##! /opt/gitlab/etc/gitlab.rb.template |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$packagePath = "C:\temp\update.msu" | |
function PatchPackage([string]$mountDir, [string]$packagePath) { | |
# Add package | |
Write-Output("Apply package:" + $packagePath) | |
Dism /Add-Package /Image:$mountDir /PackagePath:$packagePath | |
if ($LASTEXITCODE -eq 0) { | |
Write-Output("Successfully applied the package") | |
} | |
else { | |
Write-Output("Applying the package failed with exit code: " + $LASTEXITCODE) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<Document xsi:schemaLocation="urn:iso:std:iso:20022:tech:xsd:pain.008.002.02 pain.008.002.02.xsd" | |
xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.002.02" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<CstmrDrctDbtInitn> | |
<GrpHdr> | |
<MsgId>Sammler2018</MsgId> | |
<CreDtTm>2018-09-10T09:25:48.000000+01:00</CreDtTm> | |
<NbOfTxs>2</NbOfTxs> | |
<CtrlSum>3.00</CtrlSum> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#CopyFromSD | |
$PathToExternalMedia = "D:\" #Pfad bzw. Laufwerksbuchstabe der SD-Karte | |
$PathToDestination = "C:\Users\Daniel\Pictures" #Pfad an den der Inhalt der SD-Karte kopiert wird | |
$FileList = Get-ChildItem -Path $PathToExternalMedia -Recurse -File | |
$i = 0 | |
$FileCount = $FileList.Count |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-PodioAPIAuthorization() { | |
$PostParams = @{grant_type = "app"; app_id = ""; app_token = ""; client_id = ""; redirect_uri = ""; client_secret = ""} | |
#Params for the Authentification have to be hardcoded | |
$Result = Invoke-RestMethod -Uri https://podio.com/oauth/token -Method POST -Body $postParams | |
return $Result.access_token | |
} |