Inhaltsverzeichnis

Positive affirmationen (Texte)

Du bist Gut,

so wie du bist,

Du schaffst das!

Wer, wenn nicht du.

Wo, wenn nicht hier.

Wann, ausser jetzt.

Körper folgt dem Geist

Der Geist folgt Körper

Wenn der Kopf Positiv ist,

ist auch der Körper Positiv!!!

Mac Tastatur short cuts

Dieses Bild ist einen MAC Tastatur

Weise Texte

Das Engels Zeichen

Weise Texte

Powershell

I have created a script the creat a Scheduler Task over Powershell. I think it is easyer how .cmd but for was this imported.

# Reboot Server

$action = New-ScheduledTaskAction -Execute 'Shutdown' -Argument '/r /t 0'

$trigger = New-ScheduledTaskTrigger -once -At 07:00pm

$principal = New-ScheduledTaskPrincipal -UserID „NT AUTHORITY\SYSTEM“ -LogonType ServiceAccount

Register-ScheduledTask -Action $action -Trigger $trigger -TaskName „RebootTaskJoern2“ -Description „For the Reboot at today“ -Principal $principal -Force

Text Daten wiederholt abfragen

# Text Datei wiederholt abfragen und suchen nach einem speziellen Inhalt. $datei = 'D:\scripte\textdatei.txt'

do

{

$test = Select-String -path $datei -SimpleMatch „SIEBEN“

if (($test).Line -ne $null)

{

Write-Host „Der Wert ===“($test).line,“=== ist da!„

break

}

else

{

Write-Host „Den Inhalt nicht gefunden“

}

}

until (($test).line -eq $false)

Powershell Rename file xxx in folder in YearMontDay

# variables

$files = Get-ChildItem

$date01 = get-date -Format yyyymmdd

$zahlplus = 0

# loop

foreach ($one in $files) {

# add number

$zahlplus += +1

# add date

$one2 = $date01

# add _

$one2 +=„_“

# add zahlplus

$one2 +=$zahlplus

# add .txt

$one2 += “.txt„

Rename-Item $one $one2 ''}