No Picture
Computing

[Powershell] Generate new UUID

2022-04-22 C.H. Ling 0

UUID is one of the famous format to unique identify object. When need to write unit test or mock data, we need to pre-generate a set of UUID for testing. This PowerShell script enable us […]

No Picture
Computing

[PowerShell] 進行HTTP request

2018-12-06 C.H. Ling 0

有專案要執行排程工作, 其實可以用quntize 實現, 但管理上會出現分散而難以管理的問題, 在有automation software 前, 唯有利用 task scheduler 作過渡.

No Picture
Computing

[Powershell] 利用cmdlet 發出電郵

2017-02-22 C.H. Ling 0

有時為了確保schedule job 順利執行, 通常最後會加入通知功能. 若在command prompt, 須要靠其他console app, 而在Powershell 中, 則已經內建了電郵功能, 叫用方法如下:

No Picture
Computing

[PowerShell] 進行日誌記錄

2017-02-17 C.H. Ling 0

為了令troubleshooting 可以有更多資料, logging 是其中一種手段. 在寫code時, 可以利用log4J 或log4net 去實現. 但在寫Script 時, 則須要自己處理.