Update PowerShell Profile

This commit is contained in:
Shockwave 2025-06-13 20:54:51 +08:00
parent c87f4f6e10
commit 8dfa1c7a75
1 changed files with 6 additions and 0 deletions

View File

@ -1217,3 +1217,9 @@ function StopAllGitProcesses {
Stop-Process $p.Id Stop-Process $p.Id
} }
} }
function Uuid {
$id = $(New-Guid)
return $id -replace '-', ''
}