Currently in the Moving Around Directories module and it’s telling me to flag files using the code -F, only when I do Powershell says it doesn’t exist?
Here’s my error code:
Get-ChildItem : Parameter cannot be processed because the parameter name ‘F’ is ambiguous. Possible matches
include: -Filter -Force.
At line:1 char:4
Good morning!
It looks like you may have used all caps for the command. Try again with lowercase ls and uppercase for the flag -F. All together, it should look like this:
ls -F
It is a safe assumption that case matters in all of your commands, etc as you work your way through the modules, and it’s always a good detail to check as soon as you start debugging if something isn’t working.