トップ 差分 一覧 ソース 検索 ヘルプ PDF RSS ログイン

PowerShell

  • bat wsh の次
  • 拡張子 ps1

PowerShell の UI

  • CUI powershell.exe
  • GUI powershell_ise.exe

実行ポリシーの変更

PS C:\Windows\system32> get-executionpolicy
Restricted
PS C:\Windows\system32> set-executionpolicy remotesigned
PS C:\Windows\system32> get-executionpolicy
RemoteSigned
  • ExecutionPolicy を Restricted から RemoteSigned に変更した。

参考サイト

Windows PowerShell コマンドレットのタスク別ガイド / Microsoft スクリプトセンター

PowerShell 関連 / アプ研

スクリプトファイルの場所 / PowerShell log

結論を先に述べてしまうと、自ファイルの場所の取得には次のような記述が便利です。これで変数 myd に実行中のスクリプトファイルの場所が取得できます。

$myd = & { Split-Path $myInvocation.ScriptName }

Windows PowerShellの勉強その4 / 徒然なるままに

日付や時刻を取得して、それをファイル名にするための方法は?。

それは-formatオプションで指定できる。

PS C:\> get-date -format yyyyMMdd
20090920