Skip to content

Instantly share code, notes, and snippets.

@Hexalon
Hexalon / Install-NetFx3.Win10.ps1
Created March 15, 2016 19:48
Automates .NET Framework 3.5 installation on Win10
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.116
Created on: 3/9/2016 13:59
Created by: Colin Squier <[email protected]>
Filename: Install-NetFx3.Win10.ps1
===========================================================================
.DESCRIPTION
Automates .NET Framework 3.5 installation on Win10. The script will
@Hexalon
Hexalon / Enable-BitLocker.ps1
Created March 15, 2016 13:50
Automates configuration of BitLocker drive encryption
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.116
Created on: 2/18/2016 09:42
Created by: Colin Squier <[email protected]>
Filename: Enable-BitLocker.ps1
===========================================================================
.DESCRIPTION
Automates configuration of BitLocker drive encryption.
@Hexalon
Hexalon / Install-WMF5.ps1
Last active June 21, 2017 12:36
Automates installation of Windows Management Framework 5
#Requires -Version 4.0
[CmdletBinding()]
Param(
[switch]$OnlineInstall = $false
)
<#
.NOTES