Date Voltage
---- -------
4/29/2022 9:49:47 AM 119.5
4/29/2022 10:10:20 AM 123.6
4/29/2022 10:10:26 AM 120.7
4/29/2022 11:10:49 AM 113.9
4/29/2022 11:10:55 AM 119.5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Function Write-Log { | |
<# | |
.SYNOPSIS | |
Standard Event Log entry writer | |
.DESCRIPTION | |
Writes an entry to the local system's Event Log in a predictable and dependable way. | |
.INPUTS | |
None | |
.OUTPUTS | |
None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 5.1 -RunAsAdministrator | |
function Remove-XHunter1 { | |
param () | |
Stop-Service xhunter1 -Force -NoWait -Confirm:$false | |
Remove-Item "HKLM:\SYSTEM\CurrentControlSet\Services\xhunter1" -ErrorAction SilentlyContinue | |
Remove-Item -Path "C:\Windows\xhunter1.sys" -Force -ErrorAction SilentlyContinue | |
} | |
function Test-XHunter1 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Make sure to backup your profile, just in case that Elgato changes the file format. | |
# Scroll down to bottom to see example use case. | |
function Update-Profiles { | |
<# | |
.SYNOPSIS | |
Replaces outputType in all Stream Deck profiles for Elgato's Soundboard plugin. | |
.DESCRIPTION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-BashArguments { | |
[CmdletBinding()] | |
[OutputType([PSObject[]])] | |
param( | |
[Parameter(Mandatory = $true)] | |
# Path to a bash script | |
[string[]] | |
$Path | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class IP { | |
IP([string]$Address) { | |
$this._IPAddress = $Address | |
} | |
hidden [Version] $_IPAddress = $($this | Add-Member ScriptProperty 'Address' { | |
# get | |
[PSCustomObject]@{ | |
First = $this._IPAddress.Major | |
Second = $this._IPAddress.Minor | |
Third = $this._IPAddress.Build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ErrorActionPreference = 'SilentlyContinue' | |
#Region Settings | |
# IP address of our server | |
$IpAddress = "127.0.0.1" | |
# The public key for our server | |
$PublicKeyString = "12345678" | |
# The temporary folder where we will store and run the installer | |
$TempFolder = "C:\Temp\" | |
#EndRegion Settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 2.0 | |
<# | |
.SYNOPSIS | |
Returns the version of PowerShell installed and updates a custom field in NinjaRMM | |
.DESCRIPTION | |
Returns the version of PowerShell installed and updates a custom field in NinjaRMM if the Ninja Agent is installed. | |
.PARAMETER CustomField | |
Sets what custom field to update. | |
Defaults to "PowerShell" if not used. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Get-PolicyDefinition { | |
[CmdletBinding( | |
ConfirmImpact = 'None', | |
RemotingCapability = [System.Management.Automation.RemotingCapability]::PowerShell | |
)] | |
[OutputType([PSObject[]])] | |
param( | |
[Parameter(Mandatory = $false)] | |
[string[]] | |
$Name, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 7 | |
# Deletes all posts from $LogFile | |
[CmdletBinding()] | |
param ( | |
# Log file of all requests | |
[string] | |
$LogFile = "C:\temp\pictshare_posts.json" | |
) |