I use custom powershell functions to make my life easier.
Example:
# custom function > function build {cmd /c build.ps1} # invoke the function >
Add this to your profile:
$sysfunctions = gci function: function myfunctions {gci function: | where {$sysfunctions -notcontains $_} }
and myfunctions will list just the functions that were created since the session started.