Skip to content

Instantly share code, notes, and snippets.

@Hexalon
Hexalon / Enable-LocalStoreOverride.ps1
Last active June 2, 2016 16:27
Enables local GPO store override, creates the key if it does not exist.
#Requires -RunAsAdministrator
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.122
Created on: 6/2/2016 10:14
Created by: Colin Squier <[email protected]>
Filename: Enable-LocalStoreOverride.ps1
===========================================================================
.DESCRIPTION
@Hexalon
Hexalon / Configure-Win10.ps1
Created June 1, 2016 15:38
Automates configuration of Windows 10 machines
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2015 v4.2.99
Created on: 02/17/2016 15:07
Created by: Colin Squier <[email protected]>
Filename: Configure-Win10.ps1
===========================================================================
.DESCRIPTION
Automates configuration of Windows 10 machines.
@Hexalon
Hexalon / CheckFolderRedirection.ps1
Last active June 10, 2016 19:05
Queries redirected folder locations using the .NET Framework. Stores data in an ordered hash table and writes to the pipline.
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.122
Created on: 5/31/2016 15:00
Created by: Colin Squier <[email protected]
Filename: CheckFolderRedirection.ps1
===========================================================================
.DESCRIPTION
Queries redirected folder locations using the .NET Framework. Stores
@Hexalon
Hexalon / Fix-OfficeActivation.ps1
Created May 19, 2016 19:10
Set the KMS host for Office and activates Office.
[CmdletBinding()]
Param ()
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.120
Created on: 4/27/2016 14:56
Created by: Colin Squier <[email protected]>
Filename: Fix-OfficeActivation.ps1
@Hexalon
Hexalon / Install-SkypeForBusiness2015.ps1
Created May 16, 2016 13:52
Automates installation of Skype For Business 2015
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.119
Created on: 5/3/2016 09:37
Created by: Colin Squier <[email protected]>
Filename: Install-SkypeForBusiness2015.ps1
===========================================================================
.DESCRIPTION
Automates installation of Skype For Business 2015.
@Hexalon
Hexalon / Set-Win10-CustomBackground.ps1
Last active May 15, 2016 20:57
Changes default Windows 10 background images to custom background images
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.120
Created on: 4/28/2016 08:18
Created by: Colin Squier <[email protected]>
Filename: Set-Win10-CustomBackground.ps1
===========================================================================
.DESCRIPTION
Changes default Windows 10 background images to custom background images.
@Hexalon
Hexalon / StringToHex.ps1
Created April 19, 2016 20:12
Converts input string to a hex value
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.117
Created on: 3/22/2016 10:15
Created by: Colin Squier <[email protected]>
Filename: StringToHex.ps1
===========================================================================
.DESCRIPTION
Converts input string to a hex value.
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2015 v4.2.89
Created on: 7/30/2015 12:48 PM
Created by: Colin Squier <[email protected]
Filename: Install-WMF4.ps1
===========================================================================
.DESCRIPTION
Automates installation of PowerShell 4.
@Hexalon
Hexalon / Lock-Computer.ps1
Last active August 26, 2020 14:06
Uses C# to call an Win32 API to lock the computer
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.117
Created on: 3/25/2016 17:33
Created by: Colin Squier <[email protected]>
Filename: Lock-Computer.ps1
===========================================================================
.DESCRIPTION
Uses C# to call an Win32 API to lock the computer
@Hexalon
Hexalon / Imaging-Win10.ps1
Last active August 17, 2017 18:05
Provides interactive/automated imaging operations using DISM and WinPE
#requires -version 4.0
#requires -modules Storage,DISM
#Requires -RunAsAdministrator
<#
.NOTES
===========================================================================
Created with: SAPIEN Technologies, Inc., PowerShell Studio 2016 v5.2.117
Created on: 3/16/2016 10:05
Created by: Colin Squier <[email protected]>
Filename: Imaging-Win10.ps1