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

powershell - 文字切れ

参考 cncn-us.hatenablog.com

powershell - database(insert)

sample code # 接続情報設定 $strServer = 'localhost'; # サーバーを指定 $strDatabase = 'MyTest'; # データベースを指定 $strUserId = 'xx'; # ユーザーIDを指定 $strPassword = 'xxxx'; # パスワードを指定 $cnnstr = "Data Source=$strServer;Initial C…

powershell - Where-Object

sample code Get-Service | Where-Object { $_.status -match "^Run"}

powershell - Select-String

sample code select-string -pattern "神様" -path "./*.*" select-string -pattern "神様" -path (Get-ChildItem -Recurse "*.*")

powershell - ファイル一覧

sample code Get-ChildItem -path "./" -Recurse | ForEach {$_.fullname }

powershell - 文字化け

参考 thinkami.hatenablog.com

powershell - 配列やリストのデータをファイルに保存

概要 配列やリストのデータをファイルに保存したい。 サンプルコード .Net Frameworkを利用 $list = New-Object System.Collections.Generic.List[string] Get-ChildItem -path ./ -Recurse | ForEach-Object { $list.Add($_.FullName) } $enc = New-Object S…

powershell - Get-Content(テキストファイルを文字列として取得するサンプル)

sample code # テキストに文字列が含まれているかチェック $content = Get-Content -Path "./test.txt" -Raw $content.Contains("GHI") # True $content.Contains("KLMNO") # False # test.txt ABC DEF GHI KLM NOP QRS TVX YZ PowerShell実践ガイドブック ~…

powershell - Join-Path(複数のパスを結合)

sample #複数のパス結合 $path = Join-Path "aaa" "bbb" | Join-Path -ChildPath "ccc" | Join-Path -ChildPath "test.txt" Write-Output $path PS > aaa\bbb\ccc\test.txt PowerShell実践ガイドブック ~クロスプラットフォーム対応の次世代シェルを徹底解説…

powershell - ForEach-Object

sample Get-Content -Encoding UTF8 ./test.txt | ForEach-Object { Write-Output $_ } Get-Content -Encoding UTF8 ./test.txt | foreach { Write-Output $_ } Get-Content -Encoding UTF8 ./test.txt | % { Write-Output $_ } PowerShell実践ガイドブック …

クロスサイトスクリプト(XSS)の参考

参考 into.cocolog-nifty.com into.cocolog-nifty.com blog.tokumaru.org www.atmarkit.co.jp 体系的に学ぶ 安全なWebアプリケーションの作り方 第2版[固定版] 脆弱性が生まれる原理と対策の実践作者:徳丸 浩出版社/メーカー: SBクリエイティブ発売日: 201…

VBScript - デバッグ

参考 qiita.com algorhythnn.jp

VBScript - vscdeプラグイン

参考

VBScript - 基本

参考 [改訂版] VBScriptポケットリファレンス (POCKET REFERENCE)作者:(株)アンク出版社/メーカー: 技術評論社発売日: 2006/05/30メディア: 単行本 garafu.blogspot.com

VBScript - 正規表現

参考 teru2-bo2.blogspot.com

VBScript - コンソールからスクリプトを実行

VBScript実行 > cscript //nologo main.vbs

Rust - 開発環境

参考 webbibouroku.com qiita.com

文字化けの参考

参考 www.ibm.com [改訂新版]プログラマのための文字コード技術入門 (WEB+DB PRESS plusシリーズ)作者:矢野 啓介出版社/メーカー: 技術評論社発売日: 2018/12/28メディア: 単行本(ソフトカバー)