The ServiceNow Scripting Dudes
11/07/22 15:53
The training course that thinks it's a radio show Read More…
The ServiceNow CSA Exam
29/06/22 15:46
Well…. it became free for a bit so I had to give it a go…. Read More…
Powershell - Small pipe to file
05/10/21 07:28
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
# 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
10/04/21 09:26
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 ;)
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 !
30/07/20 15:46
After how much time with ServiceNow ? I discover something that I have not seen before ! Read More…