good-arrow’s blog

https://good-arrow.net/

2022-01-01から1ヶ月間の記事一覧

Powershell で Excel から JSON をエクスポートする

Import-Excel モジュールをインストールしておく Install-Module -Name ImportExcel -RequiredVersion 7.1.1 Excel から JSON ファイルを作成する 日付列は -AsText で指定しないと数値で出力される $excel = "C:\sample\入力ファイル.xlsx" $json = "C:\sam…

RTX 作業用NATルーター サンプル

(保存用メモ) ●外側 LAN2=172.16.0.1/24 GW=172.16.0.254 DNS=8.8.8.8 ●内側 LAN1=192.168.1.254/24 DHCP=192.168.1.1-192.168.1.200 ●NAPT 172.16.0.1 → 192.168.1.253:8080 ip route default gateway 172.16.0.254 ip lan1 address 192.168.1.254/24 ip…