Forum Discussion
Alpha45
Feb 05, 2025Brass Contributor
Error PowerShell 300-1015 (80)
Hello, using PowerShell for office installation, with ODT, it gives me the following error shown in the photo, or opening the console in any folder with the right mouse button "open the P.S. window ...
vimal_raj1984hotmail
Feb 16, 2025Copper Contributor
It looks like PowerShell is having trouble interpreting the file path because of the spaces in D:\Ripristino\File Ripristino\Office\Office. In PowerShell, paths with spaces must be enclosed in quotes or properly escaped
Here’s how you can fix it
Set-Location -LiteralPath "D:\Ripristino\File Ripristino\Office\Office"
or
Set-Location D:\Ripristino\File` Ripristino\Office\Office
The backtick (`) is PowerShell's escape character.