I'm trying to do something like this:
function Copy-Item( [string]$source, [string]$destination )
{
$global:Copy-Item $source -destination $destination
}
But I can't figure out what is the correct syntax for the global Copy-Item invokation. Is this even possible?