Skip to content

Commit 4e061ea

Browse files
[ignore] missed vscode reference
1 parent 910bd62 commit 4e061ea

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/azure_data_studio/README_FOR_MARKETPLACE.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ or if you're using the preview version of the extension
6969
$HOME/.azuredatastudio/extensions/ms-vscode.powershell-preview-<version>/examples
7070
```
7171

72-
To open/view the extension's examples in Visual Studio Code, run the following from your PowerShell command prompt:
72+
To open/view the extension's examples in Azure Data Studio, run the following from your PowerShell command prompt:
7373

7474
```powershell
75-
code (Get-ChildItem $Home\.azuredatastudio\extensions\ms-vscode.PowerShell-*\examples)[-1]
75+
azuredatastudio (Get-ChildItem $Home\.azuredatastudio\extensions\ms-vscode.PowerShell-*\examples)[-1]
7676
```
7777

7878
### SQL PowerShell Examples
@@ -82,6 +82,8 @@ In order to use these examples (below), you need to install the SqlServer module
8282
Install-Module -Name SqlServer -AllowPrerelease
8383
```
8484

85+
> NOTE: With version `21.1.18095-preview` and up, the `SqlServer` module supports [PowerShell Core](https://github.com/PowerShell/PowerShell) 6.2 and up in addion to Windows PowerShell.
86+
8587
In this example, we use the `Get-SqlInstance` cmdlet to Get the Server SMO objects for ServerA & ServerB. The default output for this command will include the Instance name, version, Service Pack, & CU Update Level of the instances.
8688

8789
```powershell
@@ -97,7 +99,7 @@ ServerA 13.0.5233 SP2 CU4
9799
ServerB 14.0.3045 RTM CU12
98100
```
99101

100-
In this example, we will do a `dir` (alias for `Get-ChildItem`) to get the list of all SQL Server instances listed in your Registered Servers file, and then use the `Get-SqlDatabase` cmdlet to get a list of Databases for each of those instances.
102+
In the following example, we will do a `dir` (alias for `Get-ChildItem`) to get the list of all SQL Server instances listed in your Registered Servers file, and then use the `Get-SqlDatabase` cmdlet to get a list of Databases for each of those instances.
101103

102104
```powershell
103105
dir 'SQLSERVER:\SQLRegistration\Database Engine Server Group' -Recurse |

0 commit comments

Comments
 (0)