powershell
stackoverflow.com これをjpgとpngを逆にするだけ。 $files = Get-ChildItem "C:\Users\User\Pictures\Saved Pictures\wk" -Filter *.jpg -file -Recurse | foreach-object { $Source = $_.FullName $test = [System.IO.Path]::GetDirectoryName($source) $b…
$ary = @( ('a', '1') , ('b', '2') ) foreach($x in $ary){ Write-Host $x[0] "-" $x[1] } a - 1 - b - 2 なんと! $ary = @( ('a', '1'), ('b', '2') ) foreach($x in $ary){ Write-Host $x[0] "-" $x[1] } a - 1 b - 2 どういう仕様なんでしょうか?
割とあるある。 Single Quotes vs. Double Quotes in PowerShell: What's the Difference? | IT Pro
Invoke-RestMethod PowerShellでcurlもどき | ハックノート Invoke-WebRequest PowerShell で wget のようにファイルダウンロードをしたい - tech.guitarrapc.cóm .net - Powershell v3 Invoke-WebRequest HTTPS error - Stack Overflow Invoke-RestMethod、…