diff --git a/RdzeN-Profile.ps1 b/RdzeN-Profile.ps1 index 527ed22..3c3b3e1 100644 --- a/RdzeN-Profile.ps1 +++ b/RdzeN-Profile.ps1 @@ -44,3 +44,12 @@ if (-not (Get-ChildItem $path_gitea_powershell_profile_functions).count -gt 0) { Get-ChildItem $path_gitea_powershell_profile_functions | ForEach-Object { . $_.FullName } + +# 4. list functions +$functions = Get-ChildItem $path_gitea_powershell_profile_functions | Sort-Object +for ($i = 0; $i -lt $functions.Count; $i++) { + Write-Host "$i)`t$(($functions[$i].Name).Replace('.ps1',''))" +} + +# 99. Prompt profil loaded +New-SimulateTyping "PowerShell User Profile is loaded" \ No newline at end of file