The ServiceNow Scripting Dudes

The training course that thinks it's a radio show Read More…

The ServiceNow CSA Exam

Well…. it became free for a bit so I had to give it a go…. Read More…

Powershell - Small pipe to file

Not being an expert on Powershell, just needed a quick sample of something that created an output file for testing a MID orchestration job:

# PowerShell pipes output to a file Clear-Host $Location = "" $Output = "C:\Scripts\dll.txt" $Dir = Get-Childitem C:\Windows\System32 -recurse -ea 4 $List = $Dir | Where-Object {$_.extension -eq ".dll"} $List | Format-Table Fullname | Out-File $Output Invoke-Item $Output # List | Format-Table name

Ho Hum - Mandatory selects

Came across a mandate the other day from our catalogue governance hierarchy about always having a 'None' option in Select Boxes to enforce selection rather than defaulting the field and removing it's "mandatoriness"

This was fine - as long as the list actually contained the data that you wanted to see.

Remove that little red star chaps until you have all the pigs in the playpen ;)

Well, I'll be darned !

After how much time with ServiceNow ? I discover something that I have not seen before ! Read More…