diff --git a/src/session.ts b/src/session.ts index f96bb734f7..cd49cb13ab 100644 --- a/src/session.ts +++ b/src/session.ts @@ -508,7 +508,7 @@ export class SessionManager implements Middleware { private promptForRestart() { vscode.window.showErrorMessage( - "The PowerShell session has terminated due to an error, would you like to restart it? (IntelliSense will not work unless the PSIC is active and unblocked.)", + "The PowerShell Integrated Console (PSIC) has stopped, would you like to restart it? (IntelliSense will not work unless the PSIC is active and unblocked.)", "Yes", "No") .then((answer) => { if (answer === "Yes") { this.restartSession(); }}); }