By R Teachout on 1/28/2010 4:05 PM
Fixing the IE 8 warning - ‘Do you want to view only the webpage content that was delivered securely?’ In IE 7 and ealier, this dialog would cause annoyance to users but generally didn’t cause any other significant problems. This was because it was worded in such a way that most users would click on the Yes button and allow non-secure content to be downloaded.
However, the wording in the IE 8 version of this dialog has changed:
To download the content a user would now have to click on the No button. As we know, most people using the web only scan text and avoid reading it if at all possible! They will usually go for the Yes button if there is not an OK button
Some sites are going to find that their secure pages in IE 8 have the following problems:
Any non-secure HTTP image beacons used for analytics... Read More » |
By R Teachout on 1/28/2010 2:51 PM
This blog post is just a test on using Windows live Writer on my workstation. Kewl Hopefully this means I will be posted more blogs now, it’s soooo frickin easy. (Even easy upload of pics) I love it!
I got the how-to on using LiveWriter on my site: This link at DNNprofessor. (Thanks)
|
By R Teachout on 1/16/2010 2:44 AM
I was having problems purging my data using exec sp_delete_backuphistory @oldest_date='1/1/2010' in my msdb database, so I instead ran the following code to purge the data successfully Read More » |
By R Teachout on 12/19/2009 2:48 PM
Just run on source, then run the output on destination. Voila! Read More » |
By R Teachout on 11/2/2009 3:39 PM
- Click Start, and then type cmd in the Start Search box.
- In the search results list, right-click Command Prompt, and then click Run as Administrator.
- When you are prompted by User Account Control, click Continue.
- At the command prompt, type powercfg.exe /hibernate off, and then press ENTER.
- Type exit, and then press ENTER.
Read More » |
By R Teachout on 10/29/2009 10:07 AM
Be able to Right Click on any directory, and make a "filelist.txt" file for that directory. So simple, I do not know why this hasn't always been around! Get a directory listing of all files in a directory and automatically output it to a txt file. Read More » |
By R Teachout on 10/27/2009 9:28 AM
Quick down and Dirty script to clone hard Drives in the free version of ESXi (assuming you have ssh access) Read More » |
By R Teachout on 10/14/2009 10:17 AM
Just a snippit I needed to run to resolve an issue - it is a dos script that re-takes ownership of a roaming profile, then re-sets up the user security, so it still runs BE CAREFUL Read More » |
By R Teachout on 10/13/2009 12:21 PM
A bunch of notes I found online about terminal services roaming profiles (targeted at a 2008 TS, at least that is what the article is referencing) Read More » |
By R Teachout on 7/6/2009 4:09 PM
Is This Possible? NO, but you CAN ACCOMPLISH THE GOAL YOU WANT ANYWAY...Sorta, but it works !!!! Getting queries to use multiple clustered indexes. Read More » |
By R Teachout on 9/17/2008 11:58 PM
Determine the MTU Size Limits of the full path of an internet route Read More » |
By R Teachout on 9/17/2008 10:33 PM
Can't figure out how to Activate Windows 2008 Server - If you installed from a Volume License CD, it never prompted you for the license key, so it will not activate. Here is how to change the Product Key & then Activate the server.. easy!
(I've also included a number of other common activation stages you can "jump" to - and a shortcut on how to activate a windows 2008 core installation) Read More » |
By R Teachout on 9/15/2008 10:43 PM
how to use gdb to debug something in asterisk (I used this to help the chan_sccp_b developers to find a bug in the module unloading/loading process Read More » |
By R Teachout on 9/14/2008 2:04 PM
Force Windows to recheck and fix any "Windows File Protection" files - just a reminder of sfc commands Read More » |
By R Teachout on 9/14/2008 2:03 PM
Find Windows netstat port usage by Process id/name Read More » |
By R Teachout on 9/12/2008 9:48 AM
Just a "hack" way to fix this issue, without restarting the entire machine. Read More » |
By R Teachout on 9/9/2008 12:09 PM
Here is the quick how-to on easily installing NLB (which is no longer installed by default in 2008) Read More » |
By R Teachout on 8/22/2008 5:29 PM
I needed to disable AJAX on the profile pages in DNN due to a 4.8 bug, but I was using ajax in lots of other places, and didn't want to turn it off everywhere, so heres the fix. Read More » |
By R Teachout on 8/11/2008 3:34 PM
A must have list for sysadmins that are (or will) be managing IIS7.. a blog entry from the IIS7 Team Read More » |
By R Teachout on 8/7/2008 2:15 PM
I regularly have to look this up, so it was time to blog it! Read More » |
By R Teachout on 7/8/2008 3:02 PM
Web Deployment Team released the Beta 1 version of the deployment tool! If you're not familiar with the tool already, it is here to help you keep sites or servers in sync with IIS6 or IIS7, as well as migrate from IIS6 to IIS7 Read More » |
By R Teachout on 7/3/2008 8:49 AM
Hate the vbs scripts that output results, and when you run them from wscript, you have to click 'OK' a few hundred times? Ensure it is running from cscript with this little bit of code. Read More » |
By R Teachout on 7/3/2008 1:50 AM
Just a quick way to find the number of rows in all of your tables. Read More » |
By R Teachout on 7/3/2008 1:43 AM
Recommended steps to migrate a database from SQL 2000 to SQL 2005 Read More » |
By R Teachout on 7/3/2008 1:30 AM
SELECT DAY(DATEADD(d, -DAY(DATEADD(m,1,GETDATE())),DATEADD(m,1,GETDATE()))) Read More » |