Become a member
Sign in
Naveen Murali
Naveen Murali

Naveen Murali

14 Following
9 Followers
  • Profile

  • Claps

Latest

Naveen Murali
Naveen Murali
May 9, 2018 · 1 min read

Opening a Html File in VS Code

How to Open a Html file that you’ve drafted in VS Code.

Demystifying tasks.json

VS Code has a inbuilt task runner which we can use it for running a command or set of commands using the vs code

3

2 responses
Naveen Murali
Naveen Murali
May 1, 2018 · 1 min read

mklink (symbolic link)— Handy reference

mklink <Link> <Target>

Use /D when you want to create a soft link (symbolic link) pointing to a directory. like so:

mklink /D <Link> <Target>
Naveen Murali
Naveen Murali
May 1, 2018 · 1 min read

To get duplicate values from MS SQL

Try the below query

SELECT name,email, COUNT(*) AS CountOf
FROM @YourTable
GROUP BY name,email
HAVING COUNT(*)>1
Naveen Murali
Naveen Murali
Mar 26, 2018 · 1 min read

Demystifying .Udl

Struggling with Connection strings?To test a connection string and also to get the correct connection string for the databases .udl file comes handy.

Create a text file and and rename the extension to .udl

Naveen Murali
Naveen Murali
Oct 23, 2017 · 1 min read

To Install a Windows service using intallutil

To install a windows service using installutil

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\installutil.exe" "c:\myservice.exe"