This commit is contained in:
Zack Meier
2026-04-15 15:45:50 -05:00
commit 1d304511b8
613 changed files with 140998 additions and 0 deletions
@@ -0,0 +1,16 @@
param (
# [Parameter(Mandatory = $true,
# HelpMessage = "CRC TEXT ONLY")]
# [string]
# $CSR,
[Parameter(Mandatory = $true,
HelpMessage = "CRC File")]
[file]
$CSRfile
)
#$csr=Get-Content -raw $Csrfile
$csr = [Text.Encoding]::UTF8.GetString($CSRfile.Content)
Write-Host $csr