You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any file/directory paths that contain brackets (ex: "c:\temp[0]") do not work with right context menu items. For example, say I have the following path: C:\temp[0]
If I right click that directory and click the item "Share this folder in a Sandbox", it will not work. I suspect this can be easily fixed by properly escaping the path in powershell. The following will likely work: [WildcardPattern]::Escape($literalPath)