I’m using CapacitorJS for easy development with Android. I needed a way to do an HTTPS request to a box that uses self-signed SSL certificate. To accomplish it, I created my own capacitor plugin. See this wiki page for details: https://github.com/Aymkdn/assistant-freebox-cloud/wiki/Capacitor-Plugin-for-HTTP-requests-with-self-signed-SSL-certificates
Author: Aymeric
Enable CORS with IIS
It’s as easy as editing the web.config file with the below: <?xml version=”1.0″ encoding=”UTF-8″?> <configuration> <system.webServer> <httpProtocol> <customHeaders> <add name=”Access-Control-Allow-Origin” value=”https://my.site.com” /> <add name=”Access-Control-Allow-Headers” value=”Authorization,Accept,Content-Type,X-Requested-With” /> <add name=”Access-Control-Allow-Credentials” value=”true” /> </customHeaders> </httpProtocol> </system.webServer> </configuration>
L’application Android “Huawei Health” (ou “Santé” en français) retourne l’erreur : “les notifications sont indisponibles”
“Erreur du système, les notifications sont indisponibles. Veuillez redémarrer votre téléphone. Si le problème persiste, contactez le fabricant de votre appareil.” J’ai eu cette erreur sur mon Samsung S20 FE. J’ai réussi à m’en sortir ou désinstallant tout puis en réinstallant… Mais je pense que la solution pouvait être autre : dans les Paramètres du […]
Problème d’accès avec C:\Program Files\WindowsApps
J’utilise d’habitude le raccourci wt.exe dans la barre de Windows Explorer, mais j’ai reçu une erreur aujourd’hui me disant que le fichier n’existe pas… Après quelques recherches, j’ai découvert que je n’ai aucun accès au répertoire C:\Program Files\WindowsApps là où se trouve Windows Terminal. J’ai réussi à le refaire marcher en lançant un terminal en […]
Microsoft Sharepoint Migration Tool that works behind a proxy
It looks like the newer version of the Microsoft Sharepoint Migration Tool doesn’t accept to work behind a corporate network. A colleague has an older version (april 2020) that works correctly. Here is the link to download this version: SharepointMigrationToolSetup_April2020
Access to Sharepoint Online with Windows Explorer
If you want to access your Sharepoint online (https://[tenant].sharepoint.com), you first need to make sure the site is in the Trusted Website in Internet Explorer. Open Internet Explorer, navigate to the website, then open the Internet Options: Add your website to the Trusted Website zone: Next open Windows Explorer and right-click on “Your PC “, […]
Freebox Player API
Free ne documente plus ses API depuis quelques années…. J’ai donc du faire pas mal de tests et de recherches pour trouver l’API liée au Freebox Player ! Je partage mes trouvailles sur https://github.com/Aymkdn/assistant-freebox-cloud/wiki/Player-API
Windows Movie Maker pour Windows 7, Windows 8.1 et Windows 10
Voici un lien avec une version qui s’installe encore sur ces versions de Windows : https://blog.kodono.info/wordpress/wp-content/uploads/wlsetup-all.exe
Mise à jour d’un serveur Kimsufi (OVH) depuis Debian 9 (Stretch) vers Debian 10 (Buster)
Il faut régulièrement penser à mettre à jour son serveur Kimsufi. Je vais essayer d’expliquer brièvement les étapes à suivre pour cela. On va effectuer une mise à jour des paquets avec apt-get update && apt-get upgrade Il peut être intéressant de vérifier la version de son kernel afin d’avoir la dernière recommandée. On va […]
Connectivity issue with Qualcomm QCA61x4A 802.11ac in 5GHz
I have a Dell computer with the wireless adaptater “Qualcomm QCA61x4A 802.11ac” which supports Wifi in 5GHz. However, I’ve recurrent deconnections when being connected to my 5GHz network, even if all my other devices don’t have any issues. It works well with the 2.4GHz network. I’m on Windows 10 and after trying many different things, […]