IT練習ノート

IT関連で調べたこと(実際は嵌ったこと)を書いています。

powershell

powershellでjpgをpngに変換する

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…

PowerShellの配列のカンマに嵌る

$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 どういう仕様なんでしょうか?

Powershellの”と'

割とあるある。 Single Quotes vs. Double Quotes in PowerShell: What's the Difference? | IT Pro

Windowsでcurlとかwgetとか

Invoke-RestMethod PowerShellでcurlもどき | ハックノート Invoke-WebRequest PowerShell で wget のようにファイルダウンロードをしたい - tech.guitarrapc.cóm .net - Powershell v3 Invoke-WebRequest HTTPS error - Stack Overflow Invoke-RestMethod、…