====== PowerShell ======
* [[os:windows:powershell|Wiki: PowerShell]]
* [[os:windows:powershellcookbook|Wiki: PowerShell Cookbook]]
* [[https://docs.microsoft.com/en-us/powershell/scripting/setup/installing-windows-powershell|Installing Windows PowerShell]]
===== Dump Object =====
//Like PHP's var_dump().//
$Obj | Format-Custom -Property * -Depth 8
Bsp.
Get-Process | Select-Object -First 1 | Format-Custom -Property * -Depth 8
[[https://stackoverflow.com/a/2846156]]