
Showing posts with label Command. Show all posts
Showing posts with label Command. Show all posts
Thursday, December 19, 2013
Compare the Contents of Two Folders with the Diff Command

Monday, October 7, 2013
Generate a Monthly Calendar from the Command Line

Saturday, September 21, 2013
Delete Wi-Fi Networks in Windows 8 from the Command Line

To set network priority, Albert Xing contributes this command:netsh wlan set profileorder name="network_name" interface="interface_name" priority=1The ability to delete network profiles whenever and wherever you are is especially important if there are any public networks you've connected to that are set to automatically reconnect when in range. As we've seen before, hackers love to masquerade as public Wi-Fi networks. If you want to automate the deletion of open Wi-Fi networks in Windows 8, Scott Hanselman has created WiFi.exe, a command line utility to do just that.Windows 8 - Manage Wireless Networks? | Microsoft TechNetOpen a run box window (or press win+R) then type cmd to open Windows 8 CLI.
To see stored wireless profiles, type:
netsh wlan show profilesThis will show a list of saved profiles of your connected WLAN devices. Then you'll need to write/save/memorize the profile name that you want to change.
To see the stored key (WPA/WEP/etc) of a specific profile:
netsh wlan show profiles name=[profile name] key=clearYou'll find the key content under security settings.
To delete a stored profile:
netsh wlan delete profile name=[profile name]This will delete the stored profile of every WLAN interface. If you want to delete the profile of a specific WLAN interface, you need to use the following:
pre>netsh wlan delete profile name=[profile name] interface=[interface name]
Saturday, September 7, 2013
Wipe Out a Mistyped Terminal Command with Control + U

Wednesday, September 4, 2013
Save the Output of Any Terminal Command with One Parameter

dir > mymovies.txtOpen up mymovies.txt, and you'll see a list of every file in that Movies folder.If you want to put the file somewhere other than your working directory, you can spell out the location in it's entirety. For example:dir > C:\Users\JimmyJoUserMan\Documents\heywhatsinhere.txtMany of you command line veterans are very familiar with this trick, but for those still learning their way around, it's a great shortcut to have on hand.How to copy command prompt outputs to the Windows Clipboard | Ghacks
Subscribe to:
Posts (Atom)