Catatan

Tunjukkan catatan dari Jun, 2021

Create installer for .Net Windows Service using Visual Studio

How to create an installer for a .net Windows Service using Visual Studio Nor Kelsey, nor Brendan solutions does not works for me in Visual Studio 2015 Community. Here is my brief steps how to create service with installer: Run Visual Studio, Go to  File -> New -> Project Select .NET Framework 4, in 'Search Installed Templates' type  'Service' Select 'Windows Service'. Type Name and Location. Press  OK . Double click Service1.cs, right click in designer and select 'Add Installer' Double click ProjectInstaller.cs. For serviceProcessInstaller1 open Properties tab and change 'Account' property value to 'LocalService'. For serviceInstaller1 change 'ServiceName' and set 'StartType' to 'Automatic'. Double click serviceInstaller1. Visual Studio creates  serviceInstaller1_AfterInstall  event. Write code: private void serviceInstaller1_AfterInstall ( object sender, InstallEventArgs e ) { using (System.Service

Router CP2001/RS980+ dan Cara config

Imej
 Ni cuma untuk notes rujukan Router yang saya beli je. Bukan untuk promote. Just note for myself. πŸ‡²πŸ‡ΎUpgraded Version RS980+ Modified Unlimited Hotspot 4G LTE Modem Router MOD Wifi Huawei B310 B315 CP101+ RS860 Shopee link :  https://shopee.com.my/%F0%9F%87%B2%F0%9F%87%BEUpgraded-Version-RS980-Modified-Unlimited-Hotspot-4G-LTE-Modem-Router-MOD-Wifi-Huawei-B310-B315-CP101-RS860-i.41383663.4943390768 Rujukan: Penerangan tentang jenis-jenis BAND dalam coverage telko -  https://support.yoodo.com.my/hc/en-us/community/posts/900001087583-Penerangan-tentang-jenis-jenis-BAND-dalam-coverage-telko Unboxing 4G Wifi Router LTE CPE RS860 - Review dan Cara Set APN dan Lock Band Setting -  https://www.youtube.com/watch?v=kMkoGYhQgYE Cara Lock 4G atau 3G Only Modem CP2001/RS980+ -  https://www.youtube.com/watch?v=yZ5vUZ3ig5s Speedtest by Ookla - https://www.speedtest.net/

Internet of Things and SCADA

Imej
References: Internet of Things and SCADA https://iiot-world.com/industrial-iot/connected-industry/internet-of-things-and-scada-is-one-going-to-replace-the-other/ Industrial IoT vs SCADA: Which is More Powerful? https://www.biz4intellia.com/blog/industrial-iot-vs-scada-which-is-more-powerful/

Microsoft Symbol server load when build exe

Imej
Runs into heavy references load when building the .exe debug file. So my solution is.. Firstly I clear all the breakpoint using Ctrl + Shift + F9. Then set the Automatic symbol loading preferences to Load only specified modules. After done all this step then I rebuild my apps and Run as usual. https://stackoverflow.com/q/3377720/10763264  https://stackoverflow.com/a/17651762