I can hit tab and get the result I'm looking for, but it won't accept when I type the "M" in my own name. I'm new to this and am thoroughly confused what the underlying issue is here. Any and all information would
be appreciated, thanks!....
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
PS C:\Users\Jacob Markus Osborne> pwd
Path
----
C:\Users\Jacob Markus Osborne
PS C:\Users\Jacob Markus Osborne> cd..
PS C:\Users> pwd
Path
----
C:\Users
PS C:\Users> cd C:\Users\Jacob Markus Osborne
Set-Location : A positional parameter cannot be found that accepts argument 'Markus'.
At line:1 char:1
+ cd C:\Users\Jacob Markus Osborne
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-Location], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
PS C:\Users> cd 'C:\Users\Jacob Markus Osborne\'
PS C:\Users\Jacob Markus Osborne> pwd
Path
----
C:\Users\Jacob Markus Osborne
PS C:\Users\Jacob Markus Osborne>