Posts Tagged ‘Tipp’

Email VBS

Nur zur dokumentation, falls mal jemand eine Mail aus der von einem Windows-Rechner aus einem Script senden will. Das hier in eine Datei packen, mailserver, from und to einstellen, als .vbs speichern und ausführen.

Set mailing = CreateObject("CDO.Message")

' Configuration
mailing.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2
mailing.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mailserver"
mailing.Configuration.Fields.Item ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25
mailing.Configuration.Fields.Update

' Actual Content
mailing.From = "sender@example.com"
mailing.To = "test@example.com"
mailing.Subject = "Script-Mail!"
mailing.TextBody = "Hallo Welt"

'Sending
mailing.Send

Copy & Paste in der Kommandozeile!

Hier ein Eintrag aus der Nerd-Ecke: Die Windows-eigene Kommandozeile kann (fast) ganz normales Copy&Paste! Und das ohne den Umweg über das Fenster-Menü!

Locate the Edit Options section and tick the two check-boxes that labelled as Quick Edit Mode and Insert Mode respectively.

Read the rest of this entry »


Wie man Programmieren lernt

Aus den Kursen, die ich bisher gehalten habe, habe ich folgende Erkenntnisse für Programmier-Anfänger gezogen. Es sind die Tipps und Anmerkungen, auf die ich am meisten hinweise.

Read the rest of this entry »



Author

Claudius Coenen is a tech-enthusiast. He's writing on all kinds of topics, including programming, technology, gadgets and media.

This site features his occasional articles, findings, documentations.

Categories

Connect

RSS Recent Bookmarks

Legal