JS

Monday, August 13, 2012

Map SkyDrive as a Network Folder


  1. Open Windows Explorer. Select 'Computer' icon to show the ‘Computer’ area.
  2. Right click in an empty space, choose ‘Add a network location’.
  3. Step through the wizard, select "Choose a custom network location" and click Next.
  4. When you get to the part asking for a network address, open your SkyDrive site by web browser(Firefox, IE, ...).
  5. Select any item in your SkyDrive site, choose "Share Folder" on the right-hand side, then "Get a link", then View only. In the resulting window, copy the text from ‘resid=’ to the ! character. For example: With https://skydrive.live.com/redir?resid=84E1C29A3B9BFF72!107&authkey=!AFzutdlXCsRf2vU, the text will be 84E1C29A3B9BFF72
  6. Go back to your Add Network Location wizard, and enter the following in the network address: https://d.docs.live.net/<copied text>/
  7. Click Next. And it will pop up a dialog to ask for your login information to SkyDrive. Enter information and OK.
  8. Finish the wizard, and enter a name for your SkyDrive location.
  9. Now, you now have a Shortcut to SkyDrive without being worry about your hard disk space.

Monday, February 13, 2012

How to check IIS process in Windows Task Manager

If there are many websites deployed on the same IIS using different pools. There processes will be shown in Windows Task Manager with the same name w3wp.exe


There is a way to recognize those processes.
1. Open cmd window.
2. Go to windows system32 folder.
    <code>cd C:\WINDOWS\system32</code>

3. Run this line
    <code>cscript iisapp.vbs</code>

Error (ESLint) i.CLIEngine is not a constructor in Visual Studio 2019

To correct the ESLint error 'i.CLIEngine is not a constructor' in Visual Studio 2019 with ESLint version 8.57.0, you can follow thes...