WSH †
WMI †
- MSDN Library - WMI
- WMI スクリプト入門 : 第 1 部
- Windows 2000: スクリプト天国
- システム管理は楽ですか? (前編) 〜 Windows Management Instrumentation 〜
- システム管理は楽ですか? (後編) 〜 Windows Management Instrumentation 〜
- WMIいぢり 第1回:WMIって?
- WMIいぢり 番外編:サンプル集 - WMIをいぢる - ものいぢり - いつまでも構想中
- 演習 1 : 簡単な WMI タスク
- 827227 - Visual Basic スクリプトを使用してリモート ホスト コンピュータにセキュリティ修正プログラムをインストールする方法
- お前ら、wsh使ってますか?
- リモートコンピュータへアクセス
サンプル †
- 隣のPCでプログラムを実行させる方法。
- http://www.users.gr.jp/ml/archive/viewer.aspx?name=wsh&no=120
Set args = Wscript.Arguments
If args.Count < 1 Then
Wscript.StdOut.WriteLine "xstart <command> [<computer>]"
Else
'--- コマンド指定
strCommand = args(0)
'--- コンピュータ指定
strComputerPath = ""
If args.Count = 2 Then
strComputer = args(1)
If InStr(strComputer, "\\") = 1 Then
strComputer = Mid(strComputer, 3)
End If
strComputerPath = "\\" & strComputer & "\root\cimv2:"
End If
'--- WMI に接続 Wim32_Process クラスを取り出す
Set clsProcess = GetObject("winmgmts:{impersonationLevel=impersonate}" _
& "!" & strComputerPath & "Win32_Process")
'--- プロセスの作成
lngResult = clsProcess.Create(strCommand)
Wscript.StdOut.WriteLine strCommand & " :" & lngResult
End If
コマンド †
Runas †
Visual C++ 関連情報 †
- マクロを展開する方法
- コンパイルオプションで「/P」を指定するとプリプロセスの処理結果が「*.i」というファイルに保存される。
cl test.cpp /P
|