<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>System Administration on Michael Reichenbach</title>
    <link>https://michaelreichenbach.de/categories/system-administration/</link>
    <description>Recent content in System Administration on Michael Reichenbach</description>
    <image>
      <title>Michael Reichenbach</title>
      <url>https://michaelreichenbach.de/logo.png</url>
      <link>https://michaelreichenbach.de/logo.png</link>
    </image>
    <generator>Hugo -- gohugo.io</generator>
    <lastBuildDate>Fri, 20 Sep 2019 00:00:00 +0000</lastBuildDate><atom:link href="https://michaelreichenbach.de/categories/system-administration/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>How-To: Configure Google Chrome Extensions with Windows GPO</title>
      <link>https://michaelreichenbach.de/posts/how-to-configure-google-chrome-extensions-with-windows-gpo/</link>
      <pubDate>Fri, 20 Sep 2019 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/how-to-configure-google-chrome-extensions-with-windows-gpo/</guid>
      <description>I recently worked on a project where we needed to create a fully self configuring mounted wall display solution that could be zero touch deployed across the company. You can read more about the full solution in my upcoming blog post.
In this post I will highlight one piece of that solution: the Google Chrome Extension that can be configured with Windows Group Policy (GPO).
Update 25.01.2020 The following section is obsolete!</description>
    </item>
    
    <item>
      <title>How to drop everything in a MS SQL Database</title>
      <link>https://michaelreichenbach.de/posts/how-to-drop-everything-in-a-mssql-database/</link>
      <pubDate>Tue, 13 Mar 2018 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/how-to-drop-everything-in-a-mssql-database/</guid>
      <description>When working with SQL data and lots of foreign keys, you may have the need to drop everything. Well I have just the right SQL statement for you. The following statement will drop everything the given database, including the following:
non-system stored procedures views functions foreign key constraints primary key constraints tables You can execute parts of the script on its own if you only want to drop a certain part.</description>
    </item>
    
    <item>
      <title>RoboCopy the better XCopy – Parsing error logs</title>
      <link>https://michaelreichenbach.de/posts/robocopy-the-better-xcopy-parsing-error-logs/</link>
      <pubDate>Mon, 12 Mar 2018 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/robocopy-the-better-xcopy-parsing-error-logs/</guid>
      <description>A few weeks ago I wrote about using XCopy to copy files and folder structures including their NTFS Permissions. Recently I came to the point where I wanted to see all errors and their related files, so I could fix messed up NTFS permissions. With XCopy however parsing the log is pretty much impossible. Also Microsoft suggests using RoboCopy as a sucessor to XCopy. And thats what I did.
Using RoboCopy like XCopy In my other blog post I meantioned that I wanted to copy all folders and files including their NTFS permissions and ignore errors on the way.</description>
    </item>
    
    <item>
      <title>XCopy files keeping NTFS permissions and ignoring errors</title>
      <link>https://michaelreichenbach.de/posts/xcopy-files-keeping-ntfs-permissions-ignoring-errors/</link>
      <pubDate>Wed, 28 Feb 2018 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/xcopy-files-keeping-ntfs-permissions-ignoring-errors/</guid>
      <description>XCopy is a very useful tool included in all versions of Windows. With XCopy you can copy large amounts of data with ease. Plus it has a switch that lets you copy over the NTFS permissions.
Creating an initial full copy with XCopy 1 xcopy &amp;#34;C:\Source Folder&amp;#34; &amp;#34;F:\Destination Folder&amp;#34; /X /H /E /V /C Copy files and folders that changed since initial copy 1 xcopy &amp;#34;C:\Source Folder&amp;#34; &amp;#34;F:\Destination Folder&amp;#34; /X /H /E /V /D /Y /C Explanation of XCopy switches Parameter Description /?</description>
    </item>
    
    <item>
      <title>How-To: Extend windows partition blocked by recovery partition</title>
      <link>https://michaelreichenbach.de/posts/how-to-extend-windows-partition-blocked-by-recovery-partition/</link>
      <pubDate>Mon, 29 Jan 2018 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/how-to-extend-windows-partition-blocked-by-recovery-partition/</guid>
      <description>When you are working with Visual Machines (VMs) and fixed hard disks it can happen that you run out of space. In such cases it comes in handy that you can simply extend the existing virtual hard disk. Since Windows Server 2012R2 and Windows 8.1 this is even possible while the VM is running. After extending the VHDX you just need to go into Disk Management and expand your partition. That’s the theory at least.</description>
    </item>
    
    <item>
      <title>Windows Subsystem for Linux (WSL) behind Proxy</title>
      <link>https://michaelreichenbach.de/posts/windows-subsystem-linux-behind-proxy/</link>
      <pubDate>Wed, 13 Dec 2017 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/windows-subsystem-linux-behind-proxy/</guid>
      <description>Windows Subsystem for Linux (WSL) behind Proxy Recently I came accross the issue of wanting to install apt packages in WSL behind a corporate proxy. Plus I wanted to update my yarn package by using curl -o- -L https://yarnpkg.com/install.sh | bash which also needs to go through the proxy.
The solution is the same as if we want to set the proxy in a standard Ubuntu. So simply create a proxy.</description>
    </item>
    
    <item>
      <title>Getting started with kubectl for Azure AKS on Windows</title>
      <link>https://michaelreichenbach.de/posts/getting-started-kubectl-azure-aks-windows/</link>
      <pubDate>Wed, 29 Nov 2017 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/getting-started-kubectl-azure-aks-windows/</guid>
      <description>In this post you will learn how you can launch the Kubernetes Web UI Dashboard from you Windows Bash connected to the new Azure AKS service.
Install the Windows Subsystem for Linux Before we get started with kubectl, we need to install the “Windows Subsystem for Linux”. This will enable us to run a bash shell and connect us to the Azure AKS environment.
To enable the “Windows Subsystem for Linux” feature run the following command in an elevated PowerShell and restart your computer if prompted.</description>
    </item>
    
    <item>
      <title>Workaround for TCS has stopped working with HP Loadrunner TruClientIE</title>
      <link>https://michaelreichenbach.de/posts/tcs-stoped-working-hp-loadrunner-trueclientie/</link>
      <pubDate>Thu, 16 Nov 2017 00:00:00 +0000</pubDate>
      
      <guid>https://michaelreichenbach.de/posts/tcs-stoped-working-hp-loadrunner-trueclientie/</guid>
      <description>When using HP Loadrunner 12 and above with TruClientIE there is a known issue that the TCS process stops working after a couple of minutes.
Running a normal scenario with 10 VUsers will cause the scenario to fail after about 20 to 30 minutes, because there will be no more virtual users left to run the scenario.
While this problem is still existent in HP Loadrunner 12.01 as of 04.12.2014 there is a workaround to allow the execution of scenarios that need to run stable and without crashing after about 20 minutes.</description>
    </item>
    
  </channel>
</rss>
