備忘録

備忘録

2016-05-01から1ヶ月間の記事一覧

Windowsで右クリック時の不要な項目を消す

Ⅰ. はじめに Windows で右クリックした時の「以前のバージョンの復元」や「送る」といった項目は一切利用しません。 よって、邪魔なので消します。 Ⅱ. 「送る」を消す コマンドプロンプトで以下を実行する reg delete HKEY_CLASSES_ROOT\AllFilesystemObject…

Windows 10 右クリックメニューのWindows Defenderでスキャンしています...を消す

Windows 10 右クリックメニューのWindows Defenderでスキャンしています...を消す Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\EPP] [-HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\EPP] [-HKEY_…

Androidで他アプリのメソッドをhookする

Qiitaに投稿しました http://qiita.com/kagasu/items/7a3421ec471349885b10

Windows 10 OneDriveアンインストール方法

Ⅰ. はじめに タイトルの通り「Windows 10 で OneDriveをアンインストール方法」です。 Ⅱ. やり方 1. 設定を開く 2. チェックを外す 3. 以下のレジストリを削除する Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B5…

Windows 10 Windows Defenderを完全に無効にする

1.以下のレジストリを追加する Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender] "DisableAntiSpyware"=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager] "…

Windows 10でExplorerの設定をすべてのフォルダに共通して適応させる

1. 任意のフォルダで好みの設定を行う 2. ファイル→「フォルダーと検索のオプションの変更」→「表示」タブをクリック 3. 「フォルダーに適応」をクリック 以上です。# 以下は新規作成されるフォルダが自動的に「ドキュメント」や「ピクチャ」などに分類され…

Android Xposedモジュール開発方法

Qiitaに投稿しました http://qiita.com/kagasu/items/c6b930e7dbe64748090d

Xamarin.AndroidでAlertDialogを出す

RunOnUiThread( () => new AlertDialog.Builder(this) .SetTitle("alert") .SetMessage("helloworld") .Show() );

Xamarin.Androidでroot権限でコマンドを実行する

Java.Lang.Runtime.GetRuntime().Exec(new string[] { "su", "-c", "your command here" });