Click here to Skip to main content
15,894,343 members
Articles / Windows Store
Tip/Trick

How to make Microsoft Store app to access internet on proxy

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
26 Jul 2013CPOL1 min read 33.4K  
Configure Metro UI store apps to use proxy settings.

Introduction

Many Windows 8 users find it tricky to make a store app or any other Metro app on Windows 8 to access internet on a proxy server. Here is a solution.

The simple solution to this problem is to add the HTTP_PROXY environment variable to your system. Just adding a proxy setting to IE will not make any of MS store (or Metro UI) apps to use proxy settings.

Steps

  1. "windows key w"
  2. Type "system variable" in search box
  3. Click "edit system environment variables" and provide password if asked.
  4. In opened dialog box click "Environment variables".
  5. Then add two new variables by clicking on "New" button under system variables.
    1. Name "HTTP_PROXY" value "http://<your proxy IP or URL address>: <http proxy port( mostly 8080)>"
    2. Name "HTTPS_PROXY" value "https://< your proxy IP or URL address>:<http proxy port( mostly 8080)>"

Note: If your proxy uses username and password the value for both will be "http://username:password@<your proxy IP or URL address>:<http proxy port( mostly 8080)>".

This will sort the issue. And now all store apps will run on the proxy as well. If you use two different networks, one with proxy on work and one without it at home, out the values in a .txt file and save it to your desktop. Hope you enjoy your apps on proxy network connections.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Canada Canada
.................................

Comments and Discussions

 
-- There are no messages in this forum --