I had to capture this in a blog as soon as possible so this article might be rough. I just successfully deployed a Linux VM […]
Continue readingAuthor: kevin
Disable IPv6 in Ubuntu Linux
Recently I was asked to disable IPv6 on an Ubuntu Linux server. Here are the steps: Test if IPv6 is enabled: cat /proc/sys/net/ipv6/conf/all/disable_ipv6 0 means […]
Continue readingMove Data to Another SQL Server in Batches
I ran into a problem where I was unable to move data from one database to another in one INSERT INTO statement. I used the […]
Continue readingUsing .NET C# and the Orchestrator Web Service
I needed to capture the blogs I used to create the helper class for the website I am building. This site will launch Orchestrator Runbooks […]
Continue readingPowerShell Script Execution Policy
The Set-ExecutionPolicy cmdlet enables you to determine which PowerShell scripts will be allowed to run on your computer. PowerShell has four different execution policies: Restricted […]
Continue readingFilter results from sp_who2
It can be very helpful to filter the results of sp_who2 in SQL 2008: DECLARE @sp_who2_temp_table TABLE( SPID INT, Status VARCHAR(100), LOGIN VARCHAR(150), HostName VARCHAR(100), […]
Continue readingFormat XML in Visual Studio
I often end up with badly formatted XML files that display as one long line in Visual Studio. To format XML to a look more […]
Continue readingOrchestrator – Matching on the New Line Character
There may be a bug in the way Orchestrator matches the new line character (\n). Sometimes it just does not find the new line! After a […]
Continue readingOrchestrator – Looping on a PowerShell Object
Looping can be a little tricky if you don’t know the rules Orchestrator uses: The Exit tab specifies the conditions that will determine if the loop […]
Continue readingAdd a Tooltip using CSS and jQuery with Gradient and Round Borders
The perfect cross-browser tooltip is hard to find. You can always use the default, but it may not match your theme. Based on information I […]
Continue reading