Fix smart quotes in code samples

This commit is contained in:
Michaël Hompus
2018-10-25 22:12:24 +02:00
parent b11be10946
commit fc717a791f
20 changed files with 55 additions and 55 deletions

View File

@ -21,7 +21,7 @@ Enter the **Get-AppvClientPackage** cmdlet to return a list of packages entitled
For example:
```PowerShell
Get-AppvClientPackage Name ContosoApplication -Version 2
Get-AppvClientPackage Name "ContosoApplication" -Version 2
```
## Add a package
@ -44,13 +44,13 @@ Use the **Publish-AppvClientPackage** cmdlet to publish a package that has been
Enter the cmdlet with the application name to publish it to the user.
```PowerShell
Publish-AppvClientPackage ContosoApplication
Publish-AppvClientPackage "ContosoApplication"
```
To publish the application globally, just add the *-Global* parameter.
```Powershell
Publish-AppvClientPackage ContosoApplication -Global
Publish-AppvClientPackage "ContosoApplication" -Global
```
## Publish a package to a specific user
@ -70,7 +70,7 @@ To use this parameter:
For example:
```PowerShell
Publish-AppvClientPackage ContosoApplication -UserSID S-1-2-34-56789012-3456789012-345678901-2345
Publish-AppvClientPackage "ContosoApplication" -UserSID S-1-2-34-56789012-3456789012-345678901-2345
```
## Add and publish a package
@ -90,7 +90,7 @@ Use the **Unpublish-AppvClientPackage** cmdlet to unpublish a package which has
For example:
```PowerShell
Unpublish-AppvClientPackage ContosoApplication
Unpublish-AppvClientPackage "ContosoApplication"
```
## Unpublish a package for a specific user
@ -110,7 +110,7 @@ To use this parameter:
For example:
```PowerShell
Unpublish-AppvClientPackage ContosoApplication -UserSID S-1-2-34-56789012-3456789012-345678901-2345
Unpublish-AppvClientPackage "ContosoApplication" -UserSID S-1-2-34-56789012-3456789012-345678901-2345
```
## Remove an existing package
@ -120,7 +120,7 @@ Use the **Remove-AppvClientPackage** cmdlet to remove a package from the compute
For example:
```PowerShell
Remove-AppvClientPackage ContosoApplication
Remove-AppvClientPackage "ContosoApplication"
```
>[!NOTE]

View File

@ -45,7 +45,7 @@ This topic explains the following procedures:
2. Enable the connection group by typing the following command:
Enable-AppvClientConnectionGroup name Financial Applications
Enable-AppvClientConnectionGroup name "Financial Applications"
When any virtual applications that are in the member packages are run on the target computer, they will run inside the connection groups virtual environment and will be available to all the virtual applications in the other packages in the connection group.
@ -81,11 +81,11 @@ This topic explains the following procedures:
<tbody>
<tr class="odd">
<td align="left"><p>Enable-AppVClientConnectionGroup</p></td>
<td align="left"><p>Enable-AppVClientConnectionGroup ConnectionGroupA -UserSID S-1-2-34-56789012-3456789012-345678901-2345</p></td>
<td align="left"><p>Enable-AppVClientConnectionGroup "ConnectionGroupA" -UserSID S-1-2-34-56789012-3456789012-345678901-2345</p></td>
</tr>
<tr class="even">
<td align="left"><p>Disable-AppVClientConnectionGroup</p></td>
<td align="left"><p>Disable-AppVClientConnectionGroup ConnectionGroupA -UserSID S-1-2-34-56789012-3456789012-345678901-2345</p></td>
<td align="left"><p>Disable-AppVClientConnectionGroup "ConnectionGroupA" -UserSID S-1-2-34-56789012-3456789012-345678901-2345</p></td>
</tr>
</tbody>
</table>

View File

@ -25,7 +25,7 @@ Use the following procedure to configure the App-V client configuration.
`Set-AppVClientConfiguration $config`
`Set-AppVClientConfiguration Name1 MyConfig Name2 xyz`
`Set-AppVClientConfiguration Name1 MyConfig Name2 "xyz"`
## Have a suggestion for App-V?