Quantcast
Channel: VMware Communities : Blog List - All Communities
Viewing all articles
Browse latest Browse all 3135

Windows Tips

$
0
0

送るメニューを開く

プログラムとファイルの検索に「shell:sendto」を入力

http://www.atmarkit.co.jp/ait/articles/1109/30/news131.html

 

[ファイル名を指定して実行] から、管理者権限で起動する

 → [Shift]+[Ctrl]+[Enter]

手っ取り早く管理者権限のメモ帳などを起動する - Qiita

 

リソース負荷試験ツール

[Windows] Microsoft CPU負荷ツール (CPUSTRES.EXE) を使ってみた | インフラSEの運用・構築メモ

[Windows] Microsoft メモリ負荷ツール (Testlimit.exe) を使ってみた | インフラSEの運用・構築メモ

 

 

イベントログを作成するコマンド

Eventcreate

ex.)

eventcreate /so SpntLog /id 101 /l application /t error /d "監視試験"

 

※ EventCreate コマンドでは以下の制限あり

 ・実行するPC上で実際に使用されているソース名+IDではイベントログを作成できない。

 ・作成できるイベントIDが、1から1000までの数値に限られる

 

PowerShell のほうが自由度が高い

Windows PowerShell: Writing Windows events using PowerShell

 

ex.)

$evt=new-object System.Diagnostics.EventLog("Application")

$evt.Source="SpntLog"

$infoevent=[System.Diagnostics.EventLogEntryType]::Error

$evt.WriteEntry("監視試験のためのテストイベント",$infoevent,101)

 

 

ログオンユーザーにメッセージを送る

DOS「メッセージ送信」コマンド(Hishidama's Windows DOS command "msg" Memo)

 

例)全ユーザに同じメッセージを送る場合(msg01.png、msg02.png)

msg * "監視試験が終了しました。ご協力ありがとうございました。"

20160802.png

msg02.png

 

 

複数のサブディレクトリを検索対象にして、特定の名前のファイルをリストする

コマンドプロンプトの場合

対象のディレクトリに移動してから /S オプションでサブディレクトリを参照

cd C:\Windows\WinSxS

dir /S ntfs.sys* >C:\IaaSadmin\ntfs_chk.txt


PowerShellの場合

Get-ChildItem -Path C:\Windows\WinSxS\*\ntfs.sys* >C:\IaaSadmin\ntfs_chk.txt

 

 

 

タスクスケジューラ+パフォーマンスモニタ 簡易監視

タスクスケジューラとパフォーマンスモニタを使用して、リソース使用率が閾値を超えたらイベントログに出力したり、メールを送信できる。

 

Windows標準機能だけで、ディスクの残容量を監視する

https://blog.cles.jp/item/4060

パフォーマンス カウンターを監視するためのデータ コレクター セットを作成する

Capacity_surveillance.png

 

 

Windows OS 再インストール時の留意事項

パーティション再構成時に、MSRは消しちゃだめ

Windows7がGPT 形式のHDDにインストールできない時にできること – 某氏の猫空

 

 

ユーザー情報取得

Reporting on Local Accounts Using PowerShell -- Microsoft Certified Professional Magazine Online

http://tech.guitarrapc.com/entry/2013/02/08/210233

 

Get-CimInstance -ClassName Win32_UserAccount | select Name

 

Get-WmiObject -Class Win32_UserAccount -Filter  "LocalAccount='True'" | Select PSComputername, Name, FullName, Status, Disabled, AccountType, Lockout, PasswordExpires, PasswordRequired, PasswordChangeable, SID

 

Get-WmiObject -Class Win32_UserAccount -Filter  "LocalAccount='True'" | select Name

PowerShellでWMIからユーザ情報取得する(csv) - Qiita

PowerShell/ユーザーアカウント情報を確認する - Windowsと暮らす

 

 

ローカル セキュリティ ポリシー設定情報取得

任意のテキストファイルで出力、出力結果は整形が必要。

SecEdit /export /cfg C:\tmp\secpol.txt

 

Script to Export Local Security Policy - IT Programming - Spiceworks

Basic PowerShell GPO Inventory - Script Center - Spiceworks

 

ローカル グループ ポリシー

http://woshub.com/backupimport-local-group-policy-settings/http://woshub.com/backupimport-local-group-policy-settings/http://woshub.com/backupimport-local-group-policy-settings/

 

 

UAC設定変更

http://rtaki.sakura.ne.jp/infra/?p=1399http://rtaki.sakura.ne.jp/infra/?p=1399[Windows]管理共有 (C$, D$など) にビルトイン administrator 以外は接続できない | インフラSEの運用・構築メモ


Viewing all articles
Browse latest Browse all 3135

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>