I am trying to create a simple script to move a directory to a secured location on our servers. I want to pull the new file location as a variable to include in an email that I have labeled $secure. Any help would be appreciated - Thanks!
Write-Host "Enter Package Location: " -NoNewLine -ForegroundColor Green
$package = Read-Host
Copy-Item -Path $package -Destination "C:\PS" -Force -Recurse
$secure = ???