Das gestrige Datum mit der Powershell ermitteln

Kurz und schmerzlos: Das Datum des vorherigen Tages (also gestern 😉 ) bekommt man mit der Powershell durch folgenden Code heraus: (get-date).AddDays(-1)

In einer Zeile bekommt man das gestrige Datum im Format YYYY-MM-DD wie folgt heraus: $Yesterday = (get-date -date ((get-date).AddDays(-1)) -uFormat "%Y-%m-%d");

via Converting VBScript’s DateAdd Function

Über Stefan

Polyglot Clean Code Developer

8 Kommentare

  1. Pingback:Stefan Macke » Blog Archiv » Kleines Script zum Sichern meiner Datenbanken

  2. Danke, genau das was ich gerade gesucht habe

  3. Schön, dass ich helfen konnte 🙂

  4. Fast schon zu einfach! Danke schön!

  5. Ein sehr guter Überblick und leicht verstĂ€ndlich. Danke! Werde ich jetzt Schritt fĂŒr Schritt abarbeiten, denn genau nach so eine Anleitung habe ich gesucht! Gruß, Katie

  6. Vielen Dank!! einfache und super Lösung

  7. Danke fĂŒr die Funktion 🙂

  8. immer wieder hilfreich

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax