Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
XpandPwsh
1.211.0.4
Public/System/Unprotect-SecretVariable.ps1
function
Unprotect-SecretVariable
{
[
CmdletBinding
(
)
]
[
CmdLetTag
(
)
]
param
(
[string]
$t
)
begin
{
}
process
{
Write-Host
"$($t[0]) $($t.Substring(1))"
}
end
{
}
}