แสดงบทความที่มีป้ายกำกับ windows แสดงบทความทั้งหมด
แสดงบทความที่มีป้ายกำกับ windows แสดงบทความทั้งหมด

notepad++ htmltidy - unable to find libtidy.dll

Windows 7 x64, Notepad++ 5.9.5 Solution:
It has to do with the libTidy.dll not being included in the current distributions.
However, it was available in earlier versions.
Solution is to download the 5.9 zip, then
copy one of the following folders:
ansi\plugins\Config\tidy or Unicode\plugins\Config\tidy
to your current Notepad++\plugins\Config folder
Also, if you install to the c:\Program Files or c:\Program Files (x86) directories, you will need to adjust the permissions on the tidy folder to allow non-administrator access

Get current directory in batch file

used %cd% 


example

@echo off
set current=%cd%
pushd ..
set parent=%cd%
popd

echo current %current%
echo parent %parent%

Configure Proxy On Windows


With Windows 2000/XP

  • Right Click "My Computer", and click Properties
  • Choose the Advanced Tab and click the Environment Variables button at the bottom middle of the window
  • Click the "New" button in the Global Variables section
  • Set the Variable Name to http_proxy
  • Set the Variable Value to http://example.com: 8080
  • If a proxy login is required set the Variable Value tohttp://username:password@example.com: 8080
  • Click OK
  • Click OK

With Windows 95/98/ME


Command line

  • set HTTP_PROXY=http://:
top