Month / March 2017
-
Add event log source in Windows
Run powershell as Administrator and run following command: New-EventLog -Source "TestApi" -LogName "Application"March 29, 2017 -
Useful telegram bot commands
https://api.telegram.org/bot{your bot token}/setWebhook?url={message handler url}https://api.telegram.org/bot{your bot token}/getWebhookInfoMarch 29, 2017 -
Add proxy settings to IIS Applications with web.config
To set proxy settings for your IIS Application, just add following block to your web.config file: <system.net> <defaultProxy> <proxy proxyaddress="http://192.168.0.1:8080" bypassonlocal="true" /> </defaultProxy> </system.net>Put your proxy server settings in field "proxyaddress" .March 28, 2017
Loading posts...