PowerShell
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
*PowerShell とは [#d33f4a7b]
**PowerShell のIDE [#odf18b98]
-PowerShell ISE
*PowerShellの実行ポリシー [#c09c5f2b]
-実行ポリシーを確認
Get-ExecutionPolicy
-実行ポリシーを設定
Set-ExecutionPolicy
**実行ポリシーの種類 [#la224f5c]
-Restricted (デフォルト)
-AllSigned
-RemoteSigned
-Unrestricted
-Bypass
-Undefined
--https://www.atmarkit.co.jp/ait/articles/0805/16/news139...
**スコープ [#ia8fa7f6]
-Set-ExecutionPolicy にScopeオプションとして指定する
-Scopeの種類
--Process
--CurrentUser
--LocalMachine
*PowerShell スクリプト [#gcbd5b64]
-スクリプトファイルのファイル名
--拡張子:.ps1
-スクリプトファイルの実行
--パス指定が必要
./<script-file.ps1>
--スクリプトの実行ポリシーの変更
Set-ExecutionPolicy RemoteSigned
*もろもろ [#f02b23ce]
-PowerShellのバージョン確認
$PSVersionTable
-PowerShell ISE
*便利な使い方 [#ad22e97b]
-Grep
Select-String -Pattern "<keyword-正規表現>" <file-name> ...
-Diff(UTF-8)
$a=Get-Content -Encoding UTF8 <file-name1>
$b=Get-Content -Encoding UTF8 <file-name2>
Compare-Object $a $b
*関連サイト [#l35596dc]
-PowerShellスクリプティングの第一歩(後編)~
https://www.atmarkit.co.jp/ait/articles/0709/20/news125.h...
-PowerShell 開発のための Visual Studio Code の使用~
https://docs.microsoft.com/ja-jp/powershell/scripting/com...
*関連用語 [#a3c736df]
-[[.NET Framework]]
-[[ファイルレス攻撃]]
終了行:
*PowerShell とは [#d33f4a7b]
**PowerShell のIDE [#odf18b98]
-PowerShell ISE
*PowerShellの実行ポリシー [#c09c5f2b]
-実行ポリシーを確認
Get-ExecutionPolicy
-実行ポリシーを設定
Set-ExecutionPolicy
**実行ポリシーの種類 [#la224f5c]
-Restricted (デフォルト)
-AllSigned
-RemoteSigned
-Unrestricted
-Bypass
-Undefined
--https://www.atmarkit.co.jp/ait/articles/0805/16/news139...
**スコープ [#ia8fa7f6]
-Set-ExecutionPolicy にScopeオプションとして指定する
-Scopeの種類
--Process
--CurrentUser
--LocalMachine
*PowerShell スクリプト [#gcbd5b64]
-スクリプトファイルのファイル名
--拡張子:.ps1
-スクリプトファイルの実行
--パス指定が必要
./<script-file.ps1>
--スクリプトの実行ポリシーの変更
Set-ExecutionPolicy RemoteSigned
*もろもろ [#f02b23ce]
-PowerShellのバージョン確認
$PSVersionTable
-PowerShell ISE
*便利な使い方 [#ad22e97b]
-Grep
Select-String -Pattern "<keyword-正規表現>" <file-name> ...
-Diff(UTF-8)
$a=Get-Content -Encoding UTF8 <file-name1>
$b=Get-Content -Encoding UTF8 <file-name2>
Compare-Object $a $b
*関連サイト [#l35596dc]
-PowerShellスクリプティングの第一歩(後編)~
https://www.atmarkit.co.jp/ait/articles/0709/20/news125.h...
-PowerShell 開発のための Visual Studio Code の使用~
https://docs.microsoft.com/ja-jp/powershell/scripting/com...
*関連用語 [#a3c736df]
-[[.NET Framework]]
-[[ファイルレス攻撃]]
ページ名: