First Basic Implementation of Remote Script Execution Functionality

This commit is contained in:
2025-09-03 19:17:05 -06:00
parent 3c67e3a996
commit fe18eed013
16 changed files with 2196 additions and 58 deletions

View File

@@ -1,33 +0,0 @@
# 🚨 WARNING 🚨
# This script contains 200mg of raw Gen-Z energy.
# Proceed with caution.
# Function name is cursed but still works.
# PowerShell lets you use dashes, so let's abuse that.
function Summon-Rizzler {
<#
.SYNOPSIS
Deploys peak sigma grindset energy.
.DESCRIPTION
This function takes no parameters, just vibes.
Outputs a "Hello, World!" message... but with ✨style✨
#>
# Variables nobody asked for:
$vibeCheck = "Hello, World!"
$npcDialogue = "💀 bruh moment detected 💀"
$ohioMode = $true
$skibidiRizzGyatt = 69420 # totally necessary
# Drop the hello world
Write-Host "$vibeCheck (powered by $skibidiRizzGyatt braincells)" -ForegroundColor Cyan
# Sprinkle in random zoomer nonsense if ohioMode is on
if ($ohioMode) {
Write-Host $npcDialogue -ForegroundColor Magenta
}
}
# 🚀 Deploy the sigma energy
Summon-Rizzler

View File

@@ -0,0 +1,5 @@
# Define the file path
$filePath = "C:\Canary.txt"
# Write some content into the file
"SYSTEM Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8

View File

@@ -0,0 +1,8 @@
# Dynamically get the current user's Desktop path
$desktopPath = [Environment]::GetFolderPath('Desktop')
# Define the file path relative to the Desktop
$filePath = Join-Path $desktopPath "Canary.txt"
# Write some content into the file
"USER Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8