Geeks With Blogs

@mikedopp
  • mikedopp space heater at full blast and still just enough to keep the keyboard defrosted. Ah spring to summer transition. about 5 days ago
  • mikedopp favorite google search of the day [filetype:xls confidential] find out salaries of your favorite people. about 11 days ago
  • mikedopp enjoying the multi-window update fer my S3 :) about 11 days ago
  • mikedopp @centurylink have you guys started throttling the network? I pay for 3meg I get .80 meg continuous. whats up? 204 ms ping. about 18 days ago

News

mikedopp Geekswithblogs (edition) Microsoft There are 34 entries for the tag Microsoft
Commerce Server 2007: Direct Mailer Is Not Working Please Help!
Cannot tell you how much fun this can be if it is not working correctly. First make sure SMTP is set up correctly in your IIS install (IIS6-IIS7.5(which uses IIS6 but thats for another story)) Direct Mailer Not working or not sending email or just needs to be configured correctly? First lets make sure the server and users/groups are created right. To grant the Marketing Web Service access to the Direct Mailer Service 1. Click Start, point to Programs, point to Administrative Tools, and then click ......

Posted On Sunday, February 28, 2010 6:48 PM

Backing up data and solutions that are available
So a couple of weeks ago I wrote about how to back up your data on a windows(XP(home and Pro) Vista (all versions)) machine. Some great little apps to backup data to external drives even to a network allocated storage device. Did you however think great I have a way to backup the data and its working however my hard drives are filling up quickly. What do I do now? Well you have options: Backup Less often (this can make things a bit interesting if you are constantly changing files and you may lose ......

Posted On Wednesday, April 8, 2009 6:51 AM

Web Site Testing and Configuration tools
I have been coding using Microsoft technologies for a long while. Recently I was given the chance to do a little bit of web mastering. Due to my system admin background I was most definitely game for this. Learning IIS 6.0 was not a huge leap as I had done a lot of development using IIS5.1(Windows XP Professional); however I had not as yet used Host headers in IIS (IIS 5.1 only allows for one site. I will post about that later.). This was a learning experience (Don’t even get me started on the issue ......

Posted On Wednesday, September 10, 2008 4:23 AM

Display Machine Details on Windows Server Login
If your like me you develop in multiple servers. Using Terminal Services is a easy way to move through these servers remotely and with ease. Often I have 6 or more Remote Sessions open at one time. This as you can well imagine can get very confusing. I got to the point I felt I needed better way to brand my Desktop sessions. I tried wallpaper which by the way works well also. However this trick works as a supplement to the wallpaper trick.This registry edit will add text to the login string on the ......

Posted On Thursday, May 1, 2008 4:35 AM

Resetting your web application or web site without recycling app pool or IIS.
If you don't know by now you can reset your web applications and or web sites with a simple change to the web.config. For example you can FTP(if remote or hosted) to your server and edit the web.config by adding a space or removing a space. Basically you want the application your using editing with think something has changed since you touched the document. Save the form after this has happened and IIS will recycle the application / web site. This however can be tedious and just well feel like a ......

Posted On Sunday, March 30, 2008 5:19 AM

ASP.NET Basics: Foundation of ASP.NET
This has been pooled together from a number of resources: What is ASP.NET? Microsoft ASP.NET is a server side technology that enables programmers to build dynamic Web sites, web applications, and XML Web services. It is a part of the .NET based environment and is built on the Common Language Runtime (CLR) . So programmers can write ASP.NET code using any .NET compatible language. What are the differences between ASP.NET 1.1 and ASP.NET 2.0? A comparison chart containing the differences between ASP.NET ......

Posted On Thursday, March 20, 2008 8:07 AM

Windows Server 2003 - IIS6.0 Do not delete the Default Web Site!
I being a very intelligent web developer (This is true). Decided it might be fun to delete the Default Web Site in IIS6.0 not thinking much of it. Of course it wouldn't have mattered at all, at least until I decided to install commerce server 2007 enterprise on the production server that I had deleted the Default Web Site. Why was this a problem you ask? Wow good question. Here's the long and short of it. When installing Microsoft Commerce Server 2007 sp1 you can get about oh I'd say 5 minutes into ......

Posted On Friday, March 14, 2008 8:05 AM

Vista Memory Issues: How to clear the memory without a 3rd party application
I believe it was Joe Levi who was running into vista vs. Visual Studio 2005 memory issues while compiling our latest build of www.lifetime.com . We both run Vista as our development environment (We watched all the sessions at mix07 and vista looked like it worked fine with Visual Studio 2005 + 2 hours of patches). We did some MSDN surfing and found a way to clear the memory within Windows Vista ( basically it kills all idle running applications). Here is how: Create a shortcut: Add Location of Shortcut: ......

Posted On Thursday, March 13, 2008 4:27 AM

MIX08-Using the Microsoft Sync Framework and FeedSync
Download Video FeedSync (Project) Astoria Offline (Project) Take Data offline? Alter Remote Offline Data and use FeedSync to update when connected. Reasons: App availability Network Utilization Lower costs Leverage client UI Leverage Service Extend for collaboration Flexible: Write a provider for Service Desktop Devices Protocols extensions Metadata Handles arbitrary topology peer to peer mesh and point to point Layers: End to End Solutions Ado.NET Sync Astoria Offline Protocol and Store Providers ......

Posted On Friday, March 7, 2008 5:55 PM

MIX08- Accessing Windows Live Services via AtomPub
Atom Syndication Format IETF RFC 4287 XML format Organized in feeds, entries and links Extensible data and metadata Atom Publising Protocol IETF RFC 5023 Protocol for publishing and editing resources Represents over HTTP Simple RESTful interaction model Demo Photos: https://cumulus.services.li... -Authorization via LiveID http://dev.live.com/liveid -Browse and create folders and photos Folders/Photos as Atom feeds and entries Photos are Atom "media link entries" <feed> ......

Posted On Friday, March 7, 2008 5:08 PM

MIX08- Developing ASP.NET Applications Using the Model View Controller Pattern.
http://www.hanselman.com scotths@microsoft.com New web project type for asp.net More control over your </html> Testable framework Not for everyone Master Cheif GU! .NET 3.5 MVC web application template. Options: Enable testing right out the gate. NVUnit or any Unit. No testing option System.Web.MVC System.Web.Extension System.Web.Routing [Namespace] Controllers Models and Views Controller is a base class Index and about public class's {controller/action} Direct relationship. Flexible Fundamental, ......

Posted On Thursday, March 6, 2008 11:52 PM

Reverse a String .NET

How to reverse a string demo. *you need to know this if you want a job at Microsoft.

public string someMethod(string, input)

{

char[] chars = input.ToCharArray();

Array.Reverse(chars);

return new string(chars);

}

Go ahead and cheat. its ok.

Posted On Thursday, March 6, 2008 6:55 PM

MIX08-Building Applications and Services with .NET Framework 3.5
Using new features in .NET 3.5 Framework. blogs.msdn.com/justinsmith What in .NET 3.5 for services: The New HTTP Programming model: New support JSON Services Syndication in .NET 3.5 Service Stack Evolution -Sockets->HttpListener-&... WCF one stop shop for services Myth:WCF is only for enterprise services Reality:WCF gets around(enterprise and web) .NET 3.5 WCF web-centric upgrades: Make REST a 1st class citizenish Embrace SOAP-less representations JSON messaging capabilities ......

Posted On Thursday, March 6, 2008 6:02 PM

MIX08- Introducing SQL Server Data Services (SSDS)
Microsoft Data Platform Rich data services from SQL Server Using of course SOAP REST and APP within SQL Server SSDS. Live contacts has ADO.NET Connections... SYNC Framework synchronize contacts between endpoints. pulling or GET from url into xml or web service. Metadata file with Vcard info. No invoke needed within browser just service on box? SQL Server Data Services: Application Agility Scales without limits Business Ready SLA Scalable or downgradable to 2005 or 2000? SQL Server Data Services Layers: ......

Posted On Thursday, March 6, 2008 4:33 PM

MIX08- Second Day Early Morning
I have a ton of video from the keynote. However it is all grainy and well even Microsoft expressions is have a hard time with it. So I will try to get some better pictures. A couple of great apps that have been discovered: cetwit- windows mobile twitter application feedslide - One click application for turning rss feeds into jpegs for zune or ipod. Images from the Luxor. Had to add Yesterdays lunch. Yes I twitter. Maybe too much. Technorati Tags: Mix08,MIX,mikedopp.com,micr... technologies,silverlight,si... ......

Posted On Thursday, March 6, 2008 3:31 PM

MIX08-Restful Data Services with the ADO.NET Data Services Framework.
I am a huge fan of Pablo Castro(the presenter). Astoria has become ADO.NET Data Services Framework. Data in the web: Ajax applications Silverlight applications Online Services Mashups Restful Interface for Data: Just Http Data as resources, HTTP methods to act on it. Uniform URL syntax Every piece of info is addressable Multiple representation Use regular HTTP content-type negotiation Atom, JSON, Plain XML Book: Restful Web Services Drill down data using Astoria(http request or get) Model and Operation ......

Posted On Thursday, March 6, 2008 1:33 AM

MIX08-Encoding Video for Microsoft Silverlight Delivery Scenarios.
Long name good times. Topics: Delivery mechanisms Hands on encoding Best practices Goals: Deliver content(compelling) Maximize ROI for encoding. Two most common audio/video delivery Progressive download Streaming real time without caching Progessive download: Pros: Easy management and config Lower server resource usage Supports Secure sockets Layer(SSL) Firewalls Cons: No Live No advanced No buffer Streaming Download: Pros: Basic and advanced media features Bandwidth optimization Enables Live broadcasting ......

Posted On Wednesday, March 5, 2008 11:48 PM

Mix08- Working with Data and Web Services in Silverlight2.
Applications interact with the outside world. mmm? Mashups and such. ok Many types of outside data.... Images RSS Business services Intranet services Mashup API's silverlight1.1 xaml and fun -no easy way to connect to other services. What does client code look like? Custom services. Recommended uses of services in silverlight Using silverlight front end connecting to webservice or database directly. Using C# void list<product>getproducts (string searchstring) Create service Define What does ......

Posted On Wednesday, March 5, 2008 8:09 PM

Mix08- Keynote Live
So I have extra batteries on hand. Ready for the love of Silverlight2. Getting Video and trying to encode as fast as I can for the streaming. Woooh! Mix08. See the twitter feed for instant updates. www.twitter.com/mikedopp. Ray Ozzie Main points in keynote:Content, Commerce, Community. Making cracks about the yahoo purchase or working on purchase. Media Zune, PC, Xbox360 working better together. Xbox360 might finally get a the web? Microsoft going google docs with word excel and such Office Live ......

Posted On Wednesday, March 5, 2008 7:03 PM

Mix08-Pre Keynote Java I mean Caffeine
So breakfast was good. Microsoft really finds great catering. Plenty of meat and well I am praying that was yogurt. Anyway working up an appetite for a keynote I will post as the goodness arrives. I am hoping silverlight 2 is all that it is billed up to. Ladies and Gentlemen by Saliva Anyway Mix it up! Technorati Tags: Mix08,MIX,mikedopp.com,micr... gu,web technologies,silverlight,si... LiveJournal Tags: Mix08,MIX,mikedopp.com,micr... gu,web technologies,silverlight,si... ......

Posted On Wednesday, March 5, 2008 4:18 PM

Mix08 - Swag and Silverlight treasure hunt.
Man my feet are killing me. Walked all over vegas(ok only about 3 blocks) gathering images for the silverlight contest that Wintellect threw for our first day here at mix08. Here is some of the killer stuff give at the event. Seen here was the silverlight "faucet" Seen here was joe levi with the silverlight "flame" Seen here was the Silverlight "quicksilver" Seen here was the Silverlight "Slot Machine" Seen here Silverlight! The silver Christopher Columbus? Ah silver water... Making bronze into silver. ......

Posted On Wednesday, March 5, 2008 8:01 AM

Mikes Retro Software of the Week 2/13/08
Little known(unless your a XP expert) Applications from Microsoft that really never went anywhere. Like the "shplayer" that is or was supposed to be the Shell media player for XP however rumor has it being axed on or before RTM. On a different note another outsourced XP(media player 9)powertoy for having a video screen saver was very cool until Microsoft released Media player 10 and 11 and the app broke. Since the original writer (AnalogX) of the app has not been heard from for a while no more updates ......

Posted On Wednesday, February 13, 2008 8:44 AM

Taxes and your 1040 in excel.
It is tax time again. Barring a Tax audit. It means tax returns for most of us hard working Americans. The question is how much are you going to pay to have your tax forms filled out for you? Because lets face it. Who has time and the energy to do it themselves? Yes your CPA and or H and R block but they typically charge you. Then there is Turbotax but who wants to pay 30 dollars without support? Why not go free and no support. That's the true D.I.Y. way. A brilliant excel guru (I want to say developer) ......

Posted On Thursday, February 7, 2008 7:31 AM

Mikes Retro Software of the week 2/6/08
So long ago and many many times infinity(2nd grade reference there). I downloaded the Internet. Any cool app I found. Some I wish I had kept. I then found myself in a pickle when the downloaded software had been updated or duplicated in another folder so I had multiple copies of different versions (good or bad) and no way to keep track of any of them. So I found Dupelocater.exe. Drag folders from Windows Explorer into the DupeLocater.exe window and press Search. When finished, drag the report duplicates ......

Posted On Wednesday, February 6, 2008 8:25 AM

I am going to MIX08
Joe Beat me to the post. I am going to be in Las Vegas Nevada for MIX08 This year listening to Steve Balmer. I will be pulling my hair out getting all 5 projects in test before I step on the plane however It will be awesome. Thanks, Steve and John mix•ti•fy [micks-tuh-fahy] — verb (used with object), -fied, -fy•ing. 1. to share with everyone you know the coolness that is MIX08! 2. to download the latest and greatest MIX stuff by checking back here often! — Related forms mix•ti•fi•ca•tion, noun mix•ti•fied•ly, ......

Posted On Wednesday, January 30, 2008 1:20 AM

XBOX 360 *Free Game Update*
Remember when I talked about a free game will be given out for lack of network performance from Microsoft? Well without much fanfare Microsoft decided the game: "Undertow" would be the freebie. I understand that the game will only be available until tomorrow **unconfirmed**. So get it fast before its not free. del.icio.us Tags: Undertow,Xbox360,Xbox 360,mikedopp.com,mikedopp,h... Live,Interesting Technorati Tags: Undertow,Xbox360,Xbox 360,mikedopp.com,mikedopp,h... ......

Posted On Monday, January 28, 2008 4:30 AM

Bandwidth costs and time for Sneakernet
Does transferring a terabyte of data via sneakernet make sense? First, consider the bandwidth capabilities and monthly cost of a few common Internet connections. Cost (month) Download rate per second Upload rate per second 56.6 Modem $15 5 KB 4 KB DSL $30 192 KB 24 KB DSL, Premium $50 384 KB 48 KB Cable $50 300 KB 30 KB Cable, Premium $80 600 KB 60 KB T1 $300 192 KB 192 KB T3 $1,400 5.4 MB 5.4 MB OC-3 $7,500 19 MB 19 MB Of course, costs may vary; I chose costs that jibed with my personal experience ......

Posted On Thursday, January 24, 2008 10:55 AM

Zune Playlists Easy to Create?
I was pondering late last night how can I get along with the new Zune software. No more name calling and bashing the moderators at Zune.net forums. I needed to be a responsible Zunian(no I am not an alien. Just of Zune citizenship) and do more investigating. Here is how the XML is laid out for both the Windows media playlist file and the Zune Media Playlist file. Here is what I found: Windows Media Playlist or WPL <?wpl version="1.0"?> <smil> <head> <meta name="Generator" content="Microsoft ......

Posted On Wednesday, January 23, 2008 8:27 AM

MSSQL 2000 Tip of the day
So I get this email. I forgot/lost the sa password. What to do? So I scrub the google database. Looking for an answer: Source Forgot or lost your sa password? Don't worry, there is a way out. Login to the SQL Server computer as the Administrator of that computer. Open Query Analyzer and connect to SQL Server using Windows NT authentication. Run sp_password as show below to reset the sa password: sp_password @new = 'will_never_forget_again', @loginame = 'sa' Technorati Tags: SQL 2000, MSSQL, Microsoft, ......

Posted On Monday, January 21, 2008 8:13 AM

Windows 7(seven) Preview
So we all love windows vista right? Right? mmmm... ok well how bout the next version? Maybe a complete rebuild of the NT kernel? Sounds like the promises we heard for windows vista that took 6 years to deliver without the promises. Makes Vista sound alot like windows ME? Eric Traut talks Windows 7 and MinWin from Long Zheng on Vimeo. The new kernel is called MinWin? MinWin, a much smaller kernel of the operating system that takes up only 40 MB of memory. This will definitly be something to watch ......

Posted On Thursday, January 17, 2008 7:42 PM

Mikes Retro Software of the week.
I was going through all my old backups and laughing at some of the old software I thought was important. I noticed allot of cool stuff I had long past forgotten. So to define Retro would be "its old to me" so that makes it retro. I hope you guys enjoy this I will make a feed of it and post hopefully every Wednesday. Some of this software may or may not work on your pc. I hardly remember the system requirements but I will do my best to give detailed info on how to run it. Enjoy! This Week we start ......

Posted On Thursday, January 17, 2008 3:57 AM

Fade-Jax
Back when IE was king like version 5.5 and say 6.0. There was a great little way to make your pages Fade or transitionally fade. This only works in IE engines. <meta http-equiv="Page-Exit" content="filter: progid:DXImagetransform.Mic... /> <meta http-equiv="Page-Enter" content="filter: progid:DXImagetransform.Mic... /> ......

Posted On Sunday, October 7, 2007 4:17 PM

Mikes Links Monday 9/24/07
FUN HALO3 Love Kill the Blue Bunnies If Yall want to update your Windows XP! Like Alternative music? Try Radio From HELL! <!--Direct link to online streaming radio Need to open a port find out which one! FTP Love NOT! Create a Gravatar Best Vista Skin for Firefox Free mind mapping as if you really wanted to pay for it. Where have you worked or work? Fun little extra media player visuals. .NET/Web Design Man in Blue <--Excellent Javascript Guru Create a ASP.net Blog PageComments ASP.nEt Create ......

Posted On Sunday, September 23, 2007 8:32 PM

Tafiti Gone Halo 3
I know, I know I love google too. However I am also a microsoft junkie. Never did like msn search much. I do however love Tafiti.com maybe cause it reminds me of tahiti somehow. Anyway the coolest looking search engine tafiti has gone halo 3 check it out and the screenshots ......

Posted On Friday, September 21, 2007 4:16 AM

Copyright © mikedopp | Powered by: GeeksWithBlogs.net | Join free