Skip to content

Commit 9cd3c74

Browse files
authored
Fixed Copyable code was empty
The example powershell cmdlets wasn't on the copyable code tables
1 parent 5468b5e commit 9cd3c74

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

skype/skype-ps/skype/New-CsClsScenario.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,31 @@ Skype for Business Server Control Panel: The functions carried out by the New-Cs
4848

4949
### -------------------------- Example 1 -------------------------- (Lync Server 2013)
5050
```
51+
$provider = New-CsClsProvider -Name "RedmondHybridVoice" -Type "WPP" -Level "Info" -Flags "All"
5152
53+
New-CsClsScenario -Identity "global/RedmondHybridVoice"-Provider $provider
5254
```
5355

5456
The commands shown in Example 1 create a new centralized logging scenario with the Identity global/RedmondHybridVoice.
5557
In order to carry out this task, the first command in the example uses the New-CsClsProvider cmdlet to create a provider to be assigned to the scenario; this new provider is stored in the variable $provider.
5658

5759
After the description and the provider have been created, the final command in the example calls New-CsClsScenario in order to create the scenario, using the data stored in $provider to assign a value to the Provider property.
5860

59-
$provider = New-CsClsProvider -Name "RedmondHybridVoice" -Type "WPP" -Level "Info" -Flags "All"
6061

61-
New-CsClsScenario -Identity "global/RedmondHybridVoice"-Provider $provider
6262

6363
### -------------------------- Example 1 -------------------------- (Skype for Business Server 2015)
6464
```
65+
$provider = New-CsClsProvider -Name "RedmondHybridVoice" -Type "WPP" -Level "Info" -Flags "All"
6566
67+
New-CsClsScenario -Identity "global/RedmondHybridVoice"-Provider $provider
6668
```
6769

6870
The commands shown in Example 1 create a new centralized logging scenario with the Identity global/RedmondHybridVoice.
6971
In order to carry out this task, the first command in the example uses the New-CsClsProvider cmdlet to create a provider to be assigned to the scenario; this new provider is stored in the variable $provider.
7072

7173
After the description and the provider have been created, the final command in the example calls the New-CsClsScenario cmdlet in order to create the scenario, using the data stored in $provider to assign a value to the Provider property.
7274

73-
$provider = New-CsClsProvider -Name "RedmondHybridVoice" -Type "WPP" -Level "Info" -Flags "All"
7475

75-
New-CsClsScenario -Identity "global/RedmondHybridVoice"-Provider $provider
7676

7777
## PARAMETERS
7878

0 commit comments

Comments
 (0)