“Learn from every situation today, good or bad. No matter how I feel about it, take a lesson from it
Friday, August 1, 2014
Tuesday, July 15, 2014
VSO vs. the on Premises Edition of TFS
There are some differences between VSO and the on premises edition of TFS. For example, CodeLens support, customizing TFS, (e.g. adding your own fields or states to the Bug work item type), integration with SQL Server Reporting Services (SSRS) and SharePoint to create team project dashboards that show rich reports generated by SSRS are only available in the on premises edition of TFS. However, Application Insights and automatic upgrades to the latest version of TFS are only available on VSO.
Wednesday, April 30, 2014
Microsoft Exam 74-409 Offer
Earn a Microsoft Virtualization Certification for 50% off
Request a voucher to take exam 74-409 for 50% off, which gets you a certification in Server Virtualization with Windows Server Hyper-V and System Center. Earn this certification if you are an IT professional who is responsible for designing, implementing, managing, and maintaining a virtualization infrastructure and/or want proof of your skills on current Microsoft virtualization technologies.
Vouchers expire and all exams must be taken by June 30, 2014.
Get the Benefit.....
Thanks
R.karthikeyan
Wednesday, March 19, 2014
MSF Agile vs. Visual Studio SCRUM difference in the Workitem Types (WIT).
TFS 2010: MSF Agile vs. Visual Studio SCRUM 1.0 Smackdown
With the introduction of the new Microsoft Visual Studio SCRUM 1.0 template, software development & project managers are now given multiple options for Agile that is supported by Microsoft. The “Agile” terminology is vastly over used by many and most agile teams, when examined closely, are in fact not Agile at all. Prior to the release of Visual Studio SCRUM 1.0, we were forced to utilize the Scrum for Team System (SfTS) template if you desired “scrict” SCRUM. If you desired to stay Microsoft, you had the ability to adopt Agile but do so without using key concepts exposed in SCRUM and this was done with the MSF Agile v5.0 process template. If your head isn’t hurting now, it quickly starts after you’ve started trying to figure out how you’d like to setup your next TFS-based project. In today’s post, I will kick-off a series of posts that will occur over the coming days that focus on sharing the key differences between two process templates – Visual Studio SCRUM 1.0 & MSF Agile v5.0.Terminology Differences: Let’s just call it Potato versus Potatoe…
The first and rather more obvious differences you will find starts with the use of terminology. The terminology is exposed through the use of different work item types (WITs) depending on the template you chose. You can figure this out rather easily with a a quick look at the work item types available in each project -Visual Studio SCRUM 1.0 -
MSF Agile v5.0 -
For your sake, I’m not going to just share what is already readily available in MSDN (MSF Agile v5.0 | SCRUM 1.0) around what each of these WITs are. Instead, I’m going to just ensure that you understand how each work depending on which project type you selected.
User Stories vs. Product Backlog Item
These two WITs are very similar and are at the heart of Agile development no matter what template you’ve chosen. The key concept for Agile development is the focus on the “backlog” which just represents the amount of work possible for your project. A key concept is that the backlog represents all possible work yet not any planned work in either case – it’s just a running list of work possible.User Story types in MSF Agile v5.0 are rather generic forms of backlog and really minimize the use of SCRUM-based terminology. You will quickly notice that they provide a few key fields -
Field Type
|
Description
|
| Title | This is provided to you in the infamous phrase of “As a <type of user> I want <some goal> so that <some reason>” as a guideline on how to write your user story title |
| Description | This is where one can provide a few more details around the request – keep in mind that often Product Owners are not technical and rather represent the business. |
| Rank | This is the stack rank of the backlog item |
| Story Points | This is probably one of the most “confusing” pieces of the User Story template as many read story points as actual estimate work. This isn’t the case – this is the guesstimate (often using techniques like planning poker or wideband delphi) of the total effort it might take to complete the user story according to the acceptance criteria. |
| Business Value | The primary objective of any development team should be, but often isn’t, to provide software that enhances the business. This field allows you to capture what the business value of this user story is. It should be obvious that high business value work should be completed before lower business value work. |
| Acceptance Criteria | I can’t bold this any bolder than already done. It is the foundation of what I’ve learned to be the key between success and everything else. This field is what the team, often QA, considers the required functionality needed to complete the user story. If all pieces of the acceptance criteria aren’t met, the user story isn’t considered “complete.” |
| Field Type | Description |
| Title | This is no different than in a user story though it is a required field. |
| Description | This is no different than the information you enter as the title in User Story - “As a <type of user> I want <some goal> so that <some reason>” |
| Backlog Priority | This is the stack rank of the the work in comparison to all other work in the backlog. |
| Effort | This is essentially the exact same as Story Points in user story and the technique used to provide are the same techniques – planning poker or wideband delphi. Beyond that, it sometimes might simply be a developer, test, or project managers estimates. |
| Business Value | The same as in User Story. |
| Acceptance Criteria | This is the same as in User Story. |
For a quick highlight, I thought I’d share a quick mapping table to make it easy to follow -
Differences between User Story & PBI work item types…
The only major difference between the two is the inclusion of the field “Risk” in the User Story WIT. This might seem trivial and often overlooked by many development teams but it serves a big purpose. You can choose to ignore it; though, I’d challenge that figuring out what work to do within your release/sprint is between two items of the same business value but no risk assigned creates risk itself. The primary principles that we attempt to do anytime we are doing planning builds around the following diagram -Summary
In today’s post, I wanted to kick-off what I promises to be a number of posts all related to what you should know before you choose to create a new Agile project in TFS 2010. This is a very important step as your decision could very well cause your project a lot of grief if you make a mistake and figure it out too late – this is a non-reversible action. The focus today was to share with you the first high-level item of difference – User Story vs. Product Backlog Item. In tomorrow’s post, I will talk about the differences around planning your development work…
Enjoy!
Thanks
Xcopy command : Syntax and Examples
What’s Xcopy?
Xcopy is a built in command on Windows OS.
Copy is the other command we have on Windows, it can copy files from one
directory to another. But it does not work for copying directories. Using
xcopy we can copy directories also.
Copy all the files in one directory
to another directory.
Xcopy /I Source_Directory
Destination_directory
This would copy only the immediate
files in the source directory to the destination. It would not copy files from
sub directories. Adding /I switch will avoid the question to the user ‘Does
the destination directory specify a file name or directory name on the target‘.
Copy a directory including all its
files and sub directories to another location on the same drive or a different
drive.
Xcopy /S /I /E Source_Directory
Destination_directory
For example to copy all the files
from D:\data\documents to the folderE:\Newfolder\documents we
need to run the below command.
Xcopy /S /I /E D:\data\documents
E:\Newfolder\documents
This command creates the folder E:\Newfolder\documents if
it already does not exist. It also creates the same directory/file structure in
the destination folder. If the destination folder already exists you do not
need to add /I switch. If the folder does not exist and you do not specify /I
you will be prompted to confirm if the destination is a filer or folder. This
would cause issues if you want to run unattended or automated copying of files.
Copy files including hidden and
system files.
The above command excludes hidden and system files
from copying. If you want to these files also then you need to add /H option to
your command. Then the command would be
Xcopy /S /I /E /H D:\data\documents
E:\Newfolder\documents
/E option causes to copy empty sub directories to
the destination folder.
If you add /H option the the command would also
copy hidden and system files to the destination folder.
If you are trying to overwrite an existing file
then add the option /Y so that you will not be prompted for confirmation for
overwriting the file.
Copy files based on archive attribute
If you want to copy only the files
that have archive attribute set, you can use /A and /M switches. Archive
attribute indicates whether the file has been modified since the time the
attribute was reset.
The command for this is:
The command for this is:
Xcopy /A /I /S source_directory
destination_directory.
The above command keeps the archive attribute set;
It does not reset the attribute.
If you want to reset the archive attribute, you can
use /M switch instead of /A. The command for this case would be:
Xcopy /M /I /S source_directory
destination_directory
Exclude files in the copying
If you want to copy a directory to another location but want to exclude some files then you can use /EXCLUDE switch with Xcopy command. You need to put the list of the files to be excluded in a file and then specify this file with the /EXCLUDE switch.
If you want to copy a directory to another location but want to exclude some files then you can use /EXCLUDE switch with Xcopy command. You need to put the list of the files to be excluded in a file and then specify this file with the /EXCLUDE switch.
Xcopy /I Sourcedir Destdir /EXCLUDE:filename
Example:
Copy the directory D:\docs to E:\newdocs\ excluding all pdf and mp3 files:
Copy the directory D:\docs to E:\newdocs\ excluding all pdf and mp3 files:
C:\>type 1.txt
.pdf
.mp3
C:\>Xcopy D:\docs E:\newdocs /EXCLUDE:1.txt
You can also specify the full names of the files.
Each file name/pattern should be in a separate line.
The commands shown above can be used from batch
files also. This command is available in Windows 7, XP, Vista, Server 2003 and
Server 2008 editions.
Copy files based on modified date
Xcopy /D:dd-mm-yy /I sourcedir
destinationdir
Example: To copy all the files in the
directory ‘E:data’ that are modified on or after 1 st February
2011 to the folder ‘E:\backup‘
Xcopy /D:01-02-11 /I E:\data
E:\backup
Regards
R.karthikeyan
Friday, November 15, 2013
How to change user credentials for TFS in Visual Studio 2012
Hi, Today one of my developer reported that whenever he check-in/ check-out files in visual studio it showing different username(Actually its admin username)Now I came to know that once myself connected tfs server on his pc for troubleshooting some other issue.
Now I try to find out how to change user credentials for TFS
in visual studio. After researching little bit time I found that how to change
user credentials for TFS in VS 2012.
I thought if I blog this post it will help someone like same
situation.
This article is explaining about how to change or clear
credentials which are used to connect Team Foundation Server from
Visual Studio 2010 and Visual Studio 2012.
TFS credentials
When you connect TFS from Visual Studio you will be
asked to give user credential to connect. If you checked the option Remember
my credentials while connecting TFS, you won't be asked credentials
again to connect TFS. In that case, if you wanted to change different
credentials to connect TFS. you need to follow below solution to force Visual
Studio to ask new credentials to connect TFS.
Force to change TFS credentials in Visual Studio
You need to remove TFS credentials from Windows Vault
to clear and force to ask new TFS credentials in Visual Studio
1. Go to Control Panel (Start -> Control Panel).
2. Click User Accounts ( or User Accounts and Family Safety->User Accounts in Windows 7 Machine)
3. Click Credential Manager (or Manage your credentials)
1. Go to Control Panel (Start -> Control Panel).
2. Click User Accounts ( or User Accounts and Family Safety->User Accounts in Windows 7 Machine)
3. Click Credential Manager (or Manage your credentials)
4. In Credential Manager page, you can see the two type of credentials
i. Windows Credentials
ii. Generic Credentials
5. Click on two credential's modify link, click the link Remove from vault to remove stored TFS credentials.
Now, When you login into Visual Studio you will be asked to give credentials to connect TFS.
Note: Don't forget to uncheck the option Remember my credentials to force to ask credentials for every TFS connections.
If you find this is helpful post then leave your comments...
Regards
R.karthikeyan
Friday, November 1, 2013
Microsoft Free voucher for the exam
Add Hyper-V to your server virtualization skillset and improve your career options: Register for this free course, led by Microsoft experts Symon Perriman and Telmo Sampaio: Server Virtualization w/ Windows Server Hyper-V & System Center Jump Start.
This course helps you prepare for the new Microsoft virtualization certification: Microsoft Specialist Exam 74-409-Server Virtualization with Windows Server Hyper-V and System Center. Event attendees will get a free voucher for the exam*
Already familiar with other virtualization platforms such as VMware or Citrix? Upgrading virtualization platforms? New to virtualization? If any of these are true, then this course is intended for you. Get expert instruction on Microsoft Server Virtualization with Windows Server 2012 R2 Hyper-V and System Center 2012 R2 Virtual Machine Manager in this two-day Jump Start. You will learn how to configure, manage, and maintain Windows Server 2012 R2 Hyper-V and System Center 2012 R2 Virtual Machine Manager including networking and storage services. You will also learn how to configure key Microsoft server virtualization features such as Generation 2 Virtual Machines, Replication Extension, Online Export, Cross-Version Live Migration, Online VHDX Resizing, Live Migration Performance tuning as well as Dynamic Virtual Switch Load Balancing and virtual Receive Side Scaling (vRSS).
Server Virtualization w/ Windows Server Hyper-V & System Center Jump Start
- Date: November 19 & 20, 2013
- Time: 9:00am – 4:30pm
- Where: Live, online virtual classroom
- Cost: Free!
Put your career in hyperdrive and Register now.
Additional Resources:
- Free expert-led MVA courses on Virtualization
- Download Windows Server 2012 R2
- Download Hyper-V Server 2012 R2
- Download System Center 2012 R2
Regards
R.karthikeyan
Friday, October 18, 2013
Visual Studio 2013 available for download
I’m excited to announce that the final releases of Visual
Studio 2013, .NET 4.5.1, and Team Foundation Server 2013 are now available fordownload! MSDN subscribers can download
from the MSDN Subscriber Downloads page.
Visual Studio 2013 is the best tool for developers and teams
to build and deliver modern, connected applications on all of Microsoft’s
platforms. From Windows Azure and SQL
Server to Windows 8.1 and Windows Phone 8, Visual Studio 2013 supports the
breadth of Microsoft’s developer platforms.
As part of the Cloud OS vision, Visual Studio 2013 enables
developers to build modern business applications that take advantage of the
cloud and target a variety of devices and end-user experiences, all delivered
within today’s rapid and dynamic Application Life Cycles.
More Information on Somasegar’s blog
Regards
R.karthikeyan
Subscribe to:
Comments (Atom)
Share this
Labels
WINDOWS SERVER
(22)
Windows
(20)
IIS
(15)
Interview questions
(10)
TFS
(9)
Troubleshooting Tips
(9)
Fortigate Firewall
(8)
SQL
(8)
Backup
(6)
Team Foundation Server
(6)
Webserver
(6)
Windows Administration Task
(6)
Microsoft certification
(5)
Virtualization
(5)
ADDS
(4)
Active Directory
(4)
FTP
(4)
PHP
(4)
SQL 2012
(4)
SQL Server
(4)
server
(4)
DBA
(3)
MSSQL
(3)
Networking
(3)
Offer
(3)
Webhosting
(3)
Windows 8
(3)
74-409
(2)
Agile Methodology
(2)
Apache
(2)
CLI Commands
(2)
DNS
(2)
Dedicated server
(2)
Difference between Active and Passive Connection Mode
(2)
Fortinet
(2)
GPO
(2)
IIS8
(2)
IPAddress
(2)
IPV6
(2)
MVA
(2)
Microsoft News
(2)
NAT
(2)
Software Development
(2)
TFS2013
(2)
Uncategorized Post
(2)
XAMPP
(2)
firewall Administration.
(2)
powershell
(2)
.htaccess
(1)
ALM
(1)
Agile vs Scrum Difference
(1)
Blogging TIPS
(1)
CPanel
(1)
Command for Administrator
(1)
DC
(1)
DHCP
(1)
Domain joining nano server
(1)
Exam 74-409
(1)
Excel TIps
(1)
File server
(1)
Fortigate Firewall HA
(1)
Fortigate Firmware Upgrade
(1)
Free Exam 70-740
(1)
Free Voucher
(1)
Generation2 VM
(1)
Group Policy
(1)
HP
(1)
HP ILO IP CHange
(1)
HP OA IP Change
(1)
HP Proliant Servers
(1)
HTTP to HTTPS
(1)
Hyper-V
(1)
IAS
(1)
IIS Server hardening
(1)
ILO
(1)
Install dll
(1)
MCSA 2016
(1)
Microsoft Virtual Academy
(1)
Microsoft file sharing Port
(1)
Migration
(1)
MySQL
(1)
NPS
(1)
Nano server
(1)
Network Drive
(1)
OA
(1)
Plesk Panel
(1)
Ports
(1)
Ports for windows file sharing
(1)
RADIUS
(1)
RDP
(1)
Remote Desktop Connection
(1)
SCRUM
(1)
SQL ErrorLog
(1)
SQL TEMPDB
(1)
Second Shot
(1)
Server 2012
(1)
Startup Parameters
(1)
TEMPDB Movement
(1)
TIPS
(1)
Team Foundation Server 2013
(1)
Temp profile.
(1)
Troubleshooting DNS
(1)
URL Rewriting
(1)
VDOM
(1)
VPS
(1)
VSS
(1)
Virtual Labs
(1)
Visual Studio
(1)
Visual Studio 2012
(1)
Visual Studio 2013
(1)
Visual source safe
(1)
Waterfall Model vs Agile Methodology
(1)
Windows 2016
(1)
Windows 7
(1)
Windows Server 2012
(1)
Windows command line
(1)
XP
(1)
certification path
(1)
exam
(1)
free online courses
(1)
protocols/ports for windows file sharing on a firewall
(1)
sql error
(1)
what features has been installed in your SQL Server
(1)
windows 2012
(1)
windows Time Service
(1)
work item types difference
(1)




