Web Archives - Thomas Maurer Cloud and Datacenter Blog focusing on Microsoft Azure Mon, 04 May 2020 16:47:31 +0000 en-US hourly 1 https://wordpress.org/?v=6.4.1 https://www.thomasmaurer.ch/wp-content/uploads/2018/06/cropped-icon1024-32x32.png Web Archives - Thomas Maurer 32 32 71605618 Write PowerShell Online using Visual Studio Codespaces https://www.thomasmaurer.ch/2020/05/write-powershell-online-using-visual-studio-codespaces/ https://www.thomasmaurer.ch/2020/05/write-powershell-online-using-visual-studio-codespaces/#comments Tue, 05 May 2020 05:31:16 +0000 https://www.thomasmaurer.ch/?p=16315 Last week the Visual Studio Services team announced a new service called Visual Studio Codespaces. Visual Studio Codespaces allows you to do cloud-hosted development for wherever you’re working. While the new services support many different programming and scripting languages, it also supports PowerShell. In this blog post, I am going to show you how you …

The post Write PowerShell Online using Visual Studio Codespaces appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2020/05/write-powershell-online-using-visual-studio-codespaces/feed/ 4 16315
The Windows 10 IoT Core web interface https://www.thomasmaurer.ch/2015/07/the-windows-10-iot-core-web-interface/ https://www.thomasmaurer.ch/2015/07/the-windows-10-iot-core-web-interface/#respond Wed, 01 Jul 2015 14:51:26 +0000 http://www.thomasmaurer.ch/?p=7227 If you have successfully installed Windows 10 IoT Core on your IoT device, for exmaple the Raspberry Pi 2, you can browse the device using a web interface to get some more information. If you don’t know the IP address or name of your device you can use the Windows 10 IoT Core Watcher to find your device …

The post The Windows 10 IoT Core web interface appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2015/07/the-windows-10-iot-core-web-interface/feed/ 0 7227
My Microsoft Band and Microsoft Health User Review https://www.thomasmaurer.ch/2015/02/my-microsoft-band-and-microsoft-health-user-review/ https://www.thomasmaurer.ch/2015/02/my-microsoft-band-and-microsoft-health-user-review/#comments Tue, 24 Feb 2015 15:33:44 +0000 http://www.thomasmaurer.ch/?p=7026 Back in November I finally got my Microsoft Band after spending a lot of time try to find one in different stores in the US. Since then I have used my Microsoft Band every day and I was waiting for the first big update and the release of the Microsoft Health Dashboard to write my …

The post My Microsoft Band and Microsoft Health User Review appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2015/02/my-microsoft-band-and-microsoft-health-user-review/feed/ 5 7026
Microsoft WebMatrix and Microsoft WebPlatform Installer https://www.thomasmaurer.ch/2011/04/microsoft-webmatrix-and-microsoft-webplatform-installer/ https://www.thomasmaurer.ch/2011/04/microsoft-webmatrix-and-microsoft-webplatform-installer/#comments Thu, 14 Apr 2011 14:30:50 +0000 http://www.thomasmaurer.ch/?p=1812 For a project at KTSI we needed a platform to quick deploy PHP and MySQL applications. There are a lot of solutions out there in the web, for example XAMPP. After testing some options I had a closer look at the Microsoft WebPlatform Installer and Microsoft WebMatrix. Those two tools do exactly what I need. With the …

The post Microsoft WebMatrix and Microsoft WebPlatform Installer appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2011/04/microsoft-webmatrix-and-microsoft-webplatform-installer/feed/ 1 1812
Windows Server 2008 R2 Hyper-V Licensing Overview https://www.thomasmaurer.ch/2011/04/windows-server-2008-r2-hyper-v-licensing-overview/ https://www.thomasmaurer.ch/2011/04/windows-server-2008-r2-hyper-v-licensing-overview/#comments Tue, 05 Apr 2011 13:34:05 +0000 http://www.thomasmaurer.ch/?p=1767 This is a little Overview how you can license Windows Server 2008 R2 in a Hyper-V Environment. One of the biggest advantages  of Hyper-V over VMware are the included Guest OS Licenses. For example if you buy a Windows Server 2008 R2 Datacenter license (of each CPU of your physical Server) you can deploy unlimited …

The post Windows Server 2008 R2 Hyper-V Licensing Overview appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2011/04/windows-server-2008-r2-hyper-v-licensing-overview/feed/ 1 1767
Powershell: Send Tweet https://www.thomasmaurer.ch/2010/06/powershell-send-tweet/ https://www.thomasmaurer.ch/2010/06/powershell-send-tweet/#comments Fri, 11 Jun 2010 13:26:22 +0000 http://www.thomasmaurer.ch/?p=732 For some reason your Powershell script should send a Tweet. With this function Powershell will send a message to Twitter. function Send-Tweet($Message) { #Twitter Login $Twitter_UserName = "yourname" $Twitter_Password = "yourpassword" $Twitter_URL = "https://twitter.com/statuses/update.xml?status=" $Twitter_Request = System.Net.WebRequest::Create($Twitter_URL + $Message) $Twitter_Request.credentials= New-Object System.Net.NetworkCredential($Twitter_UserName,$Twitter_Password) $Twitter_Request.method= "POST" $Twitter_Request.contentType = "application/x-www-form-urlencoded" $Twitter_Request.GetResponse().statusCode # return the status code of the …

The post Powershell: Send Tweet appeared first on Thomas Maurer.

]]>
https://www.thomasmaurer.ch/2010/06/powershell-send-tweet/feed/ 4 732