Windows

Download file is blocked on IE11 and Chrome

Environment Windows 10 version 1903 build 18362.900 IE 11.900.18362.0 Chrome 83.0.4103.116 Issue IE11 shows error "Your current security settings do not allow this file to be donwloaded." when download a file. Chrome shows error "Failed - …

IE11とChromeでファイルをダウンロードできない

環境 Windows 10 version 1903 build 18362.900 IE 11.900.18362.0 Chrome 83.0.4103.116 症状 IE11でファイルをダウンロードすると「現在のセキュリティ設定では、このファイルをダウンロードできません。」というエラーが表示される。 Chromeでファイルを…

Check the string is exist or not in a file and use it in the Windows Batch file

Summary Do something in the Windows Batch file depend on that some string is exist or not in a file. Batch file We'll find string "sample" in the file sample.txt. @echo off find "sample" sample.txt echo ERRORLEVEL=%ERRORLEVEL% if %ERRORLEV…

バッチファイル: ファイル内の特定の文字列が存在するかどうかチェックする

概要 Windowsのバッチファイルで指定したファイル内に特定の文字列が存在するかどうかチェックし、処理を分ける。 バッチファイル サンプルファイルsample.txtから文字列"サンプル"を検索する。 @echo off find "サンプル" sample.txt echo ERRORLEVEL=%ERRO…

Get a string from other file and use it for the variable in your Windows Batch file

Summary Get a string from other file and use if for the variable in your Windows Batch file. In this example, we'll get application version number string from build.gradle file that used for Android application development. Sample build.gr…

バッチファイル内で別ファイルからバージョン番号を取得して変数として使用する

概要 バッチファイル内で使用する変数として、別ファイル内に書かれているバージョン番号を取得して使用する。 以下ではAndroidアプリ開発で使用するbuild.gradleファイル内からバージョン番号を取得する。 build.gradleファイル 以下のversionName "1.0.0"…

Windows: 右クリックで表示されるコンテキストメニューからファイルを任意のプログラムで開く

Windowsのエクスプローラ上でファイルを右クリックして表示されるコンテキストメニューから、そのファイルを任意のプログラムで開けるようにする。 *以下はファイルをバイナリエディタ"Stirling"で開けるように設定した例。 ※"Stirling"は以下からダウンロー…

Microsoft Edgeでカスタムプロトコルによるアプリ起動が動作しない

Windows 10のMicrosoft Edgeでカスタムプロトコルによるアプリ起動が動作しない症状。 IEやChrome, Firefoxなど、他のブラウザでは問題なく起動できる。 Edgeのデバッガを見ると "<カスタムプロトコルのURL> は開けませんでした" というメッセージのみが表示…