Internet explorer and Google chrome both shares same proxy settings. So if we change setting in internet explorer, then it also effects in Google chrome. We can change proxy setting from CMD (command line prompt). Disable proxy setting : @ECHO OFF ECHO Configuring Proxy Settings! please wait... REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f Enable proxy setting : @ECHO OFF ECHO Configuring Proxy Settings! please wait... REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 1 /f REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /t REG_SZ /d address:portNumber /f address: New proxy address portNumber: Port Number Save the commands in a batch file and execute it. It will disable/enable the proxy setting for browser.
In Windows Applications, we use chm file for help contents or for documentations. But we sometimes we are not able to see any contents in chm viewer. While it works fine on another systems. How to solve that: 1. Open command prompt and run as administrator. 2. go to location where chm file is located. 3. input the file name (xxx.chm) and click on enter. It should work fine. Another way to do. 1. Right click on chm file. 2. Go to properties. 3. Select the Unblock option.
T hree friends A, B, and C are talking to each other about the art collection of Leonardo. A says: "Leonardo has at least four paintings of Hussain." B says: "No, he has less than four paintings of Hussain ." "According to me," says C, " Leonardo has at least one painting of Hussain." If you know that only one of the three friends is right, how many paintings does Leonardo possess ?
Comments
Post a Comment