通知領域のバルーン ヒントを無効 ふるいむかし
【XP】 Microsoft TechNet
↓こんなやつ
【方法】
【スクリプト】
↓こんなやつ
【方法】
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced EnableBalloonTips を DWORD で 0 再度ログオン
【スクリプト】
Set WshShell = CreateObject( "WScript.Shell" ) Set Shell = CreateObject( "Shell.Application" ) strRoot = "HKCU" strPath = "Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" strName = "EnableBalloonTips" strTarget = strRoot & "\" & strPath & "\" & strName WshShell.RegWrite strTarget, 0, "REG_DWORD" ' シャットダウンダイアログを表示 Shell.ShutdownWindows