Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PowerShell Terminal Error #3929

Closed
SQLvariant opened this issue Feb 6, 2019 · 5 comments
Closed

PowerShell Terminal Error #3929

SQLvariant opened this issue Feb 6, 2019 · 5 comments
Assignees
Labels
Area - Extensibility Enhancement Request for new features or functionality
Milestone

Comments

@SQLvariant
Copy link
Contributor

Issue Type: Bug

I downloaded the PowerShell .vsix file from GitHub (PowerShell-1.11.0.vsix) and installed it in Azure Data Studio. I opened up a PowerShell script that works perfectly in the ISE or VSCode, but I'm getting an error message when I try to run the script in ADS.

Steps to repro:
Import-Module SqlServer;
Get-SqlInstance -ServerInstance localhost\SQL2017;

Error:
2/6/2019 2:21:34 PM [NORMAL] - Visual Studio Code v1.3.9 64-bit
2/6/2019 2:21:34 PM [NORMAL] - PowerShell Extension v1.11.0
2/6/2019 2:21:34 PM [NORMAL] - Operating System: Windows 64-bit
2/6/2019 3:52:33 PM [ERROR] - : Unable to instantiate; language client undefined.
2/6/2019 3:52:47 PM [ERROR] - : Unable to instantiate; language client undefined.
2/6/2019 4:35:04 PM [ERROR] - : Unable to instantiate; language client undefined.
2/6/2019 4:38:45 PM [ERROR] - : Unable to instantiate; language client undefined.
2/6/2019 4:39:04 PM [ERROR] - : Unable to instantiate; language client undefined.
2/6/2019 4:39:11 PM [ERROR] - : Unable to instantiate; language client undefined.

Am I running into a common mistake?

Azure Data Studio version: azuredatastudio 1.3.9 (cacf077, 2019-01-14T23:30:09.442Z)
OS version: Windows_NT x64 10.0.17134

System Info
Item Value
CPUs Intel(R) Core(TM) i7-8650U CPU @ 1.90GHz (8 x 2112)
GPU Status 2d_canvas: enabled
checker_imaging: disabled_off
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
multiple_raster_threads: enabled_on
native_gpu_memory_buffers: disabled_software
rasterization: enabled
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
Memory (System) 15.93GB (2.35GB free)
Process Argv C:\Program Files\Azure Data Studio\azuredatastudio.exe
Screen Reader no
VM 0%
Extensions (1)
Extension Author (truncated) Version
PowerShell ms- 1.11.0
@kevcunnane
Copy link
Contributor

@kburtram, I got an error on activating the extension due to API registerDebugConfigurationProvider being missing. I think this is a case where we need to try and no-op instead of remove the debug APIs, or else extensions like this will have to explicitly opt into supporting azure data studio by null-checking the .debug APIs in vscode namespace.

@SQLvariant
Copy link
Contributor Author

@kevcunnane ah, that sounds like a good idea to me. Most extension authors probably haven't even heard of azure data studio yet.

@kburtram kburtram added Enhancement Request for new features or functionality Area - Extensibility labels Feb 7, 2019
@kburtram
Copy link
Member

kburtram commented Feb 7, 2019

We don't currently support loading arbitrary VS Code extensions into ADS. Since we share a common platform a lot of extensions happen to work, though as @kevcunnane mentioned we disable the debugging interfaces which breaks most Language Service extensions.

There are a few extensions such as PowerShell, Docker, etc. that align well with our feature set, so we should look into at least making sure those popular extensions work (or degrade gracefully).

@TylerLeonhardt
Copy link
Member

Hi there 👋

I work on the PowerShell extension for VSCode. I'd love to get the extension working in Azure Data Studio!

The reason this isn't working today is because of the following error:

The language client requires VS Code version ^1.29 but received version 1.3.9

We set that version in the package.json because vscode tells us to set this and they check it in the vscode-languageclient.

It seems that in Data Studio needs to honor this.

@kburtram
Copy link
Member

Powershell should be working with current builds. Please let me know if issues persist.

@adsbot adsbot bot locked and limited conversation to collaborators May 25, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Area - Extensibility Enhancement Request for new features or functionality
Projects
None yet
Development

No branches or pull requests

4 participants