Windows 10 Accesing indented Windows folder name with Powershell.

Qwerty trea

New Member
Please help! how do I access a Windows folder that has the following name 'Start Menu' ? I tried using cd Start Menu however its not working instead I get an error

See image below. thanks in advance.
 

Attachments

  • windows.PNG
    windows.PNG
    16.7 KB · Views: 176
Just enclose the start menu string in double apostrophe. This is needed when ever the folder name contains spaces.
CD "Start Menu" (lower/upper case letters are not important)

Sent from my SM-N950F using Tapatalk
 
Another way to open it from Powershell.

$shell = New-Object -ComObject Shell.Application
$shell.Open(11)
 
Back
Top