Forum Discussion
Alpha45
Feb 05, 2025Brass Contributor
Error PowerShell 30015-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 ...
Charlie34000
Jun 05, 2026MCT
Hi,
The error “Missing termination character in the string” usually appears when the path contains spaces or escape characters that break the string.
In your case, the path: D:\\Ripristino\\File Ripristino\\Office\\Office
contains a space (File Ripristino) and double backslashes. PowerShell interprets this as an unterminated string, which also explains the Set‑Location binding error.
Try using a quoted literal path:
Set-Location -LiteralPath "D:\Ripristino\File Ripristino\Office\Office"
Or, if you prefer escaping:
Set-Location -LiteralPath 'D:\\Ripristino\\File Ripristino\\Office\\Office'
Using -LiteralPath avoids PowerShell interpreting backslashes or special characters.
Let me know if the error persists or if you want to validate your ODT command.