Installing Jekyllrb's Endtoend Theme

My goal is to configure my homepage herculosh.com to a new blogging framework written in Ruby. In the last weeks I’ve been working with Ruby anyway, and I liked this programming language a lot.

Since I would still call me a Ruby newcomer to the eco-structure at the …

more ...

Refresh DNS on Mac-OSX

Der DNS cache kann auf dem Mac-OSX wie folgt erneuert werden:

  1. Iterm oder Terminal öffnen
  2. Folgende Zeile ausführen.
    $ dscacheutil -flushcache;sudo killall -HUP mDNSResponder
    
more ...

Reboot-Zeit mit PowerShell auslesen

Die Reboot-Zeit konnte früher mit dem Tool [uptime.exe] ausgelesen werden. Offiziell gibt es dieses Tool nicht mehr von Sysinternal/Microsoft zum Download. Hier kann ein kleines Powershell Script abhelfen.

more ...

Dynamic and interactive filtering in Powershell

Filtering in Powershell are one of the most expressions i’m use fordrill down get-cmdlet results. There are so much situations we wouldlike to have some simple and clear technique to see the results in different views.As an Example I will use get-process with three views:

  1. SlowMotion (More about …
more ...

Find MSSQL Server Errorlog Location with Logparser

We are running much SQL Servers with different located ErrorLogs. Sometimes its useful to find quick the Location from the Logs. I did a Command that gives me the Errorlog location to the Command prompt, so I can copy them on my Client and open it in my lovely Editor …

more ...

Keep your Sharepoint Mail Enabled list Email Adress clean

Did you once give the possibility in Sharepoint for Enabled Lists or Libraries and thought, oops the Sharepoint Users can make a real big mess with the Email Adresses in our Active Directoy?

Maybe you give External partners access to Lists via Email. How does the external Customers think about …

more ...

Create SHA1 Hash from a String in PowerShell

Create a SHA1 hash in PowerShell

There is not that much to say. Attached is a Script that generates a SHA1 Hash from a String.

Why for me?

We have several Servers they are storing files in a specified format on different folders. I should write a Powershell Script who …

more ...


SQLH2 Query

We’r using SQLH2

We’re using SQLH2 from Microsoft to bring sql server related information together on one data store. It’s not a perfect solution when 64-bit is in use, because sqlh2 cannot gather information’s from SQL Server x64. In our case its ok to exclude 64-bit …

more ...