Archive for April, 2012
Another netstat trick
Posted by edwgon in connection, established, geektools, imac, internet, mac, netstat on April 21, 2012
So, I run GeekTools on my iMac, and I wanted to be able to view all established internet connections on my Mac.
Here’s how I did it.
netstat -abf inet | grep “ESTABLISHED” -C 1 | grep -v “localhost” | sort -rk7
Explanation:
1. netstat -abf inet
Shows me a list of all internet connections
2. grep “ESTABLISHED” -C 1
It filters the netstat output to show only the ESTABLISHED connections, and it keeps the heading by using -C 1 option.
3. grep -v “localhost”
Basically I’m removing any “localhost” lines from the grep output in command 2.
4. sort -rk7
I’m going to (r)everse sort on column (k7). So it displays my output from largest number of bytes transmitted.
The screenshot shows the output on the lower right hand corner.
Outlook 2010 Keeps Prompting for Credentials
Posted by edwgon in 64-bit, credentials, http://schemas.google.com/blogger/2008/kind#post, outlook 2010, passwords, windows 7, windows 7 x64 on April 3, 2012
Issue: Outlook 2010 keeps prompting for credentials.
Environment: Windows 7 64-bit and Outlook 2010 (MS-Office 2010 SP1 with all updates)
Possible Fix 1
These steps came from the following link. These did not work for me personally, but it has worked for some people.
- Open Outlook
- Click on File
- Click on Info
- Click Account Settings
- Click on Account Settings option, again..
- Double click the Exchange Account (your name)
- Click More Settings
- Click Security Tab
- Check the Always Prompt for Logon Credentials
- Close Outlook
- Open Outlook
- Enter username and password
- Click on Remember my Credentials
- Close Outlook (repeat steps 11 – 14 at least 3 times, and don’t forget to click on Remember my Credentials)
- Go back into More Settings (from step 7)
- Security Tab
- Now REMOVE the check from the Always Prompt for Logon Credentials
- Close Outlook
Possible Fix 2
This fix came from this link. These steps did work for me and my users.
Recent Comments