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でファイルを…

keyboard not working correctly with Synergy client on macOS

Environment Synergy 1.11-stable-55ec3105 Synergy server: Windows 10 version 1903 build 18362.900 Synergy client: macOS 10.14.6 (18G1012) Problem Following problems occurred on macOS with Synergy client. Cursor key and Function key is OK. B…

macOSでSynergyクライアントを動作させた際にキーボードの入力ができない

環境 Synergy 1.11-stable-55ec3105 Synergyサーバ: Windows 10 version 1903 build 18362.900 Synergyクライアント: macOS 10.14.6 (18G1012) 症状 Synergyクライアントを動作させているmacOSで以下の症状が発生する。 マウスは正常に動作する。 カーソルキ…

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…

Xamarin: XMLの書き出し

概要 XamarinでSystem.Xml.XmlDocumentを使用してXMLの書き出しを行う。 docs.microsoft.com サンプルコード void TestWriteXmlDocument() { // XMLの生成 XmlDocument doc = new XmlDocument(); XmlElement bookElement1 = doc.CreateElement("book"); XmlE…