2. nap. Yosemite Nemzeti Park

View Larger Map 70 km. Útvonal: Mariposa ( reggel 30 C fok), (140) – A park bejárata után megálltunk, szép rálátás volt a Merced folyóra, sokan fürödtek, a folyón sok kis zuhogó volt. Bementünk a Visitor Centerbe, térkép, stb. Parkolás, megkerestük a Shutle bust, elmentünk a „8” –as pontig, megkerestük a Valley floor tours indulási …

How to configure the domain password expiration policy in the Microsoft Active Directory

The Microsoft Active Directory is a great system to manage the security of servers and workstations. One of the fundamental security tools is the password expiration policy. To set the password expiration policy in an Active Directory domain follow the steps below Remote desktop into the domain controller Start the Active Directory Users and Computers …

Display deleted items in the Microsoft Visual Studio Source Control Explorer

When you delete a file or folder in TFS by default it is no longer displayed in the Source Control Explorer. To be able to “undelete” a file or folder enable the visibility of deleted items in Microsoft Visual Studio. To see deleted items in the Source Control Explorer Start Visual Studio In the Tools …

Insert multiple rows into a Microsoft SQL Server database

There is a great way to insert multiple rows into a Microsoft SQL Server database in one statement. This notation has multiple advantages: simplicity and the grouping of multiple instructions into one transaction. INSERT MyTable (name, description)VALUES(‘John’, ‘Manager’),(‘Bill’, ‘Truck driver’) Script from Ernie Cruz