qshinoの日記

Powershell関係と徒然なこと

2017-03-29から1日間の記事一覧

EtherIP/IPsec

EtherIP/IPsec Softether + IX2000シリーズ。 ike mode aggressive ipsec mode tunnel ike id 入力値 pre-shared-key 入力値 peer se側 恐らくany peer ix側 seのIP nat traversal on ike aes / sha DH group2/ 1024bit ipsec aes/sha パケット 元 eth ip0 p…

Windows Installer作成ツール

PC

Windows Installer作成ツール 主なツールは下記の通り。 WiX Toolset Inno Setup Nullsoft Scriptable Install System (NSIS) WiXのみ、WindowsInstallの仕組みを利用している。 WiXが難しそうなので、トライして撃退されたらInno Setupが良さそうな雰囲気。…

PowerShell Action delegate

PowerShell Action delegate Action/Funcはdelegate型 Action : 戻り値なし、引数なし。 Action: 戻り値なし、引数1 Func<T,TResult: 戻り値1,引数1 PowerShellでは [action] [action[int]] [func[int][int]] ? or func[int,int]] ? Funcの例 Func<T,TResult> using System; public class GenericFunc { public static void Main() { // Instantiate deleg…</t,tresult:>