- Oct 30, 2012
- 66
- 0
- 0
I've found this to be a perfectly good tablet. It isn't fancy by any means, but I'm very pleased with the utility of such an inexpensive device. The one hassle I've had is that the Wi-Fi can be a bit unreliable. Pretty often it won't be able to find any networks (at work or at home), requiring a restart.
Recently I found that all it really needs is for the Wi-Fi adapter to be restarted. Doing that manually in the device manager is a hassle, however, so I've created a batch file that does it.
I can't seem to use .bat files as attachments (sigh), but this is what the file should contain:
@echo off
netsh interface set interface Wi-Fi DISABLED
netsh interface set interface Wi-Fi ENABLED
For greater convenience I wanted to be able to run the file as a tile from the Start screen, which turns out to be less obvious than I thought - you can't pin batch files with a long-press. This workaround (Pin .bat files to Windows 8 Start Screen) works, however.
The only remaining hassle is that the batch file needs to be run as an Admin, and the only way I know to do that is to long-press the tile, open the submenu, choose "run as administrator", and OK the credentials elevation. It is a stupid pain, and I'd love to know how to have the file automatically launched with admin privileges. Does anyone know how to do that?
Recently I found that all it really needs is for the Wi-Fi adapter to be restarted. Doing that manually in the device manager is a hassle, however, so I've created a batch file that does it.
I can't seem to use .bat files as attachments (sigh), but this is what the file should contain:
@echo off
netsh interface set interface Wi-Fi DISABLED
netsh interface set interface Wi-Fi ENABLED
For greater convenience I wanted to be able to run the file as a tile from the Start screen, which turns out to be less obvious than I thought - you can't pin batch files with a long-press. This workaround (Pin .bat files to Windows 8 Start Screen) works, however.
The only remaining hassle is that the batch file needs to be run as an Admin, and the only way I know to do that is to long-press the tile, open the submenu, choose "run as administrator", and OK the credentials elevation. It is a stupid pain, and I'd love to know how to have the file automatically launched with admin privileges. Does anyone know how to do that?