search
top
Currently Browsing: Powershell

Installing Microsoft PowerShell Core 6.x on Fedora 28

Installing Microsoft PowerShell Core 6.x on Fedora 28 In an earlier post we covered the release and install of PowerShell Core 6 on Linux and OS X. In this post we will install PowerShell Core 6.1 preview 2 on Fedora 28. Download the rhel7 RPM for PowerShell Core 6.1 preview 2 from https://github.com/PowerShell/PowerShell/releases/tag/v6.1.0-preview.2.  Once downloaded the installation is a standard rpm... read more

Running and Installing .NET Core SDK 2 On Fedora 28

Introduction As part of the continuing effort to port .NET Core to other OSes, Microsoft has made .NET Core available on Linux. Being the geek that I am I have to try to get it to run on Linux, more specifically Fedora 28. In this post we will cover exactly how to accomplish it. Installing First thing is to download the latest... read more

How To Find A String in a File With PowerShell

Introduction So you have a need to have PowerShell to look for a string in a file and create and entry if it doesn’t find it and do nothing if it does.  For my example I am installing an application and I need to add three lines of content, but if it exists I do not want duplicate entries created. The Code There are probably other ways to achieve the goal, but my idea was to use Get-Content and read... read more

Using PowerShell to Move Cluster Resources to Preferred Node on Windows Server 2008 and above

Introduction In an earlier post we covered Using PowerShell to Failover Cluster Resources for Patching, to expand on the script we are adding a third option for use on active / active clusters to move the Cluster Resources to their preferred node if it is defined. We will cover creating the move by itself and also incorporating it in the script covered in the earlier post. About the Script The purpose of... read more

How To Map a Network Drive With Encrypted Password with PowerShell

Introduction With the New-PSDrive cmdlet add to PowerShell 3, we can now mount any available PSProvder as a drive. This is great and simple to execute, but the real question is how can I do this and not send the password in clear text, but encrypted. The answer to that question is yes and in this post we will discuss how. The Process The first piece of the puzzle is to create a secure string password for... read more

« Previous Entries Next Entries »

top