diff --git a/config/win10/terminal/Microsoft.Powershell_profile.ps1 b/config/win10/terminal/Microsoft.Powershell_profile.ps1 index f928f25..a641664 100644 --- a/config/win10/terminal/Microsoft.Powershell_profile.ps1 +++ b/config/win10/terminal/Microsoft.Powershell_profile.ps1 @@ -1217,3 +1217,9 @@ function StopAllGitProcesses { Stop-Process $p.Id } } + +function Uuid { + $id = $(New-Guid) + return $id -replace '-', '' +} +