Skip to content
This repository was archived by the owner on Sep 5, 2020. It is now read-only.

Commit 10f6231

Browse files
committed
Update README.md
1 parent a5ea03a commit 10f6231

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ You can also use `Get-Help BROCADECOMMAND -Full` for each command to get the syn
4343
New-BrocadeSession [-ComputerName] <String[]> [[-Credentials] <PSCredential>] [<CommonParameters>]
4444
```
4545

46-
Example 1:
46+
**Example 1:**
4747

4848
```PowerShell
4949
New-BrocadeSession -ComputerName TEST_DEVICE1
@@ -63,7 +63,7 @@ Get-BrocadeSession [[-SessionID] <Int32[]>] [<CommonParameters>]
6363
Get-BrocadeSession [[-ComputerName] <String[]>] [[-ExactMatch]] [<CommonParameters>]
6464
```
6565

66-
Example 1:
66+
**Example 1:**
6767

6868
```powershell
6969
Get-BrocadeSession -SessionID 0,2
@@ -76,7 +76,7 @@ SessionID ComputerName Session Stream
7676
2 TEST_DEVICE3 SSH.SshSession Renci.SshNet.ShellStream
7777
```
7878

79-
Example 2:
79+
**Example 2:**
8080

8181
```powershell
8282
Get-BrocadeSession -ComputerName *TEST*
@@ -96,7 +96,7 @@ Invoke-BrocadeCommand [-Session] <PSObject[]> [-Command] <String> [[-WaitTime] <
9696
Invoke-BrocadeCommand [-SessionID] <Int32[]> [-Command] <String> [[-WaitTime] <Int32>] [<CommonParameters>]
9797
```
9898

99-
Example 1:
99+
**Example 1:**
100100

101101
```powershell
102102
Invoke-BrocadeCommand -SessionID 0 -Command "sh clock" -WaitTime 500
@@ -108,7 +108,7 @@ ComputerName Result
108108
TEST_DEVICE1 {sh clock, 16:55:07 GMT+01 Wed Mar 30 2016, SSH@TEST_DEVICE1#}
109109
```
110110

111-
Example 2:
111+
**Example 2:**
112112

113113
```powershell
114114
(Get-BrocadeSession | Invoke-BrocadeCommand -Command "sh clock" -WaitTime 500).Result
@@ -128,13 +128,13 @@ Remove-BrocadeSession [-Session] <PSObject[]> [<CommonParameters>]
128128
Remove-BrocadeSession [-SessionID] <Int32[]> [<CommonParameters>]
129129
```
130130

131-
Example 1:
131+
**Example 1:**
132132

133133
```powershell
134134
Remove-BrocadeSession -SessionID 0
135135
```
136136

137-
Example 2:
137+
**Example 2:**
138138

139139
```powershell
140140
Get-BrocadeSession | Remove-BrocadeSession
@@ -156,22 +156,26 @@ Get-BrocadeSession | Remove-BrocadeSession
156156
* [Manage-Credentials](Scripts/Manage-Credentials.ps1) - Script to Encrypt/Decrypt Credentials (Username and Password) and save them as variable or xml-file using SecureStrings ([view Doku](https://github.com/BornToBeRoot/PowerShell_Manage-Credentials/blob/master/README.md))
157157

158158
## ToDo
159-
[] Remove-BrocadeVLAN
160-
[] Set/Edit-BrocadeVLAN
159+
160+
* Remove-BrocadeVLAN
161+
* Set/Edit-BrocadeVLAN
161162

162163
## ChangeLog
163164

164165
### 22.04.2016
166+
165167
* Added Parameter -ShowExecutedCommand` `to function `Invoke-BrocadeCommand`
166168
* Added Function `Add-BrocadeVLAN`
167169
* Doku Improved
168170

169171
### 30.03.2016
172+
170173
* Code improved
171174
* Output of `Invoke-BrocadeCommand` changed --> Now returns a custom PSObject with ComputerName and Result
172175
* Manage-Credentials.ps1 and ScanNetworkAsync.ps1 updated
173176

174177
### 12.02.2016
178+
175179
* Added Get-BrocadeVLAN Cmdlets in "Brocade"-Module
176180
* Script and Module Improved
177181
* Added Brocade-CopyConfigToTFTP.ps1 to scripts (Copy Running-/Starup-Config to a TFTP-Server) - Removed old RunningConfigToTFTP.ps1 from scripts

0 commit comments

Comments
 (0)