Monthly Archives: October 2017

Project Honolulu

The recent announced project Honolulu – https://blogs.technet.microsoft.com/windowsserver/2017/09/22/project-honolulu-technical-preview-is-now-available-for-download/ – is Microsoft’s new browser based Server management tool. You can install it on Windows 10, Windows Server 1709 and Windows Server 2016, 2012 R2 and 2012 Honolulu is the proposed replacement for … Continue reading

Posted in Windows Server 2012, Windows Server 2012 R2, Windows Server 2016 | Leave a comment

PowerShell v6: #2 Remoting

Ask any number of users and you’ll get at least that many different answers but at its core PowerShell is an administration tool. To be effective your administration tools have to be able to access remote machines. RDP is the … Continue reading

Posted in PowerShell v6 | Leave a comment

PowerShell file extensions

There are a number of file extensions associated with PowerShell. If you’re not aware of them they may cause you problems. You’ll commonly find these PowerShell file extensions: .ps1 – a PowerShell script. May contain functionality such as functions or … Continue reading

Posted in Powershell Basics | Leave a comment

Reverse DSC

DSC is a configuration management tool that first appeared in PowerShell v4 and was refined in PowerShell v5/5.1. Major changes are coming to DSC of which more later. DSC takes a configuration and applies it to a server. What about … Continue reading

Posted in DSC | Leave a comment

PowerShell Attacks–advice on defending

PowerShell Attacks–advice on defending from Lee Holmes – PowerShell security expert – is available at https://blogs.msdn.microsoft.com/powershell/2017/10/23/defending-against-powershell-attacks/ Read, learn, inwardly digest and apply

Posted in Powershell, Security | Leave a comment

Windows 2016 1709 release

The Windows 2016 1709 release is the first of the semi-annual updates for Windows Server – interestingly its referred to as Windows Server 1709 in the documentation. Its now available for download through your Software Assurance channels and Windows evaluation … Continue reading

Posted in Windows Server 2016 | 4 Comments

Windows 10 Fall Creators Update

The Windows 10 fall Creators Update arrived this morning. After the usual long download, install and then updating bits after I first log on (that last bit is really irritating – thought it was going away) I got into the … Continue reading

Posted in Windows 10 | Leave a comment

Monitor resolution

A question on the forum about getting monitor resolution led to this code Get-CimInstance -Namespace root\wmi -ClassName WmiMonitorId | foreach {        $filter = (“InstanceName = ‘$($psitem.InstanceName)'”).Replace(“`\”, “`\`\”)         $maxres = Get-CimInstance -Namespace root\wmi -ClassName WmiMonitorListedSupportedSourceModes -Filter $filter … Continue reading

Posted in PowerShell and CIM | Leave a comment

PowerShell + DevOps Summit 2018 schedule

The schedule for the 2018 Summit still needs a little bit of polishing to finish it but it’s taking shape. I’ve started releasing information on sched.com that we’re using for all our scheduling needs for the Summit. The one and … Continue reading

Posted in Powershell, Summit | Leave a comment

PowerShell v6: #1 major differences

In August 2016 PowerShell went open source. Since then we’ve seen 18 releases of alpha code and 8 beta release with another beta release imminent. This post – https://blogs.msdn.microsoft.com/powershell/2017/07/14/powershell-6-0-roadmap-coreclr-backwards-compatibility-and-more/ – from the PowerShell Team suggested a full release of PowerShell … Continue reading

Posted in PowerShell v6 | 2 Comments