qshinoの日記

Powershell関係と徒然なこと

2017-02-12から1日間の記事一覧

段階について

環境整備を複数の段階に分割 1. 現状調査、ヒアリング 2. 環境/システム設計、レビュー 3. ツール設計、実装 4. 環境試験(ツール、システム) 5. 展開: 文書、説明会、Demo --- ここまで5w 6. 保守/改善ループ

試験環境

テスト管理環境の基本 1. ケース管理 2. 実行管理 3. 進捗分析 現状の期待値は 1. Project/結果を管理/分析 2. 試験結果 設定Rev,装置Rev, 試験Rev, 結果Set 一覧表 project: xx 設定 | 試験1| 試験2|... - 1/rev.| 結果 |結果|... - 2/rev. | ... proj: - …

sshd for windows

windows版のopensshが出ているのでお試し。 1. 下記からダウンロード https://github.com/PowerShell/Win32-OpenSSH/releases 2. 解凍してsetupを実行 setup-sshみたいなのと setup-sshlsaみたいなの 3. key作成 ssh-keygen -A 4. firewallのポート開放 New-…

powershell xls 2

Check out my PowerShell Excel Module on Github. You can also grab it from the PowerShell Gallery. $stores = Import-Excel C:\Temp\store.xlsx $stores[2].Name$stores[2].StoreNumber$stores[2].EmailAddress '''All stores''----------'$stores

powershell xls 1

ExcelファイルをCOMオブジェクトで読む。 $xls = "a.xls" #new $eo = New-Object -ComObject Excel.Application $book = @() # open$eo.Workbooks.Open($xls) | %{ # sheets $sheet = @() $_.Worksheets | %{ # rows $row = @() $_.UsedRange.Rows | %{ # co…