Whenever I run my console application, it's going to be a simple blackjack game, I get this weird command prompt error, I think it might happen with any new precompiled header console application.

Code:
'\\intellimark\dfs\Home\jcoleman\My Documents\Visual Studio 2005\Projects\Blackj
ack\Blackjack'
CMD.EXE was started with the above path as the current directory.
UNC paths are not supported.  Defaulting to Windows directory.
And the program simply does not run, here is what I'm trying to do by the way, simply output the value of a card in the deck.

Code:
int _tmain(int argc, _TCHAR* argv[])
{
	Deck BlackJackDeck;
	std::cout << BlackJackDeck.Cards[3].suit << std::endl;
	std::cout << BlackJackDeck.Cards[3].value << std::endl;
	return 0;
}
Not too complicated stuff here, but that weird console error... I'm working with Microsoft Visual Studio 2005 C++ Express Edition

Can anyone help me?