Skip to content

Commit e00013b

Browse files
authored
Correction to -OutLoggerVariable example scripts
Correction to -OutLoggerVariable example scripts From "\>" to ">" As published, the PowerShell scripting error was "Unexpected token '\>' in expression or statement." Tested using Skype for Business Server 2015 Management Shell
1 parent e861c78 commit e00013b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

skype/skype-ps/skype/Test-CsExUMVoiceMail.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@ Note: Do not use prepend a $ character when specifying the variable name.
190190

191191
To save the information stored in the logger variable to an HTML file, use a command similar to this:
192192

193-
`$TestOutput.ToHTML() \> C:\Logs\TestOutput.html`
193+
`$TestOutput.ToHTML() > C:\Logs\TestOutput.html`
194194

195195
To save the information stored in the logger variable to an XML file, use a command similar to this:
196196

197-
`$TestOutput.ToXML() \> C:\Logs\TestOutput.xml`
197+
`$TestOutput.ToXML() > C:\Logs\TestOutput.xml`
198198

199199
```yaml
200200
Type: String

0 commit comments

Comments
 (0)