- Open Visual studio command prompt
- Paste following code: tf workspaces /updateComputerName:xxxxxx /s:"https://xxx.visualstudio.com/DefaultCollection"
- Done
Thursday, 13 November 2014
How to update TFS Workspace after changing computer name
Monday, 7 April 2014
Unable to create bootable pendrive for Windows 8/8.1/7 using Windows 7 USB/DVD Download tool?
Forget Windows 7 USB/DVD Download tool. Download and install Rufus. It will be done.
http://rufus.akeo.ie/
http://rufus.akeo.ie/
Tuesday, 28 January 2014
How to prevent backspace from navigating back to previous page using javascript or jquery
There will be cases when we may require to prevent backspace navigation in web pages.. This can be easily donw with javascript/jQuery using the following code. Just space this code in the scripts section of your code.
$(function
() {
var rx
= /INPUT|TEXTAREA/i;
$(document).bind("keydown keypress", function (e) {
if
(e.which == 8) { // 8 == backspace
if
(!rx.test(e.target.tagName) || e.target.disabled || e.target.readOnly) {
e.preventDefault();
}
}
});
})
Wednesday, 1 January 2014
Subscribe to:
Posts (Atom)