Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
SimplyMC
0.0.2
functions/SaveProfile.ps1
function
SaveProfile
{
Param
(
$profile
)
$profile
|
ConvertTo-Json
|
Set-Content
-Path
$Script:ProfilePath
-Force
}